/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
html, body {
  height: 100%;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.7;
  background: #fafafa;
  color: #333;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}

/* Header */
header {
  background: #660300; /* Maroon */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  width: 50px;
  margin-right: 15px;
}

header h1 {
  font-size: 20px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff; /* Light Gold */
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #ffbf00; /* Gold */
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(102,3,0,0.75), rgba(102,3,0,0.75)),
              url('banner.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;

  /* Ukuran konsisten */
  min-height: 400px;   /* bisa disesuaikan: 400px / 600px */
  height: 400px;       /* pakai fixed agar sama persis */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 20px;       /* bukan lagi padding besar */
  box-sizing: border-box;
}

/* Judul */
.hero h2 {
  font-size: 44px;
  margin-bottom: 15px;
  color: #ffdc73;
  text-shadow: 
  2px 2px 6px rgba(0,0,0,0.6),
  4px 4px 12px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  animation: textFadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

/* Paragraf */
.hero p {
  font-size: 19px;
  margin-bottom: 30px;

  opacity: 0;
  transform: translateY(20px);
  animation: textFadeUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* Keyframes */
@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Wrapper dua kotak ===== */
.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Kedua kotak punya size seimbang */
.contact-wrapper > .contact-info,
.contact-wrapper > .content.alt-bg {
  flex: 1;
  max-width: 800px;
  height: 550px;
}

/* ===== Kotak Informasi ===== */
.contact-info {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h3 {
  font-size: 24px;
  margin: 20px;
  color: #660300;
  text-align: center;
}

.info-row {
  display: grid;
  grid-template-columns: 140px auto;
  margin-bottom: 10px;
}

.label {
  font-weight: bold;
  color: #660300;
}

.value {
  color: #333;
}

/* Sosial media */
.social-links {
  margin-top: 15px;
  text-align: center;
}
.social-links a {
  font-size: 32px;
  margin: 0 12px;
  color: #660300;
  transition: 0.3s;
}
.social-links a:hover {
  color: #e8300e;
}

/* ===== Kotak Form ===== */
.content.alt-bg {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.content.alt-bg h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #660300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  color: #660300;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Montserrat', sans-serif;

}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e95007;
  box-shadow: 0 0 8px rgba(233, 80, 7, 0.4);
}

.contact-form button {
  background: #e95007;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #660300;
  transform: scale(1.05);
}

/* ===== Responsif ===== */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}


/* Footer */
footer {
  background: #340705;
  color: #ffdc73;
  text-align: center;
  padding: 22px;
  font-size: 14px;
  letter-spacing: 0.5px;
}