/* ==========================================================================
   PRODUCTION CORE TOKENS & RESET INTERACTION SCROLLS
   ========================================================================== */
:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #121212;
    --gold: #D4AF37;
    --gold-hover: #AA8417;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(20, 20, 20, 0.65);
    --glass-border: rgba(212, 175, 55, 0.15);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHY & RESUSCITATED BASE LAYOUT UI ELEMENTS
   ========================================================================== */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-weight: 600;
}

p {
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-muted);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.text-center { text-align: center; }
.align-center { align-items: center; }

.gold-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 40px auto;
}

/* Layout Utilities Grid structures */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

/* Premium Reusable Buttons Customization */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-gold {
    background: var(--gold);
    color: var(--bg-primary);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-block { width: 100%; text-center: center; }

/* ==========================================================================
   LOADING BAR CORE ANIMATED COMPONENT SETUP
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}

.loader-content { text-align: center; }
.loader-logo { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; letter-spacing: 6px; }
.loader-line {
    width: 180px; height: 1px; background: rgba(212,175,55,0.2);
    margin: 0 auto; position: relative; overflow: hidden;
}
.loader-line::after {
    content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
    position: absolute; animation: loadingShift 1.5s infinite linear;
}

@keyframes loadingShift {
    0% { left: -40px; }
    100% { left: 180px; }
}

/* ==========================================================================
   SCROLLBAR & TRACK PROGRESS MANAGEMENT UI
   ========================================================================== */
#scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; background: var(--gold);
    width: 0%; z-index: 99999; transition: width 0.1s linear;
}

/* ==========================================================================
   NAVIGATION BAR HEADER MATRIX STRUCTURE
   ========================================================================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
    padding: 25px 0; transition: var(--transition-smooth);
    background: transparent;
}

.navbar.sticky {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.static-nav {
    position: relative !important;
    background: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    width: 90%; max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}

.logo {
    font-size: 1.5rem; color: var(--text-light); text-decoration: none;
    font-weight: 700; letter-spacing: 4px;
}

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

.nav-links a {
    text-decoration: none; color: var(--text-light); font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 400;
    transition: var(--transition-smooth); position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.btn-nav { border: 1px solid var(--gold) !important; padding: 8px 20px !important; color: var(--gold) !important;}
.btn-nav:hover { background: var(--gold); color: var(--bg-primary) !important;}

.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 2px; background-color: var(--text-light); margin: 5px; transition: var(--transition-smooth); }

/* ==========================================================================
   HERO SECTIONS CONTAINER CORE
   ========================================================================== */
.hero-section {
    position: relative; height: 100vh; width: 100%;
    display: flex; justify-content: center; align-items: center;
    overflow: hidden; text-align: center;
}

.hero-video {
    position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
    width: auto; height: auto; transform: translate(-50%, -50%); z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(rgba(10,10,10,0.4), #0A0A0A); z-index: 2;
}

.hero-content {
    position: relative; z-index: 3; max-width: 850px; padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem; color: var(--text-light); margin: 15px 0 25px 0;
    line-height: 1.2; font-weight: 400;
}

.hero-content p { font-size: 1.1rem; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; }

/* ==========================================================================
   INTERIOR APP MODULE FEATURED DISHES GLASSMORPH CARDS
   ========================================================================== */
.featured-section { background-color: var(--bg-primary); }

.menu-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    overflow: hidden; transition: var(--transition-smooth);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.menu-img-wrapper { width: 100%; height: 280px; overflow: hidden; }
.menu-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.menu-card:hover .menu-img-wrapper img { transform: scale(1.08); }

.menu-info { padding: 30px; position: relative; }
.menu-info h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text-light); }
.menu-info p { font-size: 0.9rem; margin-bottom: 20px; }
.menu-info .price {
    font-family: var(--font-heading); color: var(--gold);
    font-size: 1.3rem; font-weight: 700; display: block;
}

/* ==========================================================================
   PARALLAX ENGINE COMPONENT SYSTEM
   ========================================================================== */
.why-choose-us {
    position: relative; height: 450px; display: flex; align-items: center;
    justify-content: center; overflow: hidden; text-align: center;
}

.parallax-bg {
    position: absolute; top:0; left:0; width:100%; height:130%;
    background-size: cover; background-position: center;
    z-index: 1; will-change: transform; transform: translateY(0);
}

.parallax-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(10,10,10,0.85); z-index: 2;
}

.why-content { position: relative; z-index: 3; max-width: 800px; padding: 0 20px; }
.why-content h2 { font-size: 2.2rem; margin: 15px 0; }

/* ==========================================================================
   LUXURY AMBIENCE SHOWCASE GRID MASONRY STYLE
   ========================================================================== */
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px; gap: 15px; margin-top: 20px;
}

.gallery-item { position: relative; overflow: hidden; }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--transition-smooth); filter: grayscale(30%);
}

.gallery-item:hover img { transform: scale(1.05); filter: grayscale(0%); }

/* Grid Stretching factors */
.w-2 { grid-column: span 2; }
.h-2 { grid-row: span 2; }

/* ==========================================================================
   DYNAMIC CONTINUOUS ROTATIONAL MARQUEE SLIDERS
   ========================================================================== */
.reviews-marquee-section { padding: 60px 0; background: var(--bg-secondary); overflow: hidden; }
.marquee-wrapper { width: 100%; overflow: hidden; padding: 40px 0; display: flex; }

.marquee-track {
    display: flex; gap: 30px; width: max-content;
    animation: continuousMarquee 45s linear infinite;
}

@keyframes continuousMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track:hover { animation-play-state: paused; }

.review-glass-card {
    width: 350px; background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px; backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.review-stars { color: var(--gold); margin-bottom: 15px; font-size: 0.85rem; }
.review-comment { font-size: 0.9rem; color: var(--text-light); italic: true; margin-bottom: 20px; line-height:1.6;}
.review-author {
    font-family: var(--font-heading); font-size: 0.85rem;
    color: var(--gold); letter-spacing: 1px; text-transform: uppercase;
}

/* ==========================================================================
   INTERIOR INNER PAGES SUB MODULE SPECIFIC STYLING
   ========================================================================== */
.inner-hero {
    padding: 120px 0 80px 0; background-size: cover; background-position: center;
}
.inner-hero h1 { font-size: 2.8rem; margin-top: 10px; }

.img-premium { width: 100%; height: auto; border: 1px solid var(--glass-border); padding: 10px; background: var(--bg-secondary); }
.philosophy-box { border-left: 3px solid var(--gold); padding-left: 20px; margin-top: 30px; }
.philosophy-box h4 { color: var(--gold); margin-bottom: 10px; }
blockquote { font-family: var(--font-heading); font-size: 1.2rem; color: var(--gold); line-height: 1.6; margin: 20px 0; }
.dark-card-section { background-color: var(--bg-secondary); padding: 80px 5%; margin: 40px auto; }

/* Contact Specific UI Elements */
.contact-section-wrapper { padding-top: 40px; }
.info-glass-card {
    display: flex; align-items: center; gap: 20px; background: var(--bg-secondary);
    border: 1px solid var(--glass-border); padding: 25px; margin-bottom: 20px;
}
.info-glass-card i { font-size: 1.8rem; color: var(--gold); }
.info-glass-card h4 { font-size: 0.95rem; margin-bottom: 5px; color: var(--text-light); }

.luxury-form { background: var(--bg-secondary); padding: 40px; border: 1px solid var(--glass-border); }
.form-group { margin-bottom: 25px; }
.form-group label {
    display: block; font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 10px; color: var(--gold);
}
.form-group input, .form-group textarea {
    width: 100%; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1);
    padding: 14px; color: var(--text-light); font-family: var(--font-body); transition: var(--transition-smooth);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 8px rgba(212,175,55,0.2);
}

.map-holder-frame {
    width: 100%; height: 400px; background: #161616; margin-top: 60px;
    border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center;
    position: relative; text-align: center; padding: 20px;
}
.map-overlay-text i { font-size: 3rem; color: var(--gold); margin-bottom: 15px; }

/* Chef Blog Specific UI Elements */
.search-filter-box {
    max-width: 500px; margin: 0 auto 50px auto; position: relative;
}
.search-filter-box input {
    width: 100%; padding: 16px 20px 16px 50px; background: var(--bg-secondary);
    border: 1px solid var(--glass-border); color: var(--text-light); font-family: var(--font-body);
}
.search-filter-box input:focus { outline: none; border-color: var(--gold); }
.search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--gold); }

.blog-card {
    background: var(--bg-secondary); border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.blog-card-img { height: 220px; background-size: cover; background-position: center; }
.blog-card-content { padding: 25px; }
.blog-date { font-size: 0.75rem; color: var(--gold); display: block; margin-bottom: 10px; }
.blog-card-content h3 { font-size: 1.15rem; line-height: 1.4; margin-bottom: 15px; color: var(--text-light); }
.read-more-link { text-decoration: none; color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition-smooth); }
.read-more-link:hover { padding-left: 5px; }

/* ==========================================================================
   PROMOTIONAL MODAL POPUP DESIGNS
   ========================================================================== */
.popup-overlay {
    position: fixed; top:0; left:0; width:100vw; height:100vh;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(15px);
    z-index: 100000; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
}

.popup-overlay.active { opacity: 1; pointer-events: auto; }

.popup-modal {
    background: var(--bg-secondary); border: 1px solid var(--gold);
    width: 90%; max-width: 750px; display: grid; grid-template-columns: 1fr 1fr;
    position: relative; transform: scale(0.85); transition: transform 0.5s ease;
}

.popup-overlay.active .popup-modal { transform: scale(1); }

.popup-image { background-size: cover; background-position: center; min-height: 350px; }
.popup-text { padding: 40px 30px; display: flex; flex-direction: column; justify-content: center; }
.popup-tag { font-size: 0.7rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.popup-text h2 { font-size: 1.8rem; margin-bottom: 15px; color: var(--text-light); }
.popup-text p { font-size: 0.85rem; margin-bottom: 25px; }

.close-popup-btn {
    position: absolute; top: 15px; right: 15px; background: none; border: none;
    color: var(--text-light); font-size: 1.2rem; cursor: pointer; transition: var(--transition-smooth);
    z-index: 5;
}
.close-popup-btn:hover { color: var(--gold); }

/* ==========================================================================
   FLOATING INTERACTIVE ACTION INTERFACES ENGINE
   ========================================================================== */
.floating-actions { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; flex-direction: column; gap: 15px; }

.fab {
    width: 55px; height: 55px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; color: white;
    text-decoration: none; font-size: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: var(--transition-smooth); cursor: pointer; border: none;
}

.fab:hover { transform: scale(1.1) translateY(-3px); }
.fab-whatsapp { background-color: #25D366; }
.fab-call { background-color: #D4AF37; color: var(--bg-primary); }
.fab-top { background-color: #1A1A1A; color: var(--gold); border: 1px solid var(--glass-border); opacity: 0; pointer-events: none; }
.fab-top.visible { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   STATS COUNTERS & ANIMATION REVEALS ENGINE
   ========================================================================== */
.stats-section { background: var(--bg-secondary); border-bottom: 1px solid var(--glass-border); text-align: center; }
.stat-card h3 { font-size: 2.5rem; color: var(--gold); margin-bottom: 5px; }
.stat-card p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }

.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-up.appeared { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   FOOTER BASE DESIGNS
   ========================================================================== */
.main-footer { background: #070707; border-top: 1px solid var(--glass-border); font-size: 0.9rem; }
.main-footer h3 { color: var(--gold); margin-bottom: 15px; }
.main-footer h4 { color: var(--text-light); margin-bottom: 20px; font-size: 1rem; text-transform: uppercase; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { text-decoration: none; color: var(--text-muted); transition: var(--transition-smooth); }
.footer-links ul li a:hover { color: var(--gold); }
.footer-bottom { padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 40px; font-size: 0.8rem; }

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS SYSTEM
   ========================================================================== */
@media screen and (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .w-2, .h-2 { grid-column: auto; grid-row: auto; }
    .popup-modal { grid-template-columns: 1fr; }
    .popup-image { display: none; }
}

@media screen and (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-links {
        position: fixed; right: 0; top: 0; height: 100vh; background: var(--bg-secondary);
        width: 70%; flex-direction: column; justify-content: center; gap: 40px;
        transform: translateX(100%); transition: transform 0.5s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.nav-active { transform: translateX(0); }
    .burger { display: block; }
    .hero-content h1 { font-size: 2.2rem; }
    .reversing-grid { order: -1; }
}
