
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background-color: #1b1715;
            color: #e0e0e0;
        }
        
        section {
            position: relative;
            overflow: hidden;
        }
        
        .logo-container {
            text-align: center;
            padding: 40px 0 30px;
            animation: fadeInDown 1s ease-out;
        }
        
        .logo-container img {
            max-width: 300px;
            height: auto;
            transition: transform 0.3s ease;
        }
        
        .logo-container img:hover {
            transform: scale(1.05);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(rgba(27, 23, 21, 0.7), rgba(27, 23, 21, 0.8)), url('./assets/img/banner.webp') center/cover;
            animation: fadeInUp 1s ease-out;
        }
        .hero-content{
            max-width: 950px;
        }
        .hero-content h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            color: #e8b159;
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(111, 111, 111, 0.5);
            letter-spacing: 2px;
            
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.4rem);
            color: #f0c550;
            margin-bottom: 15px;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        
        .hero-description {
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
            color: #e0e0e0;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 20px;
            background: #1b1715;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        
        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.1);
        }
        
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: #b43290;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .section-text {
            color: #b8b8b8;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, rgba(180, 50, 144, 0.05) 0%, rgba(27, 23, 21, 1) 100%);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 60px auto 0;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #b43290;
            box-shadow: 0 20px 40px rgba(180, 50, 144, 0.2);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: #f0c550;
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .feature-text {
            color: #b8b8b8;
            line-height: 1.6;
        }
        
        /* Gallery Section */
        .gallery-section {
            padding: 100px 20px;
            background: #1b1715;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 60px auto 0;
        }
        
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            height: 350px;
            position: relative;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: block;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.15);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 30px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-title {
            color: #f0c550;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        /* Menu Highlights */
        .menu-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, rgba(240, 197, 80, 0.05) 0%, rgba(27, 23, 21, 1) 100%);
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 60px auto 0;
        }
        
        .menu-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
        }
        
        .menu-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(240, 197, 80, 0.2);
        }
        
        .menu-image {
            height: 250px;
            overflow: hidden;
        }
        
        .menu-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .menu-card:hover .menu-image img {
            transform: scale(1.1);
        }
        
        .menu-content {
            padding: 30px;
        }
        
        .menu-title {
            font-size: 1.5rem;
            color: #f0c550;
            margin-bottom: 15px;
            
        }
        
        .menu-description {
            color: #b8b8b8;
            line-height: 1.6;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 20px;
            background: #1b1715;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 60px auto;
        }
        
        .contact-card {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: scale(1.05);
            border-color: #b43290;
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: #f0c550;
            margin-bottom: 20px;
        }
        
        .contact-text {
            color: #e0e0e0;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .contact-text a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: #f0c550;
        }
        
        /* Social Links */
        .social-section {
            padding: 60px 20px;
            background: rgba(180, 50, 144, 0.1);
            text-align: center;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 30px;
        }
        
        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #b43290;
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(213, 195, 136, 0.3);
        }
        
        /* CTA Button */
        .btn-primary-custom {
            background: linear-gradient(135deg, #b43290 0%, #f0c550 100%);
            border: none;
            color: #0a0a0a;
            padding: 15px 45px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            margin-top: 20px;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, #f0c550 0%, #b43290 100%);
            color: #0a0a0a;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Responsive */
        @media only screen and (max-width: 1200px) {
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .logo-container img {
                max-width: 196px;
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item {
                height: 300px;
            }
        }
        .text-center {
            text-align: center;
        }
        
        /* Floating Reserve Button */
        .floating-reserve-btn {
            position: fixed;
            bottom: 90px;
            right: 20px;
            background: #d4a017;
            color: #000;
            padding: 14px 26px;
            border-radius: 50px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.4);
            transition: 0.3s ease;
        }

        .floating-reserve-btn:hover {
            background: #b88a12;
            transform: translateY(-3px);
        }

        /* Mobile Optimization */
        @media (max-width: 600px) {
            .floating-reserve-btn {
                bottom: 80px;
                right: 15px;
                padding: 12px 20px;
                font-size: 14px;
                border-radius: 40px;
            }
        }

        /* Popup Overlay */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 99999;
        }

        /* Popup Box */
        .popup-box {
            background: #111;
            width: 380px;
            padding: 30px;
            border-radius: 12px;
            border: 2px solid #d4a017;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
        }

        .popup-box h2 {
            color: #d4a017;
            margin-bottom: 20px;
        }

        .popup-box label {
            display: block;
            margin-top: 10px;
            color: #d4a017;
        }

        .popup-box input {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border-radius: 6px;
            border: 1px solid #444;
            background: #222;
            color: #fff;
        }

        .submit-btn {
            width: 100%;
            margin-top: 20px;
            padding: 12px;
            background: #d4a017;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            color: #000;
        }

        .close-popup {
            float: right;
            font-size: 28px;
            cursor: pointer;
            color: #d4a017;
        }

        /* Success Toast */
        .success-message {
            display: none;
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: #d4a017;
            color: #000;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0,0,0,0.4);
            z-index: 99999;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .success-message.show {
            display: block;
            opacity: 1;
        }
        
        .section-block {
            padding: 100px 0; /* top + bottom spacing */
        }

        .section-block + .section-block {
            margin-top: 40px; /* extra spacing between sections */
        }

        /* FULLWIDTH CAROUSEL */
        .fullwidth-carousel {
            position: relative;
            width: 100%;
            height: 70vh;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Privacy Policy link styling */
        .privacy-link {
            color: #fff; /* white or match your theme */
            text-decoration: none; /* removes underline */
            font-size: 14px;
            margin-top: 10px;
            display: inline-block;
        }

        .privacy-link:hover {
            color: #d4a017; /* gold hover effect */
            text-decoration: underline; /* optional hover underline */
        }
        
        .promo-video video {
            width: 100%;        /* fits screen width */
            height: auto;       /* adjusts height proportionally */
            max-height: 100vh;  /* never taller than screen */
            object-fit: contain; /* shows entire video without cropping */
            display: block;
            margin: 0 auto;     /* centers on page */
        }
        
        @media (max-width: 768px) {
        .promo-video video {
            max-height: 60vh; /* reduce height for mobile */
            }
        }
/* ============================
   SIMPLE MENU HEADER (SITEWIDE)
   ============================ */

        header.menu-header {
            width: 100%;
            text-align: center;
            padding: 15px 0;
            background: transparent;
        }

/* SUPER-SPECIFIC SELECTOR TO BEAT BOOTSTRAP + LIGHTGALLERY */
        header.menu-header nav.menu-nav a,
        header.menu-header nav.menu-nav a:link,
        header.menu-header nav.menu-nav a:visited,
        header.menu-header nav.menu-nav a:active {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            color: #b43290 !important; /* PURPLE */
            margin: 0 18px;
            text-decoration: none !important;
            transition: 0.3s ease;
        }

/* HOVER OVERRIDE */
        header.menu-header nav.menu-nav a:hover {
            color: #e8b159 !important; /* GOLD */
        }
        
/* FIX HEADER VISIBILITY */
        .menu-header {
            position: relative;
            z-index: 9999;
            padding: 20px 0;
            text-align: center;
            background: #1b1715;
        }

        .menu-nav a {
            color: #b43290 !important;
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0 15px;
            text-decoration: none !important;
        }

        .menu-nav a:hover {
            color: #e8b159 !important;
        }

