:root {
  --gold: #e08700;
  --gold-light: #e0be75;
  --black: #050505;
  --dark-gray: #0f1014;
  --text-white: #e8e6e3;
  --text-muted: #a0a0a0;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text-white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: var(--gold); transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
section { padding: 6rem 0; }

/* UTILITIES */
.text-center { text-align: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }

/* PRELOADER */
#preloader{
  position: fixed; inset: 0;
  background: var(--black); z-index: 9999;
  display:flex; justify-content:center; align-items:center;
  transition: opacity 1s ease-out;
}
.preloader-content div{
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  animation: pulse 2s infinite;
  border: 2px solid var(--gold);
  padding: 20px;
  border-radius: 50%;
  width: 80px; height: 80px;
  display:flex; justify-content:center; align-items:center;
}
@keyframes pulse{
  0% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 20px rgba(224,135,0,.4); }
  100% { transform: scale(1); opacity: .8; }
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--gold); line-height: 1.3; }
h1 { font-size: 3.5rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); margin-bottom: 1rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 1rem; position: relative; display: inline-block; }
p { color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; }

.section-header { text-align: center; margin-bottom: 4rem; width: 100%; }
.section-header h2::after{
  content:'';
  display:block;
  width:60px; height:3px;
  background: var(--gold);
  margin: 15px auto 0;
}
.section-header p{ max-width: 800px; margin: 1rem auto 0; }

/* BUTTONS */
.btn-gold{
  display:inline-block;
  padding: 12px 35px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  z-index:1;
  margin-top: 20px;
  cursor: pointer;
}
.btn-gold::before{
  content:'';
  position:absolute; top:0; left:0;
  width:0%; height:100%;
  background: var(--gold);
  z-index:-1;
  transition: all .4s ease;
}
.btn-gold:hover::before{ width:100%; }
.btn-gold:hover{ color: var(--black); box-shadow: 0 0 20px rgba(197,160,89,.4); }

/* NAVBAR */
.navbar{
  position: fixed; top:0; left:0; right:0;
  width:100%;
  padding: 1.5rem 5%;
  display:flex; justify-content:space-between; align-items:center;
  z-index:1000;
  transition: all .4s ease;
}
.navbar.scrolled{
  background: rgba(15,16,20,.95);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(197,160,89,.2);
}

.brand{
  display:flex; align-items:center; gap:15px;
  text-decoration:none; color: inherit;
  pointer-events:auto;
}
.logo-text-icon{ font-size: 2rem; color: var(--gold); }
.brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.brand-title{
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.brand-subtitle{
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.brand:hover .brand-title{ color: var(--gold-light); }

.nav-links{ display:flex; gap: 2.5rem; }
.nav-links a{
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text-white);
  position: relative;
}
.nav-links a::after{
  content:'';
  position:absolute; bottom:-5px; left:0;
  width:0%; height:2px;
  background: var(--gold);
  transition: .3s;
}
.nav-links a:hover::after{ width:100%; }

.hamburger{
  display:none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor:pointer;
  transition:.3s;
  pointer-events:auto;
}
.hamburger:hover{ color: var(--text-white); }

/* MOBILE MENU */
.mobile-menu{
  position: fixed; top:0; right:-80%;
  height:100vh; width:80%; max-width:300px;
  background:#1a1a1a;
  z-index:1001;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  transition: right .4s cubic-bezier(.77,0,.175,1);
  box-shadow: -5px 0 30px rgba(0,0,0,.8);
  border-left: 1px solid var(--gold);
}
.mobile-menu.active{ right:0; }
.mobile-menu a{
  color: var(--text-white);
  font-size: 1.2rem;
  margin: 20px 0;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 2px;
}
.mobile-menu a:hover{ color: var(--gold); }

.menu-overlay-bg{
  position: fixed; inset:0;
  background: rgba(0,0,0,.7);
  z-index:1000;
  opacity:0; visibility:hidden;
  transition: .3s;
  backdrop-filter: blur(2px);
  pointer-events:none;
}
.menu-overlay-bg.active{
  opacity:1; visibility:visible; pointer-events:auto;
}

/* HERO */
.hero{
  height: 100vh;
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  overflow:hidden;
  z-index:0;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.85)
    ),
    url('/asset/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@keyframes zoomSlow{ from{ transform:scale(1); } to{ transform:scale(1.15); } }
.hero-content{ padding: 0 5%; max-width: 900px; position: relative; z-index:2; }
.hero-content p{ font-size: 1.3rem; color: var(--gold-light); margin-bottom: 2rem; }
.hero-actions{ display:flex; gap: 14px; justify-content:center; flex-wrap:wrap; }

/* ABOUT */
.about-section{
  background: var(--dark-gray);
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items:center;
  text-align:left;
}
.about-text{ padding-right: 2rem; }
.about-text h3{ margin-bottom: 1.5rem; color: var(--text-white); font-size: 1.8rem; }
.about-text p{ margin-bottom: 1.2rem; text-align: justify; }

.highlight-list{ margin-top: 1.5rem; }
.highlight-list li{
  margin-bottom: 12px;
  color: var(--text-white);
  font-weight: 700;
  display:flex; align-items:center;
}
.highlight-list i{ color: var(--gold); margin-right: 12px; font-size: 1.2rem; }

.about-img-group{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.about-img-group img{
  width:100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(40%);
  transition: .5s;
  border: 1px solid rgba(224,135,0,.1);
}
.about-img-group img:hover{
  filter: grayscale(0%);
  transform: scale(1.03);
  border-color: var(--gold);
}

/* PRICE / MENU */
.price-section{
  background: linear-gradient(to bottom, var(--black), var(--dark-gray));
  border-top: 1px solid rgba(255,255,255,.06);
}
.price-wrap{ max-width: 900px; margin: 0 auto 3rem; }
.price-table{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(224,190,117,.2);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  margin-bottom: 2rem;
}
.price-category{
  background: rgba(224,190,117,.1);
  padding: 15px;
  text-align:center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight:700;
  border-bottom: 1px solid rgba(224,190,117,.2);
}
.price-row{
  display:grid;
  grid-template-columns: 1.5fr 2fr .5fr;
  gap: 15px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items:center;
  transition: .2s;
}
.price-row:hover{ background: rgba(255,255,255,.03); }
.price-row:last-child{ border-bottom: 0; }
.price-name{ font-weight: 700; color: var(--text-white); font-size: 1.1rem; }
.price-detail{ font-size: .85rem; color: var(--text-muted); font-style: italic; text-align:left; }
.price-val{ font-weight: 800; color: var(--gold); text-align:right; }

/* REVIEWS */
.reviews-section{ background: var(--dark-gray); }
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.review-card{
  background:#151515;
  padding:2rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  text-align:left;
  box-shadow: 0 5px 20px rgba(0,0,0,.3);
  transition: transform .3s;
}
.review-card:hover{ transform: translateY(-5px); }
.review-card p{ font-style: italic; margin-bottom: 1.5rem; color: #ddd; }
.reviewer-info{ display:flex; align-items:center; gap: 15px; }
.reviewer-avatar{
  width: 50px; height: 50px;
  background:#333;
  border-radius: 50%;
  display:flex; justify-content:center; align-items:center;
  color: var(--gold); font-weight:bold;
}
.reviewer-meta h4{ font-size: 1rem; margin-bottom: 2px; color: var(--gold); }
.rating i{ color: gold; font-size: .8rem; }

/* FAQ */
.faq-section{ background: var(--black); }
.faq-wrapper{ max-width: 800px; margin: 0 auto; }
.faq-item{
  border: 1px solid #333;
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow:hidden;
  background:#0f1014;
}
.faq-question{
  padding: 1.2rem 1.5rem;
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  color: var(--text-white);
  font-weight:700;
  transition: background .3s;
}
.faq-question:hover{ background:#1a1a1a; }
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition: max-height .4s ease-out;
  padding: 0 1.5rem;
  background:#0a0a0a;
  border-top: 1px solid transparent;
}
.faq-answer p{ padding: 1.5rem 0; color: var(--text-muted); }
.faq-item.active .faq-answer{ max-height: 300px; border-top-color: #333; }
.faq-item.active .faq-question i{ transform: rotate(180deg); color: var(--gold); }

/* =========================
   LOCATION - BACKGROUND BAWAH
========================= */
.info-section{
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.90)
    ),
    url('/asset/lokasibackgroundbawah.jpg') no-repeat center/cover;
}
.info-overlay{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,0.55);
}
.info-content{
  position: relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-box{
  padding: 2.5rem;
  border: 1px solid rgba(197,160,89,.3);
  background: rgba(20,20,20,.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  text-align:center;
}
.contact-row{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-bottom: 2rem;
}
.contact-row i{ color: var(--gold); font-size: 2rem; margin-bottom: 10px; }
.contact-row h4{ margin-bottom: 5px; color: var(--text-white); }
.contact-row p, .contact-row a{ color: var(--text-muted); text-align:center; }
.contact-row a:hover{ color: var(--gold); }

.map-wrapper{
  position: relative;
  width:100%;
  min-height: 450px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  overflow:hidden;
  box-shadow: 0 0 30px rgba(197,160,89,.1);
}
.map-wrapper iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
  filter: invert(90%) hue-rotate(180deg) contrast(90%);
}

/* map infocard (tadi belum ada css) */
.map-infocard{
  position:absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(20,20,20,.92);
  border: 1px solid rgba(224,190,117,.28);
  border-radius: 12px;
  padding: 12px 14px;
  max-width: calc(100% - 28px);
  z-index: 2;
  backdrop-filter: blur(8px);
}
.map-infocard__title{
  color: var(--text-white);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: .3px;
}
.map-infocard__link{
  display:inline-block;
  font-weight: 800;
  color: var(--gold);
}
.map-infocard__link:hover{ color: var(--gold-light); }

/* FOOTER */
footer{
  padding: 4rem 5% 2rem;
  text-align:center;
  background:#020202;
  border-top: 1px solid #222;
}
.footer-socials{
  margin: 2rem 0;
  display:flex;
  justify-content:center;
  gap: 1.5rem;
}
.footer-socials a{
  width:50px; height:50px;
  border: 1px solid #333;
  border-radius: 50%;
  display:flex; justify-content:center; align-items:center;
  font-size: 1.2rem;
  transition: all .3s ease;
  color: var(--text-muted);
  background:#111;
}
.footer-socials a:hover{
  border-color: var(--gold);
  color: var(--black);
  background: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(197,160,89,.6);
}
.footer-copyright{
  font-size: .9rem;
  color:#666;
  margin-top: 2rem;
  border-top: 1px solid #111;
  padding-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 860px){
  h1{ font-size: 2.5rem; }
  h2{ font-size: 2rem; }

  .about-section, .info-content{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .about-text{ padding-right: 0; margin-bottom: 2rem; }
  .about-text p{ text-align:center; }
  .highlight-list li{ justify-content:center; }
  .nav-links{ display:none; }
  .hamburger{ display:block; }

  .price-row{ grid-template-columns: 1fr; gap: 5px; text-align:left; }
  .price-detail, .price-val{ text-align:left; }
  .price-val{ margin-top: 5px; font-size: 1.1rem; }
  .map-wrapper{ min-height: 350px; }
  .about-img-group img{ height: 200px; }
}

/* =========================
   WHATSAPP POPUP WIDGET
========================= */
.wa-float-btn{
  position: fixed; right: 18px; bottom: 18px;
  z-index: 1200;
  width: 56px; height: 56px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background:#25D366; color:#000;
  box-shadow: 0 10px 25px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.15);
  cursor:pointer;
  transition: transform .2s ease;
}
.wa-float-btn:hover{ transform: translateY(-2px); }
.wa-float-btn i{ color:#0b0b0b; font-size: 26px; }

.wa-popup-overlay{
  position: fixed; inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(2px);
  z-index: 1250;
  opacity:0; visibility:hidden;
  transition: .25s;
}
.wa-popup-overlay.active{ opacity:1; visibility:visible; }

.wa-popup{
  position: fixed; right: 18px; bottom: 86px;
  width: min(360px, calc(100% - 36px));
  background: rgba(20,20,20,.92);
  border: 1px solid rgba(224,190,117,.28);
  border-radius: 14px;
  overflow:hidden;
  z-index: 1300;
  transform: translateY(10px);
  opacity:0; visibility:hidden;
  transition: .25s;
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}
.wa-popup.active{ transform: translateY(0); opacity:1; visibility:visible; }

.wa-popup__head{
  padding: 14px 16px;
  background: rgba(224,190,117,.10);
  display:flex; align-items:center; justify-content:space-between; gap: 12px;
}
.wa-popup__title{ display:flex; flex-direction:column; gap: 2px; }
.wa-popup__title strong{ color: var(--text-white); letter-spacing: .5px; }
.wa-popup__title span{ color: var(--text-muted); font-size: 12px; }
.wa-popup__close{
  width:36px; height:36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text-white);
  cursor:pointer;
  display:flex; justify-content:center; align-items:center;
}

.wa-popup__body{ padding: 14px 16px 16px; }
.wa-quick{ display:flex; flex-wrap:wrap; gap: 8px; margin-bottom: 10px; }
.wa-chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(224,190,117,.25);
  background: rgba(255,255,255,.03);
  color: var(--text-white);
  font-size: 12px;
  cursor:pointer;
}
.wa-chip:hover{ border-color: rgba(224,190,117,.55); }

.wa-popup textarea{
  width:100%;
  min-height: 92px;
  resize:none;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: var(--text-white);
  outline:none;
  font-family: var(--font-body);
}
.wa-popup__actions{ display:flex; gap: 10px; margin-top: 12px; }
.wa-btn{
  flex:1;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(224,190,117,.25);
  background: rgba(255,255,255,.03);
  color: var(--text-white);
  cursor:pointer;
  font-weight: 700;
  text-align:center;
}
.wa-btn--primary{
  background: var(--gold);
  color: #0b0b0b;
  border-color: rgba(224,190,117,.55);
}

.brand-title{
  font-size: 1.2rem; /* dari 1.4rem jadi sedikit lebih kecil */
  white-space: nowrap;
}

.brand-logo{
  width: 44px;
  height: 44px;
  border-radius: 10px;      /* kalau mau bulat penuh: 999px */
  object-fit: cover;
  border: 1px solid rgba(224,190,117,.35);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.brand-logo{ border-radius: 999px; }

/* =========================
   OFFSET NAVBAR FIXED (SEMUA HALAMAN)
========================= */
:root { --nav-height: 92px; }

.hero{
  padding-top: var(--nav-height);
}

/* khusus halaman yang pakai class hero-page */
.hero-page{
  padding-top: 110px;
}

/* =========================
   FIX MOBILE HERO-PAGE
========================= */
@media (max-width: 600px){
  :root{ --nav-height: 78px; } /* navbar lebih kecil di mobile */

  /* hero biasa */
  .hero{
    padding-top: var(--nav-height);
  }

  /* hero khusus page seperti /tentang */
  .hero-page{
    padding-top: 125px;      /* ini yang bikin tidak nabrak + tidak kebanyakan kosong */
    height: auto;
    min-height: 100vh;
  }

  .hero-page .hero-content{
    padding-top: 0;
  }

  .hero-page h1{
    font-size: 2.2rem;
    line-height: 1.15;
    margin: 0 0 14px;
  }

  .hero-page p{
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions{
    gap: 10px;
  }

  .btn-gold{
    padding: 12px 18px;
    letter-spacing: 1.5px;
  }

  /* kecilkan navbar agar tidak makan tempat */
  .navbar{
    padding: 0.9rem 5%;
  }

  .brand-logo{
    width: 36px;
    height: 36px;
  }

  .brand-title{
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .brand-subtitle{
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
}

.map-wrapper iframe{
  filter: none;
}

/* =========================
   FIX MOBILE HOME HERO (NAVBAR vs H1)
========================= */
.hero-home{
  padding-top: 110px; /* desktop aman */
}

/* Mobile */
@media (max-width: 600px){
  .hero-home{
    padding-top: 135px;  /* jarak aman dari navbar */
    height: auto;        /* jangan maksa 100vh kalau membuat tabrakan */
    min-height: 100vh;
  }

  .hero-home .hero-content{
    padding-top: 0;
  }

  /* H1 diperkecil agar tidak ketabrak */
  .hero-home h1{
    font-size: 2.1rem;
    line-height: 1.12;
    margin: 0 0 12px;
  }

  /* paragraf rapikan */
  .hero-home p{
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  /* tombol jadi rapi (stack) */
  .hero-home .hero-actions{
    gap: 10px;
  }
  .hero-home .btn-gold{
    padding: 12px 18px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 600px){
  .navbar{
    padding: 0.9rem 5%;
  }
  .brand-logo{ width: 36px; height: 36px; }
  .brand-title{ font-size: 1.05rem; white-space: nowrap; }
  .brand-subtitle{ font-size: 0.65rem; letter-spacing: 2px; }
}

/* =========================
   PARTY 5 GALLERY (NO CROP)
========================= */
.party5-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.party5-gallery img{
  width: 100%;
  height: auto;              /* ⬅️ tinggi mengikuti foto */
  object-fit: contain;       /* ⬅️ FOTO UTUH, TIDAK TERPOTONG */
  background: #0f1014;       /* latar hitam elegan kalau rasio beda */
  border-radius: 14px;
  border: 1px solid rgba(224,190,117,.18);
  padding: 6px;              /* jarak halus biar rapi */
  transition: transform .3s ease, box-shadow .3s ease;
}

.party5-gallery img:hover{
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(224,190,117,.25);
}

/* Tablet */
@media (max-width: 900px){
  .party5-gallery{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 520px){
  .party5-gallery{
    grid-template-columns: 1fr;
  }
}

/* =========================
   HERO BACKGROUND - TENTANG
========================= */
.hero-tentang .hero-bg{
  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.88)
    ),
    url('/asset/party5Tentang.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile optimization */
@media (max-width: 600px){
  .hero-tentang .hero-bg{
    background-position: center top; /* fokus ke bagian atas foto */
  }
}

/* =========================
   HERO BACKGROUND - MENU
========================= */
.hero-menu .hero-bg{
  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.88)
    ),
    url('/asset/menubackground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile optimization */
@media (max-width: 600px){
  .hero-menu .hero-bg{
    background-position: center top; /* fokus ke makanan */
  }
}

/* =========================
   HERO BACKGROUND - REVIEW
========================= */
.hero-review .hero-bg{
  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.88)
    ),
    url('/asset/reviewbackground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile optimization */
@media (max-width: 600px){
  .hero-review .hero-bg{
    background-position: center top; /* fokus ke bangunan / signage */
  }
}

/* =========================
   HERO BACKGROUND - FAQ
========================= */
.hero-faq .hero-bg{
  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.88)
    ),
    url('/asset/faqbackground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile optimization */
@media (max-width: 600px){
  .hero-faq .hero-bg{
    background-position: center top; /* fokus ke langit/sunset */
  }
}

/* =========================
   HERO BACKGROUND - LOKASI
========================= */
.hero-lokasi .hero-bg{
  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.88)
    ),
    url('/asset/lokasibackground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile optimization */
@media (max-width: 600px){
  .hero-lokasi .hero-bg{
    background-position: center top; /* fokus ke langit/sunset */
  }
}

@media (max-width: 768px){
  .info-section{
    background-position: center top; /* fokus ke makanan */
    background-attachment: scroll;   /* HINDARI fixed di mobile */
  }
}

