/* RESET & FONT */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* WARNA UTAMA */
:root {
  --coklat-tua: #4e342e;
  --coklat-muda: #8d6e63;
  --coklat-cream: #efebe9;
  --putih: #ffffff;
  --abu: #f5f5f5;
}

/* BODY */
body {
  background-color: var(--abu);
  color: var(--coklat-tua);
  line-height: 1.6;
}

/* CONTAINER */
.page-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* ================= NAVBAR ================= */
.navbar {
  background-color: var(--coklat-tua);
  padding: 15px 20px;
  color: var(--putih);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--putih);
  font-size: 24px;
  cursor: pointer;
  display: none;
}

#navbar-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

#navbar-menu ul li a {
  color: var(--putih);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

#navbar-menu ul li a:hover,
#navbar-menu ul li a.active {
  color: var(--coklat-cream);
  border-bottom: 2px solid var(--coklat-cream);
}

/* ================= HERO SECTION ================= */
.hero {
  background-color: var(--coklat-cream);
  padding: 60px 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(78, 52, 46, 0.05);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  max-width: 120px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8em;
  color: var(--coklat-tua);
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.3em;
  color: var(--coklat-muda);
  margin: 15px 0 20px;
}

.hero p {
  max-width: 800px;
  margin: auto;
  font-size: 1em;
  color: #4e342e;
  opacity: 0.95;
  padding: 0 10px;
  line-height: 1.8;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  background-color: var(--putih);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.about-section h1 {
  font-size: 2em;
  color: var(--coklat-tua);
  margin-bottom: 20px;
  text-align: center;
}

.about-section p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--coklat-tua);
  line-height: 1.8;
}

/* ================= BACK BUTTON ================= */
.back-button {
  margin: 40px auto;
  text-align: center;
}

.back-button a {
  display: inline-block;
  background-color: var(--coklat-muda);
  color: var(--putih);
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.back-button a:hover {
  background-color: #6d4c41;
}

/* ================= FOOTER ================= */
.footer {
  margin-top: 60px;
  text-align: center;
  padding: 20px;
  background-color: var(--coklat-tua);
  color: var(--putih);
  border-radius: 8px;
}

.footer ul {
  list-style: none;
}

.footer li {
  font-size: 0.95em;
}

.footer a {
  color: var(--putih);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  #navbar-menu ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero h2 {
    font-size: 1.1em;
  }

  .contact-section,
  .about-section {
    padding: 20px;
  }
}
