/* ==========================================
   1. RESET & BASE STYLES
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* Offset scroll agar tidak tertutup header sticky */
}

body {
  background-color: #f4f6f9;
  color: #2c3e50;
  padding-bottom: 110px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.main-content {
  margin-top: 20px;
}

/* ==========================================
   2. STICKY NAVIGATION BAR
   ========================================== */
.navbar-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.navbar-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #e74c3c;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-logo span {
  color: #1e293b;
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #e74c3c;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #e74c3c;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-btn {
  background-color: #e74c3c;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

/* ==========================================
   3. HERO / LANDING PAGE SECTION
   ========================================== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px 50px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #ffffff;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  gap: 30px;
}

.hero-content {
  flex: 1;
  max-width: 480px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.hero-title span {
  color: #f1c40f;
}

.hero-description {
  font-size: 13px;
  opacity: 0.95;
  line-height: 1.5;
  margin-bottom: 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ffffff;
  color: #e74c3c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background-color: #fdf2f2;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #1da851;
  transform: translateY(-2px);
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   4. PROMO BANNER (PROMO BOX)
   ========================================== */
.promo-box {
  background: #ffffff;
  border-left: 4px solid #e74c3c;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

.promo-icon {
  font-size: 20px;
  color: #e74c3c;
  background: #fdf2f2;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-text h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a252f;
  line-height: 1.3;
}

.promo-text p {
  font-size: 12px;
  color: #636e72;
  line-height: 1.4;
}

/* ==========================================
   5. MENU SECTION & GRID
   ========================================== */
.section-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title i {
  color: #e74c3c;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.card-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #edf2f7;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e74c3c;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(231, 76, 60, 0.25);
}

.img-box {
  width: 100%;
  height: 180px;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.item-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1e293b;
}

.item-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 14px;
}

.sate-list {
  list-style: none;
  font-size: 12px;
  color: #475569;
  margin-bottom: 14px;
}

.sate-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.sate-list li:last-child {
  border-bottom: none;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.price {
  font-size: 15px;
  font-weight: 800;
  color: #e74c3c;
  background: #fdf2f2;
  padding: 4px 8px;
  border-radius: 6px;
}

.btn-order {
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

/* ==========================================
   6. GALLERY SECTION (6 FOTO GRID)
   ========================================== */
.gallery-section {
  text-align: center;
  padding: 40px 16px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
}

.gallery-section h2 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 6px;
  font-weight: 800;
}

.gallery-section p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 200px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* ==========================================
   7. LOCATION SECTION & MAPS
   ========================================== */
.location-section {
  text-align: center;
  padding: 40px 16px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

.location-section h2 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 6px;
  font-weight: 800;
}

.location-section p {
  color: #64748b;
  font-size: 0.9rem;
}

.map-card {
  max-width: 600px;
  margin: 20px auto 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #edf2f7;
  text-align: left;
  padding-bottom: 16px;
}

.map-card iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.map-card h3 {
  margin: 16px 16px 6px;
  color: #1e293b;
  font-size: 15px;
  font-weight: 700;
}

.map-card p {
  margin: 4px 16px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
}

/* ==========================================
   8. FLOATING WA BAR
   ========================================== */
.floating-wa-container {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 400px;
  z-index: 999;
}

.btn-wa-floating {
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.wa-icon {
  font-size: 22px;
}

.wa-title {
  font-weight: 700;
  font-size: 12px;
  display: block;
}

.wa-sub {
  font-size: 10px;
  opacity: 0.9;
  display: block;
}

/* ==========================================
   9. RESPONSIVE BREAKPOINTS
   ========================================== */
@media (min-width: 640px) {
  .hero-section {
    padding: 50px 30px 60px;
  }
  
  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
  }

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

  .nav-btn {
    display: none; /* Menyembunyikan tombol pesanan di navbar saat tampilan HP agar tidak sesak */
  }
}
/* Sembunyikan badge/tulisan Netlify */
[data-netlify-deploy-id],
.netlify-badge,
footer a[href*="netlify.com"] {
    display: none !important;
}