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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Navigasi ===== */
.navbar {
  background-color: #4a2c1a; /* coklat gelap */
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: #f5c542; /* kuning */
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #f5c542;
}

.btn-nav {
  background-color: #f5c542;
  color: #4a2c1a !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: bold;
}

.btn-nav:hover {
  background-color: #e0b030;
}

/* ===== Tombol Umum ===== */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #4a2c1a;
  color: #fff;
}

.btn-primary:hover {
  background-color: #6b442a;
}

.btn-wa {
  background-color: #25D366;
  color: #fff;
}

.btn-wa:hover {
  background-color: #1da851;
}

.btn-large {
  font-size: 1.2rem;
  padding: 15px 40px;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #fdf6e3, #f7e8c8);
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h1 {
  font-size: 3rem;
  color: #4a2c1a;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 15px;
}

.promo {
  background-color: #f5c542;
  color: #4a2c1a;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.hero-emoji {
  font-size: 8rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* ===== Section Umum ===== */
.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 2.2rem;
  color: #4a2c1a;
  text-align: center;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.bg-light {
  background-color: #faf3e7;
}

/* ===== Tentang ===== */
.tentang-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.tentang-text {
  flex: 2 1 400px;
  font-size: 1.05rem;
}

.keunggulan {
  list-style: none;
  margin-top: 20px;
}

.keunggulan li {
  margin-bottom: 8px;
}

.tentang-stats {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-box {
  background-color: #fff;
  border: 2px solid #4a2c1a;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.stat-box:hover {
  transform: scale(1.05);
}

.stat-angka {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #4a2c1a;
}

.stat-label {
  color: #777;
}

/* ===== Menu ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.menu-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.menu-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.menu-card h3 {
  color: #4a2c1a;
  margin-bottom: 5px;
}

.menu-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.harga {
  display: inline-block;
  background-color: #f5c542;
  color: #4a2c1a;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
}

/* ===== Testimoni ===== */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimoni-card {
  background-color: #fff;
  border-left: 5px solid #f5c542;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.testimoni-card p {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.testimoni-nama {
  font-weight: bold;
  color: #4a2c1a;
}

.testimoni-role {
  font-size: 0.85rem;
  color: #888;
}

/* ===== Lokasi ===== */
.lokasi-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.lokasi-info {
  flex: 1 1 300px;
  font-size: 1.05rem;
}

.lokasi-info p {
  margin-bottom: 15px;
}

.lokasi-map {
  flex: 1 1 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== CTA ===== */
.cta-section {
  background-color: #4a2c1a;
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  margin-bottom: 25px;
}

.small-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #f5c542;
}

/* ===== Footer ===== */
.footer {
  background-color: #2d1b0e;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

.footer p {
  margin-bottom: 5px;
}

/* ===== Responsif ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 15px;
    background-color: #4a2c1a;
    padding: 20px;
    border-radius: 10px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .tentang-grid, .lokasi-wrapper {
    flex-direction: column;
  }

  .section h2 {
    font-size: 1.8rem;
  }
}
