/*=============================================
=            0. CONFIGURATION & GLOBALS      =
=============================================*/

:root {
    /* Colors */
    --color-primary: #1A1A1A;       /* Darkest Black/Primary Text */
    --color-accent: #888888;       /* Gray for subtle text */
    --color-cta: #CC8833;           /* Gold/Brown for CTAs */
    --color-background: #FFFFFF;    /* White Background */
    --color-footer-bg: #004d40;     /* Footer Dark Green */
    --color-light-bg: #F8F8F8;      /* Very subtle light gray for menu background */

    /* Typography: FINAL PROFESSIONAL FONTS */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xl: 140px;
    --space-lg: 80px;
    --space-md: 40px;
    --space-sm: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body {
    font-family: var(--font-body);
    color: var(--color-primary);
    background-color: var(--color-background);
    line-height: 1.7; 
    font-weight: 300; 
    text-rendering: optimizeLegibility;
}

.section {
    padding: var(--space-xl) 10vw; 
    margin-bottom: var(--space-xl); 
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-cta); 
}

/* --- Typography Defaults --- */
h2, h3, h4 {
    font-family: var(--font-body); 
    line-height: 1.1;
    font-weight: 500; 
}

.section-title-serif {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 600; 
    color: var(--color-primary);
    text-transform: uppercase;
}

/* POLICY CONTENT STYLES */

.policy-section-content {
    padding: 60px 20px;
    background-color: var(--color-background-light); 
}

.policy-container {
    max-width: 950px; 
    margin: 0 auto; /* Center content */
    padding: 0 40px; 
}

/* Main content title ("Privacy Policy") */
.policy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-policy-heading);
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd; 
    text-align: left;
}

/* Sub-headings ("Information Collection", "Data Usage") */
.policy-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--color-primary-sage); /* Distinguishing underline */
    display: inline-block;
    padding-bottom: 5px;
}

/* Policy body text */
.policy-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

/* Policy bullet points */
.policy-list {
    list-style-type: disc; 
    padding-left: 25px;
    margin-top: 15px;
}

.policy-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}


/*=============================================
=            0.5. ANIMATIONS                  =
=============================================*/

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    z-index: 2; 
}

/* Apply specific animation names to classes */
.fade-in-down { animation-name: fadeInDown; }
.fade-in-up { animation-name: fadeInUp; }
.fade-in-left { animation-name: fadeInLeft; }

/* Apply delays for staggered entry effect */
.split-nav.animated { animation-delay: 0.2s; }
.hero-content-right.animated { animation-delay: 0.5s; }
.hero-divider-element.animated { animation-delay: 0.7s; }


/*=============================================
=            2. LAYOUTS & SECTIONS            =
=============================================*/

/* --- 2.1. Header / Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Hero Image Path: CHECK YOUR LOCAL PATH HERE */
    background-image: url('Image/Taiken Amb 2.jpg'); 
    background-size: cover;
    background-position: center;
    padding-top: 0; 
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0; 
    background: rgba(0, 0, 0, 0.1); 
    z-index: 1;
}

/* --- Split Navigation Structure (Desktop) --- */
.split-nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: grid; 
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
    padding: 30px 5vw; 
    z-index: 10;
}
.nav-group {
    display: flex;
    align-items: center;
}
.nav-left {
    justify-content: flex-start; 
}
.nav-right {
    justify-content: flex-end; 
}
.logo-center {
    text-align: center;
}
.logo-center img {
    max-width: 180px; 
    height: auto;
}
.split-nav a {
    color: white;
    font-size: 0.85rem; 
    margin: 0 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap; 
}
.split-nav a:hover {
    color: var(--color-cta);
}
.nav-button-cta {
    background-color: var(--color-cta);
    padding: 8px 15px;
    border-radius: 2px;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    transition: background-color 0.3s;
    margin-left: 30px !important; 
}
.nav-button-cta:hover {
    background-color: #d6984e;
    color: white;
}
/* *** HERO MAIN TEXT *** */
.hero-content-right {
    position: absolute;
    top: 55%; 
    right: 5vw;            
    z-index: 2;
    color: white;
    text-align: right; 
}
.hero-main-title {
    font-family: var(--font-heading);
    font-size: 3.5rem; 
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: white; 
}
.hero-sub-title {
    font-family: var(--font-body);
    font-size: 1.5rem; 
    font-weight: 400;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: white; 
}
/* *** HERO DIVIDER ELEMENT *** */
.hero-divider-element {
    position: absolute;
    bottom: 40px;
    left: 5vw;
    z-index: 2;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 20px; 
    border-left: 2px solid var(--color-cta); 
}


/* --- 2.2. OUR STORY (Image Positioning FIXED) --- */
.our-story-dark {
    background-color: var(--color-background); 
    color: var(--color-primary); 
    /* Reduced bottom padding to 20px to close the gap */
    padding-top: var(--space-xl); 
    padding-bottom: var(--space-sm); 
    padding-left: 10vw;
    padding-right: 10vw;
    margin-bottom: 0; 
}

.our-story-dark a {
    color: var(--color-primary);
}

.our-story-dark .section-title-serif {
    margin-bottom: var(--space-lg);
}

.story-top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5%;
    margin-bottom: var(--space-md); 
}

.story-text-block {
    flex: 0 0 45%;
}

.story-text-block p {
    margin-bottom: var(--space-sm);
}
.story-text-block p:last-of-type {
    margin-bottom: 0;
}

.story-image-block {
    flex: 0 0 50%;
    position: relative;
    margin-top: -50px; 
    /* NEW: INCREASED CONTAINER HEIGHT */
    height: 550px; 
}

.story-img-small, .story-img-large {
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
    border: 3px solid var(--color-background); 
    display: block; 
    position: absolute; 
    background-color: #E0E0E0; /* Fallback */
}

/* --- STORY IMAGES - Overlapping Effect --- */
.story-img-large {
    width: 450px; 
    height: 650px; /* NEW: INCREASED HEIGHT */
    /* YOUR SPECIFIED PATH HERE */
    background-image: url('Image/Taiken Dish 4.JPG'); 
    top: -20%; 
    right: 0; 
    z-index: 1;
}

.story-img-small {
    width: 330px; 
    height: 450px; /* NEW: INCREASED HEIGHT */
    /* YOUR SPECIFIED PATH HERE */
    background-image: url('Image/Taiken Dish 5.JPG'); 
    top: 45%; 
    left: 0; 
    z-index: 2; 
    transform: translateY(-50%); 
}
/* ----------------------------------------------- */

/*=============================================
=            9. POLICY PAGES IMAGE OVERRIDES (Final Attempt)          =
=============================================*/

/* The most powerful selector chaining the generic policy class with the unique class */

.policy-page-hero.privacy-hero {
    /* Use a new image for Privacy */
    background-image: url('Image/iStock-1267616276.jpg') !important; 
}

.policy-page-hero.refunds-hero {
    /* Use a new image for Refunds */
    background-image: url('Image/Taiken Dish 1.JPG') !important; 
}

.policy-page-hero.pricing-hero {
    /* Use a new image for Pricing */
    background-image: url('Image/iStock-1073628892.jpg') !important; 
}

/* New rule with a unique name for the Privacy Policy header image */
.policy-page-hero.privacy-unique-hero {
    background-image: url('Image/Taiken Dish 5.JPG') !important; 
}


/*=============================================
=            2.3. SIGNATURE MENU SECTION (CUSTOM LAYOUT)      =
=============================================*/

.menu-highlights-light {
    background-color: var(--color-light-bg); 
    color: var(--color-primary);
    /* REVERTED: Set top padding back to a small amount (40px) */
    padding-top: var(--space-md); 
    padding-bottom: var(--space-md); 
    padding-left: 10vw;
    padding-right: 10vw;
    text-align: center;
    margin-bottom: 0; 
}

.menu-title {
    /* CRITICAL FIX: Add 20px of top padding to the title itself */
    padding-top: var(--space-sm); 
    margin-top: 0; /* Ensures no margin overrides the padding */
    margin-bottom: var(--space-lg); 
    text-align: center;
}


/* --- NEW GRID CONTAINER FOR THE 3 ELEMENTS --- */
.menu-card-layout-container {
    display: grid;
    /* 3 Columns: 1fr for card, 1.5fr for text/card block, 1fr for card */
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: var(--space-md);
    text-align: center;
    align-items: start; /* Align items to the top of the grid row */
    margin-bottom: var(--space-lg);
}

/* Central text/card block styling */
.center-content-block {
    text-align: center;
    padding-top: var(--space-md); 
}

.menu-paragraph {
    font-size: 1.1rem;
    color: var(--color-primary); 
    font-weight: 400;
    text-align: center;
    max-width: 100%; 
    margin-bottom: var(--space-md); 
}

/* Card Styling (applies to all three) */
.menu-card {
    background-color: transparent; 
    box-shadow: none; 
    padding: 0; 
    overflow: hidden; 
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none; 
    border-radius: 0; 
    border-image: none;
    
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: none; 
    box-shadow: none; 
}

.menu-card-center {
    margin: 0 auto; 
    max-width: 75%; 
}

/* CARD IMAGE MODIFICATIONS */
.card-image {
    width: 100%; 
    height: 450px; 
    background-size: cover;
    background-position: center;
    margin: 0; 
    border-radius: 0; 
}

/* NEW: Container for text below the image for consistent padding */
.card-text-content {
    padding: var(--space-sm);
    padding-bottom: var(--space-md);
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* END CARD IMAGE MODIFICATIONS */


/* Placeholder Images for Cards */
.card-img-1 { background-image: url('Image/Taiken Dish 1.JPG'); }
.card-img-2 { background-image: url('Image/Taiken Dish 2.JPG'); }
.card-img-3 { background-image: url('Image/Taiken Dish 3.JPG'); }


.card-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 600; 
    margin-bottom: 5px;
    color: var(--color-primary);
    padding: 0; 
}

.card-origin {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    padding: 0; 
}

.card-explore-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-cta);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s;
    margin-top: 10px;
}

.card-explore-link:hover {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}


/* View Full Menu CTA */
.menu-cta-container {
    text-align: center;
    margin-top: var(--space-md);
    /* FIX: Remove bottom margin to prevent gap above reservation section */
    margin-bottom: 0; 
}

.view-full-menu-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 30px;
    border: 2px solid var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.3s, color 0.3s;
}

.view-full-menu-link:hover {
    background-color: var(--color-primary);
    color: white; 
}


/* --- 2.4. Footer --- */
.site-footer {
    display: block;
    background-color: var(--color-footer-bg); 
    color: white;
    /* FIX: Reduced top padding to 30px */
    padding: 30px 0 0 0; 
    text-align: center;
    margin-bottom: 0 !important;
}

.footer-top {
    /* FIX: Ensure no top padding is added here */
    padding-top: 0;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-accent);
}
.footer-top h3 {
    font-size: 1.5rem; 
    margin-bottom: 15px; 
    color: white;
}
.follow-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
}
.footer-logo {
    max-width: 180px; /* Smaller size */
    height: auto;
    margin-bottom: 20px; 
}
.social-links {
    margin-top: 15px;
}
.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.copyright {
    padding: var(--space-md) 0;
    background-color: var(--color-footer-bg); 
}
.copyright p {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--color-accent);
    margin: 5px 0;
}
.copyright .sub-links a {
    color: var(--color-accent);
    font-weight: 500;
}

/*=============================================
=            2.5. RESERVATION CTA SECTION      =
=============================================*/

.reservation-cta-section {
    position: relative; 
    
    /* Set the height of the section */
    height: 850px; 
    
    /* CRITICAL: Set your background image and path here */
    background-image: url('Image/Taiken amb 5.jpg'); 
    background-size: cover;
    background-position: center;
    
    /* CRITICAL for Full Width: Removes any inherited horizontal padding/margin */
    padding: 0 !important; 
    width: 100%; 
    margin-bottom: 0 !important; 
    
    /* Flexbox centers the grid content */
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

/* 1. Black Overlay Styling */
.reservation-cta-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Black overlay with 60% opacity (adjust 0.6 as needed) */
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1; /* Puts the overlay between the image and the box */
}

/* NEW: Grid Container for left/right alignment */
.reservation-grid-content {
    position: relative;
    z-index: 2; /* Above the overlay */
    width: 80%;
    max-width: 1200px;
    
    display: grid;
    /* Two columns: Text block (1.5x wider) and Hours box (1x) */
    grid-template-columns: 1.5fr 1fr;
    gap: 5%;
    
    align-items: center;
}

/* NEW: Text Block Styling (Left Side) */
.reservation-text-block {
    color: white;
    text-align: left;
    max-width: 550px;
}
.reservation-heading {
    color: white;
    font-size: 2.8rem;
    margin-bottom: var(--space-sm);
}
.reservation-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}


/* 2. Styling for the Dark Content Box (Right Side) */
.hours-box {
    position: relative;
    z-index: 2; /* Ensures the box is above the overlay */
    background-color: #1A1A1A; /* Very dark background */
    color: white;
    
    /* Sizing and Spacing */
    padding: 30px; 
    width: 100%; /* Take up its grid column space */
    max-width: 380px; /* Controls the size of the box */
    margin: 0; 
    
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: var(--font-body);
}

.hours-box .box-title {
    font-size: 1.6rem; 
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hours-box .time-columns {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.hours-box .column p {
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.hours-box .column .time {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
}

/* Reservation Button Styling (Reusing existing btn-reservation class) */
.hours-box .btn-reservation {
    display: inline-block;
    /* Adjust button appearance for the small box */
    margin: 10px auto; 
    padding: 10px 25px; 
    font-size: 0.85rem; 
    
    background-color: var(--color-cta); 
    color: white;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.hours-box .btn-reservation:hover {
    opacity: 0.9;
}

/* Contact Info Text */
.hours-box .contact-info {
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-top: 15px;
}

.hours-box .contact-info .phone {
    font-weight: 600;
    color: var(--color-cta);
    text-decoration: none;
}

/*=============================================
=            2.6. EVENTS & EXPERIENCE SECTION      =
=============================================*/

.events-experience-white {
    background-color: var(--color-background); 
    color: var(--color-primary);
    padding: var(--space-xl) 10vw; 
    margin-bottom: 0;
    text-align: center;
}

.events-experience-white .section-title-serif {
    margin-bottom: var(--space-sm);
}

.section-sub-heading {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.events-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.event-card {
    background-color: var(--color-light-bg); 
    padding: var(--space-md) var(--space-sm); /* Keep existing padding for text content */
    border-top: 3px solid var(--color-cta); 
    text-align: center;
    transition: background-color 0.3s ease;
    /* Ensure flexbox for better image-text arrangement */
    display: flex;
    flex-direction: column; 
    align-items: center; /* Center content horizontally */
    padding-top: 0; /* Remove top padding as image will now be at the very top */
}

.event-card:hover {
    background-color: #f0f0f0; 
}

/* NEW: Image styling for event cards */
.event-card-image {
    width: calc(100% + var(--space-sm) * 2); /* Make image span full width including padding */
    max-width: none; /* Override any max-width from global styles */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures image covers the area without distortion */
    margin-left: calc( -1 * var(--space-sm) ); /* Negative margin to pull image to left edge */
    margin-right: calc( -1 * var(--space-sm) ); /* Negative margin to pull image to right edge */
    margin-bottom: var(--space-sm); /* Space below image */
    display: block; /* Remove any extra space below the image */
}


.event-card .card-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    padding-top: var(--space-sm); /* Add padding to title to separate from image */
}

.event-card .card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-primary);
    font-weight: 300;
}

.events-cta-container {
    margin-top: var(--space-lg);
}

/* Responsive adjustments for the event cards */
@media screen and (max-width: 1050px) {
    .events-card-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media screen and (max-width: 768px) {
    .events-card-grid {
        grid-template-columns: 1fr; 
    }
}

/*=============================================
=            7. DECORATIVE BACKGROUND ELEMENTS (New)  =
=============================================*/

/* --- 7.1. Global Element Configuration --- */
.our-story-dark, 
.menu-highlights-light, 
.reservation-cta-section, 
.events-experience-white {
    position: relative;
    overflow: hidden; 
    z-index: 1; 
}

/* --- 7.2. Element for the first "DISCOVER OUR STORY" --- */
.our-story-dark::before {
    content: '';
    position: absolute;
    bottom: -100px; 
    left: 2%; 
    width: 320px;
    height: 320px;
    background-image: url('Image/asian 1.jpg'); 
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2; 
    transform: rotate(-25deg); 
    z-index: 0; 
    pointer-events: none; 
}

/* --- 7.3. Element for the SIGNATURE MENU section (Bottom Right) --- */
.menu-highlights-light::before {
    content: '';
    position: absolute;
    bottom: 10px; 
    right: 5%; 
    width: 280px;
    height: 280px;
    background-image: url('Image/asian 2.jpg'); 
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2; 
    transform: rotate(15deg); 
    z-index: 0;
    pointer-events: none;
}

/* --- Media Query: Hide large elements on small screens --- */
@media screen and (max-width: 1200px) {
    .our-story-dark::before,
    .menu-highlights-light::before,
    .reservation-cta-section::before,
    .events-experience-white::before {
        display: none; 
    }
}

/* Ensure the button is displayed and has space */
.hero-cta-button {
    /* Ensures the button is visible and on its own line */
    display: inline-block; 
    
    /* Adds separation from the subtitle above it */
    margin-top: 30px; 
    
    /* DEFAULT STATE: Warm brown text and border, white background */
    color: #FFFFFF; /* Text Color: Set to the new warm brown color */
    background-color: #d6984e; /* Background Color: White/Light */
    border: 1px solid #d6984e; /* Border Color: Set to the new warm brown color */
    
    /* General styles retained */
    font-size: 16px; 
    padding: 10px 25px; 
    text-transform: uppercase;
    
    /* Alignment, etc. */
    margin-left: 0;
    margin-right: 0;
    width: auto; 
    text-align: center;
    transition: all 0.3s ease;
}

/* HOVER STATE: White background, primary color text */
.hero-cta-button:hover {
    background-color: #fff; /* Background Color: White on hover (as requested) */
    color: #d6984e; /* Text Color: Set to the warm brown color */
    border-color: #d6984e; /* Border Color: Stays warm brown or change to white if border should disappear */
    /* To make the white hover stand out, you might consider thickening the border
       or adding a slight box-shadow in your overall button style.
       
       If you want the border to also turn white (disappear against a white background), use:
       border-color: #fff; 
    */
}

/* * The .hero-content-right flex container should remain as previously set 
 * to ensure alignment:
 * .hero-content-right {
 * display: flex;
 * flex-direction: column;
 * align-items: center; 
 * }
 */

/* * NOTE: The .hero-content-right flex container should remain as previously set 
 * to ensure alignment:
 * .hero-content-right {
 * display: flex;
 * flex-direction: column;
 * align-items: flex-end; /* or align-items: center; */


/*=============================================
=            3. MEDIA QUERIES (Responsive)     =
=============================================*/

@media screen and (max-width: 1200px) {
    /* Story Layout Stack */
    .story-top-content {
        flex-direction: column;
        align-items: center;
    }
    .story-text-block {
        flex: auto;
        width: 100%;
        max-width: 600px;
        margin-bottom: var(--space-lg);
    }
    .story-image-block {
        flex: auto;
        width: 100%;
        align-items: center;
        margin-top: var(--space-md); 
        height: 500px; 
        position: static; 
        display: block;
    }
    .story-img-small, .story-img-large {
        position: static; 
        width: 80%;
        height: 250px; 
        margin-bottom: var(--space-md);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: none; 
        border: none; 
    }
    .story-img-small {
        order: 2; 
        width: 70%;
    }
    .story-img-large {
        order: 1; 
    }

    /* Reservation Section Stack */
    .reservation-grid-content {
        grid-template-columns: 1fr; /* Stack into a single column */
        width: 90%;
        padding: var(--space-lg) 0;
    }
    .reservation-text-block {
        text-align: center;
        margin-bottom: var(--space-md);
        /* Center the block itself */
        margin-left: auto;
        margin-right: auto;
    }
    .hours-box {
        max-width: 100%;
    }
}

/* --- MOBILE NAVIGATION FIX (Logo/Hamburger) --- */
@media screen and (max-width: 1050px) {
    
    /* 1. Mobile Header Bar (Fixes Logo Position) */
    .split-nav {
        /* Changes to a fixed header bar, fixing logo to the left */
        display: flex; 
        flex-direction: row; /* Forces horizontal layout: Logo | Toggle */
        justify-content: space-between; /* Pushes logo left, toggle right */
        align-items: center;
        padding: 20px 5vw;
        position: fixed; /* Keep it visible at the top */
        top: 0;
        width: 100%;
        /* Subtle dark background for visibility over the hero image */
        background-color: rgba(0, 0, 0, 0.85); 
        z-index: 100; /* Ensure it is on top of everything */
    }
    
    /* Hide the desktop nav groups completely */
    .nav-left, .nav-right {
        display: none;
    }
    
    /* 2. Logo Position Fix */
    .logo-center {
        text-align: left;
        order: 0; /* Keep it on the left */
    }
    .logo-center img {
        max-width: 140px; /* Smaller logo for mobile */
    }

    /* 3. Hamburger Icon Styling (Requires HTML addition) */
    .menu-toggle {
        display: block; /* Make the toggle visible */
        order: 1; /* Position it on the right */
        font-size: 2rem; 
        color: white; 
        cursor: pointer;
        z-index: 101; /* Ensure it's above the menu */
    }
    
    /* 4. Full-Screen Menu Links (The actual menu content) */
    .nav-group {
        display: none; /* Default state: hidden */
        position: fixed;
        top: 70px; /* Height of the header bar */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px); /* Fill the rest of the screen */
        background-color: rgba(26, 55, 58, 0.98); /* Dark background overlay */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 99;
        /* Links are already white from the split-nav a rule, but ensure contrast */
    }
    .split-nav.nav-open .nav-group {
        display: flex; /* Show the menu when JS adds this class */
    }
    
    .nav-group a {
        font-size: 1.2rem;
        padding: 10px 0;
        width: 80%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    .nav-group a:last-child {
        border-bottom: none;
    }

    /* Menu Card Stack on medium screens (FIXED) */
    .menu-card-layout-container {
        /* Change from grid to flex to use order property effectively for column ordering */
        display: flex; 
        flex-direction: column; /* Stack vertically */
        grid-template-columns: 1fr; /* Revert to single column stack */
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 1. Force the center-content-block (which holds the text) to be the first item in the stack */
    .center-content-block {
        order: -1; /* Moves it above the first menu card (.menu-card.card-img-1) */
        padding-top: 0;
        /* Set as flex container to control internal order */
        display: flex;
        flex-direction: column;
        align-items: center; /* Center the content inside */
    }
    
    /* 2. Inside the center-content-block, ensure the paragraph is above the card */
    .menu-intro.menu-paragraph {
        order: -1; /* Text moves to the top of the center-content-block */
        margin-bottom: var(--space-md);
        margin-top: var(--space-sm); /* Add small space below heading */
    }

    /* Ensure the center card uses the full width when stacked */
    .menu-card-center {
        max-width: 100%; 
        order: 1; /* Keep the card below the text */
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: var(--space-lg) 5vw;
    }
    
    /* Hero Adjustments */
    .hero-content-right {
        display: none; 
    }
    .hero-divider-element {
        font-size: 0.75rem;
        bottom: 20px;
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    /* Story Content Smaller Text */
    .section-title-serif {
        font-size: 2.2rem;
    }

    
    /* Image Stack on Mobile */
    .story-img-small, .story-img-large {
        width: 90%;
        height: 180px; 
    }
    .story-img-small {
        width: 60%;
    }
}

/*=============================================
=            1. GLOBAL STYLES AND VARIABLES       =
=============================================*/
:root {
    /* Define your custom properties here */
    --color-primary: #1A373A; /* Dark Green/Black */
    --color-cta: #d6984e; /* Terracotta/Gold Accent */
    --color-accent: #6c757d; /* Gray */
    --color-background: #FFFFFF;
    --color-light-bg: #F8F8F8;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 80px;
}


/*=============================================
=            3. REUSABLE GLOBAL ELEMENTS      =
=============================================*/
.section {
    position: relative;
    padding: var(--space-xl) 10vw;
}

/* -----------------------------------------
   4. FOOTER STYLING (Ensure it has height and color)
   -----------------------------------------
*/
.site-footer {
    /* Use primary color for the footer background */
    background-color: var(--color-primary); 
    color: white; 
    padding: var(--space-md) 10vw; /* Give it some vertical padding */
    width: 100%; /* Ensure it spans the full width */
}


/*=============================================
=            10. MEDIA QUERIES               =
=============================================*/
/* Include all your media queries here */


/*=============================================
=            3. ABOUT US PAGE SPECIFIC STYLES    =
=============================================*/

/* --- 3.1. Page Header/Hero (About Page) --- */

.about-hero-section {
    min-height: 100vh; /* Shorter hero for interior page */
    padding-top: 150px; 
    /* Corrected to relative path */
    background-image: url('Image/Taiken amb 6.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0; 
    background: rgba(0, 0, 0, 0.1); 
    z-index: 1;
}

.header-content-center {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center; 
    padding-top: var(--space-xl);
}

.page-main-title {
    font-family: var(--font-heading);
    font-size: 3.5rem; 
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: white; 
}

.page-sub-title {
    font-family: var(--font-body);
    font-size: 1.5rem; 
    font-weight: 400;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: white; 
    margin-bottom: var(--space-md);
}

.page-divider-element {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 20px;
    border-top: 2px solid var(--color-cta); 
    border-bottom: 2px solid var(--color-cta); 
    display: inline-block;
    color: white;
}

/* --- 3.2. Philosophy Section (Two-Column Layout) --- */

.philosophy-section-dark {
    background-color: var(--color-background); 
    padding-top: var(--space-xl);
    padding-bottom: var(--space-sm);
    margin-bottom: 0;
}

.philosophy-content-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8%;
    margin-top: var(--space-lg);
}

.philosophy-content-grid .text-block {
    flex: 0 0 45%;
    max-width: 500px;
}

.philosophy-content-grid .image-block {
    flex: 0 0 47%;
    position: relative;
    height: 480px; 
    margin-top: -50px; 
}

.story-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-cta);
    margin-bottom: var(--space-sm);
    text-transform: capitalize;
}

.signature-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-primary);
    border-left: 3px solid var(--color-cta);
    padding-left: 15px;
    margin: var(--space-md) 0;
    font-style: italic;
}

/* Image Positioning (Overlapping Effect) */
.philosophy-img-small, .philosophy-img-large {
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
    border: 3px solid var(--color-background); 
    display: block; 
    position: absolute; 
    background-color: #E0E0E0; /* Fallback */
}

.philosophy-img-large {
    width: 400px; 
    height: 550px; 
    /* Corrected to relative path */
    background-image: url('Image/Taiken Dish 3.JPG'); 
    top: -20%; 
    right: 0; 
    z-index: 1;
}

.philosophy-img-small {
    width: 300px; 
    height: 400px; 
    /* Corrected to relative path */
    background-image: url('Image/Taiken Dish 5.JPG'); 
    top: 60%; 
    left: 0; 
    z-index: 2; 
    transform: translateY(-50%); 
}

/* --- 3.3. Gallery Section (New 3-Column Grid) --- */

.gallery-section-light {
    background-color: var(--color-light-bg); 
    text-align: center;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    margin-bottom: 0 !important; 
    padding-left: 10vw;
    padding-right: 10vw;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.gallery-item {
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 100%; 
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05); 
    cursor: pointer;
}

/* --- 3.4. Decorative Background Elements for About Page --- */

.philosophy-section-dark::before {
    content: '';
    position: absolute;
    bottom: 50px; 
    right: 5%; 
    width: 300px;
    height: 300px;
    /* Corrected to relative path */
    background-image: url('Image/asian-pattern-3.jpg'); 
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1; 
    transform: rotate(10deg); 
    z-index: 0; 
    pointer-events: none; 
}

.gallery-section-light::before {
    content: '';
    position: absolute;
    top: -50px; 
    left: 5%; 
    width: 250px;
    height: 250px;
    /* Corrected to relative path */
    background-image: url('Image/asian-pattern-2.jpg'); 
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15; 
    transform: rotate(-30deg); 
    z-index: 0;
    pointer-events: none;
}


/*=============================================
=            4. MEDIA QUERIES (ABOUT PAGE)     =
=============================================*/

@media screen and (max-width: 1200px) {
    /* Philosophy layout stack (re-use the same rules as the Story section) */
    .philosophy-content-grid {
        flex-direction: column;
        align-items: center;
    }
    .philosophy-content-grid .text-block {
        flex: auto;
        width: 100%;
        max-width: 600px;
        margin-bottom: var(--space-lg);
    }
    .philosophy-content-grid .image-block {
        flex: auto;
        width: 100%;
        align-items: center;
        margin-top: var(--space-md); 
        height: 500px; 
        /* FIX 1: Change to position: relative; to allow child images to flow */
        position: relative; 
        display: block;
        /* Ensure inner elements align correctly */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .philosophy-img-small, .philosophy-img-large {
        /* FIX 2: Change to position: relative; so width/height are applied correctly */
        position: relative; 
        width: 80%;
        height: 250px; 
        margin-bottom: var(--space-md);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: none; 
        border: none; 
    }
    .philosophy-img-small {
        order: 2; 
        width:70%;
    }
    .philosophy-img-large {
        order: 1; 
    }

    /* Hide decorative elements on medium screens to prevent clutter */
    .philosophy-section-dark::before,
    .gallery-section-light::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    /* Gallery Grid Stack */
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
    }

    /* Smaller spacing on mobile */
    .gallery-section-light {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }
    .page-main-title {
        font-size: 2.5rem;
    }
    .page-sub-title {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 500px) {
    /* Gallery Grid to single column on small phones */
    .photo-gallery-grid {
        grid-template-columns: 1fr; 
    }
}


/*=============================================
=            5. CONTACT US PAGE SPECIFIC STYLES    =
=============================================*/

.contact-hero-section {
    min-height: 100vh; 
    padding-top: 150px; 
    background-image: url('Image/Taiken amb 1.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    position: relative;
    z-index: 1; 
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    inset: 0; 
    background: rgba(0, 0, 0, 0.1); 
    z-index: 1;
}

/* --- 5.2. Contact Grid Section (Layout) --- */

.contact-grid-section {
    background-color: var(--color-background); 
    padding: var(--space-xl) 0;
    margin-bottom: 0;
    text-align: center;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    text-align: left;
    max-width: 1100px; /* Controls the size of the form and details block */
    width: 90%; 
    margin-left: auto;
    margin-right: auto;
}


/* --- 5.3. Contact Details Block (Left Column) --- */

.contact-details-block {
    padding: var(--space-md);
    background-color: var(--color-light-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    align-self: flex-start; 
}

/* ADDED: Styling for the specific "Contact Information" heading */
.contact-details-block .section-title-serif {
    font-family: var(--font-heading);
    font-size: 2.0rem; /* Reduced size */
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
    text-align: left; 
}

.details-group {
    margin-bottom: var(--space-md);
}

.details-group h3 {
    font-family: var(--font-body);
    font-size: 1.10rem; /* Smaller size */
    font-weight: 600;
    color: var(--color-cta);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-group p, .details-group a {
    font-size: 1.0rem; 
    line-height: 1.7;
    color: var(--color-primary-sage); 
    display: block; 
}

/* Styling for the Hours Block */
.hours-list p {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    font-size: 0.95rem; 
    color: var(--color-primary-sage); 
}

.hours-list p strong {
    font-weight: 500;
    color: var(--color-cta);
}


/* --- 5.4. Enquiry Form Block (Right Column) --- */

.enquiry-form-block {
    padding: 0;
}

/* Styling for "Send Us an Enquiry" heading */
.enquiry-form-block h2 { 
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary-sage); 
    margin-bottom: var(--space-sm);
    text-align: center;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: var(--space-sm);
    padding: var(--space-md);
    border: 1px solid var(--color-accent);
}

.form-group-full {
    grid-column: span 2; 
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #E0E0E0;
    background-color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark); 
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-cta);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    display: inline-block;
    width: auto;
    padding: 12px 30px;
    background-color: var(--color-primary-sage); 
    /* CORRECTED: Setting the initial text color to white for better contrast */
    color: #d6984e; 
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: var(--space-sm);
}

.btn-submit:hover {
    background-color: var(--color-cta);
    /* CONFIRMED: Text color is white on hover */
    color: white; 
}


/* --- 5.5. Map Container Section (Full Width) --- */

.map-section {
    padding: 0; 
    margin-bottom: 0;
}

.map-container {
    width: 100%;
    height: 450px; 
    background-color: #f0f0f0; 
    border-top: 5px solid var(--color-cta);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/*=============================================
=            6. MEDIA QUERIES (CONTACT PAGE)    =
=============================================*/

@media screen and (max-width: 1050px) {
    /* Stack the contact grid columns */
    .contact-content-grid {
        grid-template-columns: 1fr; /* Single column stack */
        gap: var(--space-md);
    }
    .contact-details-block {
        /* Move the details block below the form on smaller screens */
        order: 2; 
    }
    .enquiry-form-block {
        /* Keep the form at the top */
        order: 1; 
    }
}

@media screen and (max-width: 768px) {
    .contact-grid-section {
        padding: var(--space-lg) 5vw;
    }
    /* Make the form single column for smaller devices */
    .contact-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .form-group-full {
        grid-column: span 1; 
    }
}
/* Ensure you have an image named contact-us-hero.jpg in your Image folder! */

/* =========================================================
   FINAL RESPONSIVE FIXES — TAIKEN WEBSITE
   ========================================================= */

/* --- Tablet (max-width: 1024px) --- */
@media screen and (max-width: 1024px) {
  .story-top-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .story-img-large,
  .story-img-small {
    width: 85% !important;
    height: auto !important;
    margin-bottom: 25px !important;
    position: static !important;
  }

  /* REPLACED BY 1050px BLOCK FIX ABOVE
  .menu-card-layout-container {
    grid-template-columns: 1fr 1fr !important;
    gap: 25px !important;
  }
  */

  .reservation-grid-content {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .events-card-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* --- Mobile (max-width: 767px) --- */
@media screen and (max-width: 767px) {
  .hero-content-right {
    display: none !important;
  }

  .story-top-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .story-img-large,
  .story-img-small {
    width: 90% !important;
    height: 200px !important;
    margin-bottom: 20px !important;
  }

  .menu-card-layout-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .menu-card .card-image {
    height: 250px !important;
  }

  .reservation-grid-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
  }

  .events-card-grid {
    grid-template-columns: 1fr !important;
  }

  .photo-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .contact-content-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   FIXES FOR DISCOVER, SIGNATURE MENU, AND HOURS SECTION
   ========================================================= */

/* --- DISCOVER OUR STORY (side-by-side images) --- */
@media screen and (max-width: 767px) {
  .story-image-block {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap;
    height: auto !important;
  }

  .story-img-large,
  .story-img-small {
    position: relative !important;
    width: 45% !important;
    height: 250px !important;
    margin: 0 !important;
  }
}

/* =====================================
   DESKTOP NAV - LEFT LINKS + CENTER LOGO + RIGHT BUTTONS
   ===================================== */
@media screen and (min-width: 1051px) {
  .split-nav {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr; /* Left links | Logo | Right links */
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5vw;
    background: transparent !important;
    z-index: 100;
  }

  /* Left navigation */
  .nav-left {
    display: flex !important;
    justify-self: start;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
  }

  /* Center logo */
  .logo-center {
    justify-self: center;
    text-align: center;
  }

  .logo-center img {
    max-width: 180px;
    height: auto;
    display: inline-block;
    margin: 0 auto;
  }

  /* Right navigation (Contact + Reserve Table) */
  .nav-right {
    display: flex !important;
    justify-self: end;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
  }

  .nav-right a {
    color: white;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
  }

  /* Highlight the Reserve Table button */
  .nav-right .nav-button-cta {
    background-color: var(--color-cta);
    padding: 8px 15px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: background-color 0.3s;
  }

  .nav-right .nav-button-cta:hover {
    background-color: #d6984e;
    color: white;
  }

  /* Hide hamburger icon on desktop */
  .menu-toggle {
    display: none !important;
  }
}



/* ===============================
   MOBILE HAMBURGER MENU STYLING
   =============================== */

@media screen and (max-width: 1050px) {
  /* Header bar adjustments for mobile */
  .split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 5vw;
    z-index: 1000;
  }

  /* Hide default desktop nav links */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* Hamburger icon (menu-toggle) */
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    z-index: 1100;
  }

  /* Fullscreen menu (when open) */
  .split-nav.nav-open .nav-left,
  .split-nav.nav-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    gap: 25px;
    animation: fadeInDown 0.4s ease;
  }

  /* Nav links inside mobile menu */
  .split-nav.nav-open .nav-left a,
  .split-nav.nav-open .nav-right a {
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .split-nav.nav-open .nav-left a:last-child,
  .split-nav.nav-open .nav-right a:last-child {
    border-bottom: none;
  }

  /* Close (X) icon when active */
  .menu-toggle i.fa-times {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  /* Logo smaller on mobile */
  .logo-center img {
    max-width: 140px;
    height: auto;
  }

  /* Prevent background scroll when menu is open */
  body.nav-open {
    overflow: hidden;
  }
}


/* === FIX: Ensure hero text shows on mobile === */
@media screen and (max-width: 768px) {
  .hero-content-right {
    display: block !important;   /* ensure it shows */
    position: absolute;
    top: 50%;
    left: 20px;                  /* align near left edge */
    transform: translateY(-50%); /* only vertical centering */
    text-align: left;            /* left align text */
    color: white;
    z-index: 5;
    padding: 0 20px;
  }

  .hero-main-title {
    font-size: 2rem;
    line-height: 1.2;
    display: block;
  }

  .hero-sub-title {
    font-size: 1rem;
    letter-spacing: 2px;
    display: block;
    margin-top: 5px;
  }

  .hero-cta-button {
    font-size: 0.9rem;
    padding: 8px 20px;
    margin-top: 15px;
  }

  /* Optional: Force each phrase to its own line */
  .hero-main-title span {
    display: block;
  }
}

/* =========================================================
   FINAL FIXES — DISCOVER OUR STORY & SIGNATURE MENU SECTIONS
   ========================================================= */

/* --- DISCOVER OUR STORY --- */
.our-story-dark {
  background-color: var(--color-background);
  color: var(--color-primary);
  padding-top: 80px;
  padding-bottom: 60px;
  padding-left: 10vw;
  padding-right: 10vw;
  margin-bottom: 0;
}

.our-story-dark .section-title-serif {
  font-family: var(--font-heading);
  font-size: 2.4rem;             /* smaller so it fits in one line */
  line-height: 1.2;
  font-weight: 600;
  text-align: center;            /* center the heading */
  margin-bottom: 40px;           /* balanced spacing below title */
  text-transform: uppercase;
}

.story-top-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;                     /* reduced gap */
  margin-bottom: 60px;
}

.story-text-block {
  flex: 0 0 40%;
}

.story-text-block p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.story-image-block {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: auto;
  margin-top: 0;
}

.story-img-large,
.story-img-small {
  position: relative;
  width: 48%;                    /* side-by-side layout */
  height: 420px;                 /* larger images */
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transform: none;
}

/* --- Responsive adjustments for Discover Our Story --- */
@media screen and (max-width: 768px) {
  .our-story-dark .section-title-serif {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .story-top-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .story-text-block {
    width: 90%;
  }

  .story-image-block {
    flex-direction: column;
    gap: 15px;
  }

  .story-img-large,
  .story-img-small {
    width: 90%;
    height: 250px;
  }
}

/* =========================================================
   SIGNATURE MENU SECTION FIXES
   ========================================================= */

.menu-highlights-light {
  background-color: var(--color-light-bg);
  color: var(--color-primary);
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 10vw;
  padding-right: 10vw;
  text-align: center;
  margin-bottom: 0;
}

.menu-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.menu-paragraph {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
  text-align: center;
}

.menu-card-layout-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;                     /* equal spacing between cards */
  align-items: stretch;
  text-align: center;
  margin-bottom: 60px;
}

.menu-card {
  background-color: transparent;
  border: none;
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card .card-image {
  width: 100%;
  height: 480px;                 /* slightly taller images */
  background-size: cover;
  background-position: center;
  border-radius: 0;
  margin-bottom: 15px;
}

.card-text-content {
  padding: 15px;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-origin {
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu-cta-container {
  text-align: center;
  margin-top: 50px;
}

.view-full-menu-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 30px;
  border: 2px solid var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background-color 0.3s, color 0.3s;
}

.view-full-menu-link:hover {
  background-color: var(--color-primary);
  color: white;
}

/* --- Responsive adjustments for Signature Menu --- */
@media screen and (max-width: 1050px) {
  .menu-card-layout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .menu-card .card-image {
    height: 320px;
  }

  .menu-title {
    font-size: 2rem;
  }

  .menu-paragraph {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .view-full-menu-link {
    font-size: 0.85rem;
    padding: 8px 25px;
  }
}

/* Reduce spacing above and below Signature Menu section */
.menu-highlights-light {
  padding-top: 40px !important;   /* reduce top space */
  padding-bottom: 40px !important; /* reduce bottom space */
}

.menu-title {
  margin-bottom: 25px !important;  /* tighter title spacing */
}

.menu-paragraph {
  margin-bottom: 40px !important;  /* reduce gap below paragraph */
}


/* =========================================================
   TEXT COLOR UPDATE — Headings & Descriptions Only
   ========================================================= */

/* Section headings (Discover, Signature Menu, Events, etc.) */
.section-title-serif,
.menu-title,
.events-experience-white .section-title-serif,
.our-story-dark .section-title-serif {
  color: #000000 !important;   /* Black headings */
}

/* Descriptive paragraphs under headings */
.story-text-block p,
.menu-paragraph,
.events-experience-white .section-sub-heading,
.event-card .card-description {
  color: #000000 !important;   /* Black description text */
}

/* Optional: keep subheading titles like “CHICKEN MISO RAMEN” dark */
.card-title {
  color: #000000 !important;
}

/* Leave hero section and overlay text untouched */
.hero-main-title,
.hero-sub-title,
.hero-cta-button {
  color: inherit !important;
}

/* =========================================================
   FIX — Make "RESERVE YOUR TABLE" heading white
   ========================================================= */
.reservation-heading {
  color: #ffffff !important;    /* White heading */
}

/* =========================================================
   ALIGNMENT FIX — "Discover Our Story" heading
   ========================================================= */

/* Desktop: left align */
.our-story-dark .section-title-serif {
  text-align: left !important;
}

/* Mobile: center align */
@media screen and (max-width: 768px) {
  .our-story-dark .section-title-serif {
    text-align: center !important;
  }
}


@media screen and (max-width: 1050px) {
  .split-nav.nav-open {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    width: 100%;
    height: 100vh;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 100px 0 50px;
  }

  .split-nav.nav-open .nav-left,
  .split-nav.nav-open .nav-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .split-nav.nav-open a {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .split-nav.nav-open a:last-child {
    border-bottom: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media screen and (max-width: 1050px) {
  .split-nav.nav-open {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.96);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 100px 0 50px;
  }

  .split-nav.nav-open .nav-left,
  .split-nav.nav-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .split-nav.nav-open a {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .split-nav.nav-open a:last-child {
    border-bottom: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}


.split-nav.nav-open {
  animation: none !important;
}


/* ===== FINAL MOBILE MENU FIX ===== */
@media screen and (max-width: 1050px) {
  /* Fullscreen overlay when menu is open */
  .split-nav.nav-open {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.96);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 100px 0 50px;
    animation: none !important; /* stop fade animation flicker */
  }

  .split-nav.nav-open .nav-left,
  .split-nav.nav-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .split-nav.nav-open a {
    display: block;
    width: 80%;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .split-nav.nav-open a:last-child {
    border-bottom: none;
  }

  body.nav-open {
    overflow: hidden; /* prevent page scroll when menu open */
  }

  /* keep hamburger icon always clickable and above links */
  .menu-toggle {
    position: relative;
    z-index: 9999;
  }
}


/* ✅ FINAL OVERLAY FIX — unify nav-left & nav-right */
@media screen and (max-width: 1050px) {
  /* Make both nav groups share the same full-screen overlay */
  .split-nav.nav-open .nav-left,
  .split-nav.nav-open .nav-right {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.96);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 3000 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Hide one of the background layers so both don’t overlap */
  .split-nav.nav-open .nav-right {
    background: none !important;
  }

  /* Style the links clearly */
  .split-nav.nav-open a {
    color: #fff !important;
    font-size: 1.2rem !important;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    width: 80%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .split-nav.nav-open a:last-child {
    border-bottom: none;
  }

  body.nav-open {
    overflow: hidden !important;
  }
}

/* ✅ FINAL CLICK FIX — ensure menu items are above everything */
@media screen and (max-width: 1050px) {
  .split-nav.nav-open {
    z-index: 4000 !important; /* bring full menu above logo and header */
  }

  .split-nav.nav-open .nav-left,
  .split-nav.nav-open .nav-right {
    z-index: 4100 !important; /* clickable area on top of all */
  }

  /* Prevent logo or header from blocking clicks */
  .split-nav.nav-open .logo-center,
  .split-nav.nav-open .menu-toggle {
    z-index: 3000 !important; /* still visible but behind links */
  }
}

/* when mobile menu is open, make hero content transparent to clicks */
body.nav-open .hero-section,
body.nav-open .hero-content-right,
body.nav-open .hero-content-left {
  pointer-events: none !important;
}

/* Make sure mobile menu links are on top and clickable */
@media screen and (max-width: 1050px) {
  body.nav-open .split-nav,
  body.nav-open .split-nav .nav-left,
  body.nav-open .split-nav .nav-right {
    z-index: 5000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
  }

  body.nav-open .hero-section,
  body.nav-open .hero-content-right,
  body.nav-open .hero-content-left {
    pointer-events: none !important;
    z-index: 1000 !important;
  }
}


@media screen and (max-width: 1050px) {
  .split-nav.nav-open .logo-center {
    pointer-events: none !important;
  }
}

/* ✅ Final balanced fix: both sides clickable */
@media screen and (max-width: 1050px) {
  /* stop the right group box from blocking the left side */
  .split-nav.nav-open .nav-group.nav-right {
    pointer-events: none !important;
  }

  /* but keep its links themselves clickable */
  .split-nav.nav-open .nav-group.nav-right a {
    pointer-events: auto !important;
  }

  /* keep the left group fully clickable */
  .split-nav.nav-open .nav-group.nav-left {
    pointer-events: auto !important;
  }
}

/* ===== FORCE MOBILE FIXES (CONTACT) ===== */
@media (max-width: 768px) {

  /* Keep your chosen hero height */
  header.hero-section.contact-hero-section {
    min-height: 110vh !important;
    background-position: center top !important;
    margin-bottom: 0 !important;   /* no extra gap under hero */
    padding-bottom: 0 !important;
  }

  /* Center overlay & kill internal gaps */
  header.hero-section.contact-hero-section .header-content-center {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0.2rem !important;        /* tiny, controlled gap between lines */
    padding: 0 6vw !important;
    z-index: 2 !important;
  }

  /* 👉 “GET IN TOUCH” right above the subtitle */
  header.hero-section.contact-hero-section .header-content-center h1.page-main-title {
    margin: 0 !important;
    padding: 0 !important;
  }
  header.hero-section.contact-hero-section .header-content-center p.page-sub-title {
    margin: 0 !important;
    padding: 0 !important;
  }
  /* optional: tiny breathing room before the small label */
  header.hero-section.contact-hero-section .header-content-center .page-divider-element {
    margin-top: 6px !important;
  }

  /* 👉 Remove space above “Send Us An Enquiry” no matter who adds it */
  header.hero-section.contact-hero-section + .section,
  header.hero-section.contact-hero-section ~ .section.contact-grid-section,
  .section.contact-grid-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Kill heading/top spacers inside the first section */
  .section.contact-grid-section .story-heading,
  .section.contact-grid-section .section-title-serif {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* In case a decorative line uses ::before on the section/heading */
  .section.contact-grid-section::before,
  .section.contact-grid-section .story-heading::before,
  .section.contact-grid-section .section-title-serif::before {
    content: none !important;
  }

  /* Keep your mobile type sizes */
  .page-main-title { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; letter-spacing: 3px !important; }
  .page-sub-title  { font-size: clamp(1rem, 4vw, 1.2rem) !important;   letter-spacing: 2px !important; }
  .page-divider-element { font-size: 0.8rem !important; }
}

/* ===== FINAL CONTACT PAGE ADJUSTMENTS ===== */
@media (max-width: 768px) {

  /* --- hero text spacing --- */
  header.hero-section.contact-hero-section .header-content-center {
    gap: 0.6rem !important;        /* increased gap between lines */
  }
  header.hero-section.contact-hero-section .page-main-title {
    margin-bottom: 0 !important;
  }
  header.hero-section.contact-hero-section .page-sub-title {
    margin-top: 0 !important;
  }

  /* --- remove leftover space before “Send Us An Enquiry” --- */
  header.hero-section.contact-hero-section + .section.contact-grid-section,
  .contact-grid-section:first-of-type,
  .section.contact-grid-section {
    margin-top: -1.5rem !important;   /* pulls the section upward */
    padding-top: 0 !important;
  }

  .section.contact-grid-section .story-heading,
  .section.contact-grid-section .section-title-serif {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}


/* ====== MOBILE-ONLY GALLERY CAROUSEL ====== */
@media (max-width: 768px) {
  .photo-gallery-grid {
    display: flex !important;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px;
  }

  .photo-gallery-grid::-webkit-scrollbar {
    display: none; /* hide scrollbar */
  }

  .photo-gallery-grid .gallery-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  /* ✅ make all images equal height */
  .photo-gallery-grid .gallery-item img {
    width: 100%;
    height: 300px;           /* fixed equal height */
    object-fit: cover;       /* crops neatly to fill frame */
    border-radius: 12px;
    display: block;
  }
}

/* ===== REMOVE GAP BETWEEN THE TWO STACKED IMAGES (ABOUT PAGE) ===== */

.philosophy-content-grid .image-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;     /* eliminates hidden inline gaps */
}

/* Ensure both divs are flush and render seamlessly */
.philosophy-content-grid .image-block .philosophy-img-large,
.philosophy-content-grid .image-block .philosophy-img-small {
  display: block;
  width: 100%;
  height: 260px;                 /* equal height; change if you want variation */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  margin: 0 !important;
  padding: 0 !important;
}

/* ⚙️ Safety layer to avoid anti-aliasing seam on some browsers */
.philosophy-content-grid .image-block .philosophy-img-large {
  border-bottom: 1px solid transparent; 
}
.philosophy-content-grid .image-block .philosophy-img-small {
  margin-top: -1px;              /* pulls up by one pixel to close any visual gap */
}

/* Adjust for mobile so it still looks balanced */
@media (max-width: 768px) {
  .philosophy-content-grid .image-block .philosophy-img-large,
  .philosophy-content-grid .image-block .philosophy-img-small {
    height: 200px;
  }
}


/* ===== ABOUT > PHILOSOPHY — KILL THE GAP BETWEEN THE TWO IMAGES ===== */
#philosophy .image-block {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  /* the magic */
  gap: 0 !important;
  row-gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;

  border-radius: 12px !important;  /* radius on parent only */
  overflow: hidden !important;     /* hide any sub-pixel seam */
  background: transparent !important;
}

/* children become flat tiles that touch perfectly */
#philosophy .philosophy-img-large,
#philosophy .philosophy-img-small {
  display: block !important;
  width: 100% !important;
  height: 260px !important;               /* set equal height (adjust if you want) */
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

  /* strip anything that can create a seam */
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;            /* no radius on children */
  line-height: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* final 1px overlap guard if the browser still shows a hairline */
#philosophy .philosophy-img-small {
  margin-top: -1px !important;
}

/* Footer legal links */
.footer-links {
    margin-top: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        font-size: 15px;
    }
}


/* Force hero text to be centered on policy pages */
.policy-page-hero,
.privacy-unique-hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    height: 60vh; /* adjust if needed */
}

/* Center the actual text block */
.policy-page-hero .header-content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center !important;
    z-index: 5;
}

/* Main page title under hero */
.policy-container .policy-title {
    font-size: 26px !important;        /* a bit bigger */
    font-weight: 600 !important;
    white-space: nowrap !important;     /* keep on one line */
    margin-bottom: 25px;
    text-align: left;                   /* or center if you prefer */
}

/* Make all section headings smaller */
.policy-container h2 {
    font-size: 18px !important;         /* smaller + cleaner */
    font-weight: 500 !important;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* ========== HERO: Center heading on all policy pages ========== */

.policy-page-hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    height: 60vh; /* tweak if you want a taller/shorter hero */
}

/* Center the hero text block */
.policy-page-hero .header-content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center !important;
    z-index: 5;
}

/* ========== MAIN TITLE + HEADINGS + BODY TEXT (all policy pages) ========== */

/* Main page title under hero (e.g., "Terms and Conditions", "Refunds & Cancellations") */
.policy-container .policy-title {
    font-size: 26px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;  /* keep it on one line */
    margin-bottom: 25px;
    text-align: left;                /* change to center if you prefer */
}

/* Section headings inside the policy content */
.policy-container h2 {
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Body text + list items */
.policy-container p,
.policy-container li {
    font-size: 15px;
    line-height: 1.7;
}

/* === PRIVACY POLICY HERO OVERRIDE (LAST WINS) === */
header.hero-section.policy-page-hero.privacy-unique-hero {
    background-image: url('Image/Image2.jpg'); /* change filename if needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.map-section {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0 !important;
}

.map-container iframe {
    width: 100% !important;
    height: 450px;
    display: block;
    border: 0;
}


/* Remove ALL horizontal scrolling on the entire website */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Fix the map section from pushing outside the viewport */
.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents iframe bleed */
}

/* Ensure iframe never exceeds screen width */
.map-section iframe {
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
    border: 0;
}

/* Ensure image and text stay together */
.menu-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Prevent center column from pushing side cards down */
.menu-card-layout-container {
    align-items: start !important;
}



/* =========================================================
   FIX: Signature Menu paragraph is now correctly positioned below heading (mobile)
   - The hacky code that used negative top/absolute positioning has been REMOVED.
   - The fix is implemented in the @media screen and (max-width: 1050px) block.
   ========================================================= */

/* The hacky mobile menu fix used here has been deleted. */