/* --- VARIABLES & THEME --- */
        :root {
            --wl-gold: #c5a059;       
            --wl-gold-dim: #8c7035;
            --wl-blue: #1C3A5E;       
            --wl-black: #0d0d0d;      
            --wl-dark: #121212;
            --wl-paper: #f0f0f0;      
            --wl-red: #8a1c1c;        
            --font-display: 'Noto Serif JP', serif; 
            --font-body: 'Zen Old Mincho', serif;   
            --font-sans: 'Lato', sans-serif;        
        }

        /* --- RESET & GLOBAL --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            background-color: var(--wl-black);
            color: var(--wl-paper);
            font-family: var(--font-body);
            line-height: 1.7;
            overflow-x: hidden;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        section { padding: 6rem 5%; max-width: 1400px; margin: 0 auto; position: relative; }

        /* Background Pattern */
        .bg-pattern {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                radial-gradient(circle at 100% 150%, rgba(255,255,255,0.03) 24%, transparent 25%),
                radial-gradient(circle at 0% 150%, rgba(255,255,255,0.03) 24%, transparent 25%),
                radial-gradient(circle at 50% 100%, rgba(255,255,255,0.03) 10%, transparent 11%),
                radial-gradient(circle at 100% 50%, rgba(255,255,255,0.03) 5%, transparent 6%),
                radial-gradient(circle at 0% 50%, rgba(255,255,255,0.03) 5%, transparent 6%),
                radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 5%, transparent 6%);
            background-size: 40px 20px;
            z-index: -1;
            pointer-events: none;
        }

        /* --- TYPOGRAPHY --- */
        h1, h2, h3, h4 {
            font-family: var(--font-display);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 700;
        }
        .text-gold { color: var(--wl-gold); }
        .text-center { text-align: center; }

        /* --- BUTTONS --- */
        .btn-main {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            border: 1px solid var(--wl-gold);
            color: var(--wl-gold);
            font-family: var(--font-sans);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.8rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
            cursor: pointer;
            margin-top: 1rem;
        }
        .btn-main::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: var(--wl-gold);
            transition: 0.4s;
            z-index: -1;
        }
        .btn-main:hover::after { left: 0; }
        .btn-main:hover { color: var(--wl-black); }

        /* --- HEADER --- */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(13, 13, 13, 0.95);
            border-bottom: 1px solid rgba(197, 160, 89, 0.2);
            padding: 0.8rem 5%;
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo { display: flex; align-items: center; }
        .logo img { 
            height: 50px; 
            width: 50px; 
            border-radius: 50%; 
            object-fit: cover;
            border: 2px solid var(--wl-gold);
        }
        .brand-title {
            font-family: var(--font-display);
            color: var(--wl-gold);
            text-transform: uppercase;
            letter-spacing: .15em;
            font-weight: 700;
            margin-left: 15px;
            font-size: 1.1rem;
        }

        .nav-links { 
            display: flex; 
            gap: 2.5rem; 
        }
        .nav-links a {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 2px;
            color: #ccc;
            text-transform: uppercase;
            position: relative;
        }
        .nav-links a:hover, .nav-links a.active { color: var(--wl-gold); }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 50%;
            width: 0; height: 1px;
            background: var(--wl-gold);
            transition: 0.3s;
            transform: translateX(-50%);
        }
        .nav-links a:hover::after { width: 100%; }

        /* Mobile Nav */
        .mobile-toggle { 
            display: none; 
            font-size: 1.5rem; 
            color: var(--wl-gold); 
            cursor: pointer; 
            padding: 5px;
        }
        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.65);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: .3s;
            z-index: 998;
        }
        .nav-overlay.active { opacity: 1; visibility: visible; }

        /* --- HERO --- */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://warna-cloudinary.b-cdn.net/biru/warung-padi.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 30px; left: 30px; right: 30px; bottom: 30px;
            border: 1px solid rgba(197, 160, 89, 0.5);
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 3rem;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            border: 1px solid var(--wl-gold);
            max-width: 800px;
            width: 90%;
        }
        .hero h1 {
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 0.5rem;
            text-shadow: 0 5px 15px rgba(0,0,0,0.8);
        }
        .hero-sub {
            display: block;
            font-size: 1.2rem;
            color: var(--wl-gold);
            margin-bottom: 1rem;
            font-family: var(--font-display);
            text-transform: none;
            font-weight: 400;
        }
        .hero p {
            font-family: var(--font-sans);
            color: #ddd;
            margin-bottom: 2rem;
            font-size: 1rem;
            letter-spacing: 1px;
        }

        /* --- SECTION HEADERS --- */
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
            position: relative;
        }
        .section-header h2 {
            font-size: 2.5rem;
            color: #fff;
            position: relative;
            z-index: 2;
        }
        .section-header .sub-title {
            display: block;
            color: var(--wl-gold);
            font-family: var(--font-display);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-transform: none;
            font-weight: 400;
        }
        .section-header::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--wl-red);
            margin: 1rem auto 0;
        }

        /* --- ABOUT --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .about-img { position: relative; }
        .about-img img { border: 1px solid #333; width: 100%; height: auto; object-fit: cover; }
        .about-content p {
            font-size: 1.05rem;
            color: #aaa;
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .features-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .f-item {
            border-left: 2px solid var(--wl-gold);
            padding-left: 1rem;
        }
        .f-item h4 { color: #fff; font-size: 1rem; margin-bottom: 0.2rem; }
        .f-item span { color: #666; font-size: 0.9rem; font-family: var(--font-sans); }

        /* --- SWIPER / SLIDER --- */
        .menu-swiper, .gallery-swiper {
            width: 100%;
            padding-bottom: 3rem;
        }
        .swiper-slide {
            width: auto;
            height: auto;
        }
        .card-img-wrap {
            width: 320px;
            height: 240px;
            overflow: hidden;
            position: relative;
            border: 1px solid #222;
        }
        .card-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
            cursor: pointer;
        }
        .card-img-wrap:hover img { transform: scale(1.1); }
        
        /* Swiper Navigation Customization */
        .swiper-button-prev, .swiper-button-next { color: var(--wl-gold) !important; }
        .swiper-pagination-bullet { background: #555; opacity: 1; }
        .swiper-pagination-bullet-active { background: var(--wl-gold) !important; }

        /* --- MENU LIST (TABLE/GRID) --- */
        .menu-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }
        .menu-category {
            background: #101010;
            padding: 2rem;
            border: 1px solid #222;
            position: relative;
        }
        .menu-category h3 {
            color: var(--wl-gold);
            font-size: 1.4rem;
            border-bottom: 1px solid #333;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .menu-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-family: var(--font-sans);
            font-size: 0.95rem;
            border-bottom: 1px dotted #222;
            padding-bottom: 5px;
        }
        .menu-item:last-child { border-bottom: none; }
        .menu-name { color: #ddd; flex: 1; padding-right: 10px; }
        .menu-price { color: var(--wl-gold); font-weight: 700; white-space: nowrap; }

        /* --- REVIEWS --- */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .review-card {
            background: #151515;
            padding: 2.5rem 2rem;
            border: 1px solid #222;
            text-align: center;
            position: relative;
        }
        .review-text {
            font-style: italic;
            color: #ccc;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        .review-avatar {
            width: 50px; height: 50px;
            background: var(--wl-gold-dim);
            border-radius: 50%;
            margin: 0 auto 10px;
            display: flex; justify-content: center; align-items: center;
            font-weight: 700; color: #fff;
        }
        .stars { color: var(--wl-gold); font-size: 0.9rem; margin-top: 5px; }

        /* --- FAQ --- */
        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-item {
            border-bottom: 1px solid #222;
            padding: 1.5rem 0;
            cursor: pointer;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            color: #fff;
            font-family: var(--font-sans);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
            color: #999;
            font-family: var(--font-body);
            padding-right: 2rem;
        }
        .faq-item.open .faq-answer { max-height: 200px; padding-top: 1rem; }
        .faq-item i { transition: transform 0.3s; }
        .faq-item.open i { transform: rotate(180deg); color: var(--wl-gold); }

        /* --- CONTACT & MAP --- */
        .loc-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            background: #111;
            border: 1px solid #222;
        }
        .contact-info { padding: 3rem; }
        .contact-info h3 { font-size: 1.5rem; color: var(--wl-gold); margin-bottom: 1.5rem; }
        .contact-detail { margin-bottom: 1.2rem; display: flex; align-items: flex-start; }
        .contact-detail i { color: var(--wl-gold); margin-right: 15px; margin-top: 5px; width: 20px; text-align: center; }
        .contact-detail p, .contact-detail a { color: #ccc; font-family: var(--font-sans); font-size: 0.95rem; }
        .contact-socials { display: flex; gap: 15px; margin-top: 2rem; }
        .contact-socials a {
            width: 45px; height: 45px;
            border: 1px solid #333;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #fff; transition: 0.3s; font-size: 1.2rem;
        }
        .contact-socials a:hover { border-color: var(--wl-gold); color: var(--wl-gold); transform: translateY(-3px); }
        
        /* Map */
        .map-wrapper { width: 100%; height: 100%; min-height: 400px; }
        .map-wrapper iframe { width: 100%; height: 100%; border: 0; filter: grayscale(100%) invert(92%) contrast(83%); }

        /* --- FOOTER --- */
        footer {
            background: #050505;
            padding: 3rem 5% 1.5rem;
            text-align: center;
        }
        .footer-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            opacity: 0.8;
            border: 1px solid #333;
        }
        .copyright {
            font-family: var(--font-sans);
            font-size: 0.8rem;
            color: #444;
            padding-top: 2rem;
            border-top: 1px solid #1a1a1a;
        }

        /* --- LIGHTBOX --- */
        .menu-lightbox {
            position: fixed; inset: 0; background: rgba(0,0,0,.9);
            backdrop-filter: blur(5px); opacity: 0; visibility: hidden;
            transition: .25s ease; display: flex; align-items: center;
            justify-content: center; z-index: 2000;
        }
        .menu-lightbox.active { opacity: 1; visibility: visible; }
        .menu-lightbox-content { position: relative; max-width: 90%; max-height: 90%; }
        .menu-lightbox-content img { max-width: 100%; max-height: 85vh; border: 2px solid var(--wl-gold); box-shadow: 0 0 40px rgba(0,0,0,.8); }
        .menu-lightbox-close {
            position: absolute; top: -40px; right: 0; font-size: 2rem;
            color: var(--wl-gold); cursor: pointer;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .about-grid { grid-template-columns: 1fr; }
            .loc-container { grid-template-columns: 1fr; }
            .map-wrapper { height: 350px; min-height: 350px; }
            
            /* Mobile Navigation Logic */
            .nav-links {
                position: fixed;
                top: 0; right: 0;
                width: 75%; height: 100vh;
                background: #111;
                flex-direction: column;
                justify-content: center;
                padding: 2rem;
                gap: 2rem;
                transform: translateX(100%);
                transition: 0.3s ease-in-out;
                z-index: 1001; /* Higher than overlay */
                border-left: 1px solid var(--wl-gold);
            }
            .nav-links.active { transform: translateX(0); }
            .mobile-toggle { display: block; z-index: 1002; }
        }

        @media (max-width: 600px) {
            section { padding: 4rem 5%; }
            .hero-content { padding: 2rem 1.5rem; }
            .hero h1 { font-size: 2.2rem; }
            .section-header h2 { font-size: 2rem; }
            .features-list { grid-template-columns: 1fr; }
            .menu-layout { grid-template-columns: 1fr; }
            .contact-info { padding: 2rem; }
        }

        /* =========================
   WHATSAPP FLOAT + MODAL
========================= */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0.45);
  background: rgba(17,17,17,0.92);
  color: var(--wl-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: .25s ease;
}
.wa-float i{ font-size: 1.6rem; }
.wa-float:hover{
  transform: translateY(-4px);
  border-color: var(--wl-gold);
}

.wa-modal{
  position: fixed;
  inset: 0;
  z-index: 2600;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}
.wa-modal.active{
  opacity: 1;
  visibility: visible;
}
.wa-modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.wa-modal-card{
  position: absolute;
  right: 18px;
  bottom: 90px;
  width: min(420px, calc(100% - 36px));
  background: #0f0f0f;
  border: 1px solid rgba(197,160,89,0.35);
  box-shadow: 0 18px 60px rgba(0,0,0,0.7);
  border-radius: 14px;
  overflow: hidden;
}
.wa-close{
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #ddd;
  font-size: 1.8rem;
  cursor: pointer;
}
.wa-head{
  display: flex;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid #1b1b1b;
}
.wa-avatar{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197,160,89,0.35);
  color: var(--wl-gold);
}
.wa-title{
  font-family: var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  font-size: 1rem;
}
.wa-subtitle{
  font-family: var(--font-sans);
  color: #aaa;
  font-size: .85rem;
  margin-top: 2px;
}
.wa-body{
  padding: 14px 18px 18px;
}
.wa-label{
  display: block;
  font-family: var(--font-sans);
  color: #bbb;
  font-size: .85rem;
  margin-bottom: 8px;
}
.wa-textarea{
  width: 100%;
  background: #0b0b0b;
  border: 1px solid #222;
  border-radius: 10px;
  color: #ddd;
  padding: 12px;
  resize: none;
  outline: none;
  font-family: var(--font-sans);
}
.wa-textarea:focus{
  border-color: rgba(197,160,89,0.65);
}
.wa-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.wa-send{
  margin-top: 0 !important;
  text-align: center;
}
.wa-quick{
  font-family: var(--font-sans);
  color: #ccc;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #222;
  border-radius: 10px;
}
.wa-quick:hover{
  border-color: rgba(197,160,89,0.55);
  color: var(--wl-gold);
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand-top{
  font-family: var(--font-display);
  color: var(--wl-gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: .95rem;
}

.brand-bottom{
  font-family: var(--font-sans);
  color: #cfcfcf;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  font-size: .72rem;
  margin-top: 4px;
}
@media (max-width: 600px){
  .brand-top{ font-size: .82rem; letter-spacing: .14em; }
  .brand-bottom{ font-size: .65rem; letter-spacing: .18em; }
}

.map-wrapper iframe{
  width: 100%;
  height: 100%;
  border: 0;
  filter: none;            /* <- ini yang bikin warna asli */
}

/* MAP WARNA ASLI (BERANDA & LOKASI) */
.map-home iframe,
.map-full iframe{
  filter: none !important;
}

