:root {
    --gold: #D4AF37;
    --bright-gold: #FFD700;
    --deep-red: #B22222;
    --pure-black: #000000;
}

html{ scroll-behavior: smooth; }

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

body {
    background-color: var(--pure-black);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Top Utility Bar Fix */
.top-utility {
    background: #000;
    border-bottom: 1px solid #222;
    padding: 12px 0;
}

.utility-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: flex-end; /* Keeps links to the right */
}

.utility-links {
    display: flex;
    gap: 30px; /* Space between Home, Events, Reservation */
}

.utility-links a {
    color: #FFF;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.utility-links a:hover {
    color: var(--gold);
}

/* Main Navigation */
.main-nav {
    background: #000;
    padding: 20px 0;
    border-bottom: 1px solid var(--gold);
}

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

.nav-links-left a {
    color: #FFF;
    text-decoration: none;
    margin-right: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.logo-box img {
    height: 70px;
    filter: drop-shadow(0px 0px 5px rgba(212, 175, 55, 0.3));
}

.book-btn {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.book-btn:hover {
    background: var(--gold);
    color: #000;
}

/* Hero Section Fixes */
.hero-split {
    display: flex;
    min-height: 80vh;
    align-items: stretch;
}

.hero-text-side {
    flex: 1;
    background: var(--pure-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
}

.hero-text-side h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #FFF;
}

.gold-text {
    color: var(--bright-gold);
    text-shadow: 2px 2px 10px rgba(212, 175, 55, 0.2);
}

.hero-text-side p {
    font-size: 1.1rem;
    color: #CCC;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-gold {
    display: inline-block;
    width: fit-content;
    background: var(--gold);
    color: #000;
    padding: 18px 45px;
    scroll-behavior: smooth;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
}
.cta-gold1 {
    display: inline-block;
    width: fit-content;
    background: var(--gold);
    color: #000;
    padding: 18px 45px;
    scroll-behavior: smooth;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
}
.cta-gold1:hover {
    background: transparent;
    color: var(--gold);
}

.cta-gold:hover {
    background: transparent;
    color: var(--gold);
}

.hero-img-side {
    flex: 1;
    border-left: 5px solid var(--deep-red);
}

.hero-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menu Section Styling */
.menu-section {
    padding: 100px 10%;
    background-color: #050505;
    scroll-behavior: smooth;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.red-line {
    width: 80px;
    height: 4px;
    background: var(--deep-red);
    margin: 15px auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.menu-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.circle-frame {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.5s;
}

.menu-item:hover img {
    scale: 1.1;
}

.menu-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.menu-item p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    padding: 0 10px;
    scroll-behavior: smooth;
}

.price {
    color: var(--bright-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Experience Section */
.experience-section {
    padding: 100px 10%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1400');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.exp-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.exp-content p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.exp-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.stat p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer Styling */
.main-footer {
    padding: 80px 10% 20px;
    background: #000;
    border-top: 1px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-contact p {
    color: #888;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #444;
    font-size: 0.8rem;
}
:root {
    --gold: #D4AF37;
    --bright-gold: #F9E076; /* Brighter, metallic gold */
    --deep-red: #8B0000;
    --pure-black: #050505;
}

/* Global Typography */
body {
    background-color: var(--pure-black);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif; /* Clean, modern luxury body text */
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
}

/* Headings - Using Cinzel for a "Vogue/Royal" feel */
h1, h2, h3, .logo-box, .nav-links-left a, .book-btn {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 3px; /* Wider spacing looks more expensive */
}

/* Hero Headline Fix */
.hero-text-side h1 {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: #FFFFFF;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.8);
}

.gold-text {
    color: var(--bright-gold);
    background: linear-gradient(to bottom, #F9E076 0%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the text look like real gold foil */
    font-weight: 700;
}

/* Navigation Links */
.nav-links-left a, .utility-links a {
    font-weight: 400;
    font-size: 0.75rem; /* Smaller, spaced out nav links look more "boutique" */
    transition: 0.4s ease;
}

.nav-links-left a:hover {
    color: var(--bright-gold);
    letter-spacing: 5px; /* Subtle expansion effect */
}

/* Buttons */
.cta-gold, .book-btn {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    border: 1px solid var(--gold);
}

/* Menu Item Typography */
.menu-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 15px;
    color: var(--bright-gold);
}

.menu-item p {
    font-weight: 200; /* Ultra-light weight for dish descriptions */
    font-size: 0.8rem;
    color: #aaaaaa;
    text-transform: none;
    letter-spacing: 1px;
}

/* About Page Specific Styles */

/* Hero */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1400');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* Heritage Split */
.heritage-split {
    display: flex;
    align-items: center;
    padding: 100px 10%;
    gap: 80px;
    background: #000;
}

.heritage-img {
    flex: 1;
    position: relative;
}

.heritage-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: 0;
}

.heritage-img img {
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 2px;
}

.heritage-text {
    flex: 1;
}

.heritage-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.heritage-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Gallery Grid */
.gallery-section {
    padding: 80px 10%;
    background: #050505;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 50px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: 0.5s;
    border: 1px solid #222;
}

.gallery-item img:hover {
    filter: grayscale(0%);
    border-color: var(--gold);
    transform: scale(1.02);
}

.gallery-item.large {
    grid-column: span 2;
}

/* Page Header (About & Menu) */
.page-header {
    padding: 150px 10% 60px;
    text-align: center;
    background: linear-gradient(to bottom, #000, #050505);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #888;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Menu Page Layout */
.menu-page-container {
    padding: 0 15% 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category-section {
    margin-bottom: 80px;
}

.category-title {
    color: var(--gold);
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-size: 1.8rem;
    text-align: center;
}

/* The Dotted Menu Item Look */
.menu-list-item {
    margin-bottom: 30px;
}

.item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 5px;
}

.item-header h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.dots {
    flex-grow: 1;
    border-bottom: 1px dotted #444;
    margin: 0 15px;
}

.price {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-weight: 600;
}

.menu-list-item p {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    max-width: 80%;
}

/* =========================================
   4. BOOKING PAGE STYLES
   ========================================= */
.booking-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1559339352-11d035aa65de?q=80&w=1200');
    background-size: cover;
    background-position: center;
}

.booking-wrapper {
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--gold);
    backdrop-filter: blur(10px);
}

.booking-info {
    flex: 1;
    padding: 60px;
    border-right: 1px solid #222;
}

.booking-info h1 { font-size: 3rem; margin-bottom: 20px; }
.booking-info p { color: #888; margin-bottom: 10px; font-size: 0.9rem; }

.contact-details { margin-top: 40px; border-top: 1px solid var(--gold); padding-top: 20px; }
.contact-details p { color: #fff; margin-bottom: 5px; font-size: 0.8rem; }

.booking-form-box {
    flex: 1.2;
    padding: 60px;
}

/* Form Elements */
.input-group { margin-bottom: 25px; }
.input-row { display: flex; gap: 20px; }
.input-row .input-group { flex: 1; }

label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

input, select, textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #1a1a1a;
}

/* =========================================
   MOBILE & TABLET RESOLUTION FIXES
   ========================================= */

/* Tablets & Small Laptops (iPad, etc.) */
@media (max-width: 1024px) {
    .hero-split, .heritage-split, .booking-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-side, .heritage-text, .booking-info, .booking-form-box {
        padding: 50px 5%;
        width: 100%;
        border-right: none;
    }

    .hero-img-side, .heritage-img {
        height: 450px;
        order: -1; /* Puts image above text for better mobile flow */
    }

    .hero-text-side h1 {
        font-size: 3.5rem;
    }
    .cta-gold{
        display: none;
    }
    .cta-gold1:hover {
        background: transparent;
        color: var(--gold);
    }
}

/* Phones (iPhone, Android, etc.) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links-left {
        display: none; /* Hides desktop links; standard for mobile luxury sites */
    }
    
    .main-logo {
        height: 50px;
    }

    /* Hero & Text Sections */
    .hero-text-side h1 {
        font-size: 2.5rem;
    }

    .hero-text-side p, .heritage-text p {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    /* Menu & Gallery Grids */
    .menu-grid, .gallery-grid {
        grid-template-columns: 1fr !important; /* Forces single column */
        gap: 30px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .circle-frame {
        width: 180px;
        height: 180px;
    }

    /* Menu Page (Dotted List) */
    .item-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dots {
        display: none; /* Removes dots to prevent clutter on small screens */
    }

    /* Experience Stats */
    .exp-stats {
        flex-direction: column;
        gap: 30px;
    }

    /* Booking Form */
    .input-row {
        flex-direction: column;
        gap: 0;
    }
    
    .booking-container {
        padding: 40px 0;
    }
    .cta-gold{
        display: none;
    }
    .cta-gold1:hover {
        background: transparent;
        color: var(--gold);
    }
    .page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    }
    .menu-page-container {
    padding: 0 20% 100px;
    max-width: 1200px;
    margin: 0 auto;
    }
}


/* Small Phones */
@media (max-width: 480px) {
    .hero-text-side h1 {
        font-size: 2rem;
    }
    
    .btn-luxury {
        padding: 12px 25px;
        font-size: 0.7rem;
    }
    .cta-gold{
        display: none;
    }
    .cta-gold1:hover {
        background: transparent;
        color: var(--gold);
    }
}
/* --- HIDE SIDEBAR ELEMENTS ON DESKTOP --- */
.hidden-checkbox, .menu-icon-wrapper, .mobile-sidebar {
    display: none;
}

/* --- MOBILE & TABLET RESOLUTION (1024px & down) --- */
@media (max-width: 1024px) {
    /* Hide Desktop Buttons and Nav */
    .nav-links-left, .nav-links-right, .cta-gold {
        display: none !important;
    }

    /* Show Hamburger Toggle */
    .menu-icon-wrapper {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger-line {
        width: 30px;
        height: 2px;
        background: var(--gold);
    }

    /* Sidebar Layover Styling */
    .mobile-sidebar {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98); /* Luxury deep black */
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        transform: translateX(100%); /* Slides from right */
    }

    /* The Sidebar Trigger Logic */
    #menu-toggle:checked ~ .mobile-sidebar {
        transform: translateX(0);
    }

    .sidebar-links {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .sidebar-links a {
        text-decoration: none;
        color: white;
        font-family: 'Cinzel', serif;
        font-size: 1.8rem;
        letter-spacing: 5px;
    }

    .close-icon {
        position: absolute;
        top: 30px;
        right: 40px;
        color: var(--gold);
        font-size: 3rem;
        cursor: pointer;
    }

    .btn-sidebar-luxury {
        border: 2px solid var(--gold) !important;
        padding: 15px 40px !important;
        color: var(--gold) !important;
        margin-top: 20px;
    }

    /* Section Resolution Fixes */
    .hero-split, .heritage-split, .booking-wrapper {
        flex-direction: column !important;
        text-align: center;
    }

    .hero-img-side, .heritage-img {
        height: 400px;
        width: 100%;
        order: -1; /* Image stays on top */
        border-left: none;
        border-bottom: 5px solid var(--deep-red);
    }

    .hero-text-side h1 { font-size: 2.5rem !important; }
    .hero-text-side { padding: 40px 5%; }
}