/* ===========================
   Typography Consistency - Elegant Serif Headings
   =========================== */

/* Main headings across the site */
h1, h2, h3, 
.section-title, 
.hero-title, 
.banner-card-title,
.feast-title,
.cb-title,
.delivery-content h2,
.gallery-header .section-title,
.flavors-header .section-title {
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
    letter-spacing: -1px !important;
    line-height: 1.1 !important;
}

/* Specific size adjustments */
.hero-title {
    font-size: 6.5rem;
}

.section-title {
    font-size: 4rem;
}

.banner-card-title {
    font-size: 3.8rem;
}

.feast-title {
    font-size: 5rem;
}

.cb-title {
    font-size: 4.5rem;
}

.delivery-content h2 {
    font-size: 3.5rem;
}

/* Ensure consistent styling for all major headings */
.gallery-header .section-title,
.flavors-header .section-title {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: -1px;
}
/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary-color: #DC2626; /* Beautiful red */
    --secondary-color: #991B1B; /* Darker red for hover states */
    --dark-bg: #1a1a1a;
    --light-bg: #f8f6f3;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin:0px;
    padding:0px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0); /* Default visible position */
}

.navbar.hidden {
    transform: translateY(-100%); /* Hide completely when scrolled */
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95); /* Slightly more opaque when scrolled */
    padding: 1rem 0; /* Smaller padding when scrolled */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

/* ===========================
   Premium Sidebar Navigation
   =========================== */

/* 1. The Backdrop (Dark overlay) */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8); /* More opaque */
    backdrop-filter: blur(5px);
    z-index: 9998; /* Very high z-index */
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* 2. The Sidebar Panel */
.nav-links {
    position: fixed;
    top: 0;
    right: -450px; /* Hidden by default - use fixed pixel value */
    width: 450px; /* Fixed width for desktop */
    height: 100vh;
    /* Glassmorphism Effect */
    background: rgba(18, 18, 18, 0.98); /* More opaque for better visibility */
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from center to flex-start */
    align-items: center;
    z-index: 9999; /* Highest Z-Index to ensure buttons work */
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
    overflow-x: hidden;
    padding-top: 2rem; /* Add top padding instead of absolute positioning */
}

.nav-links.active {
    right: 0;
}

/* 3. Sidebar Branding (Logo inside menu) - Restructured */
.sidebar-logo {
    text-align: center;
    width: 100%;
    margin-bottom: 3rem; /* Controlled spacing after branding */
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.2rem;
    letter-spacing: 4px;
    margin: 0 0 0.5rem 0;
}

.sidebar-logo span {
    font-family: var(--font-body);
    color: var(--primary-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}



.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: var(--white);
    transform: scale(1.05); /* Subtle zoom */
    background: transparent;
}

/* Gold Underline Animation */
.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-links .nav-link:hover::after {
    width: 60%;
}

/* 5. Close Button (Fixed & Prominent) */
.nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000; /* Extremely high to guarantee clickability */
}

.nav-close:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* 6. Sidebar Footer (Socials/Button) - Updated for flexbox layout */
.sidebar-footer {
    width: 100%;
    padding: 1.5rem 2rem 2rem 2rem;
    margin-top: auto; /* Push to bottom of flex container */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-sidebar-reserve {
    padding: 1rem 2.5rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.3s;
    text-decoration: none;
}

.btn-sidebar-reserve:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Remove nav-brand as it's replaced by sidebar-logo */

.nav-links.active {
    right: 0;
}

/* Navigation Links Container */
.nav-links-container {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

/* Style navigation links in sidebar */
.nav-links .nav-link {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 400;
    padding: 1.2rem 2rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    display: block;
    margin: 0;
}

.nav-links .nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 2.5rem;
}

.nav-links .nav-link.active {
    color: var(--primary-color);
    background: rgba(220, 38, 38, 0.1);
}

.nav-links .nav-link:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.nav-links .btn-reserve {
    background: linear-gradient(135deg, var(--primary-color) 0%, #EF4444 100%);
    color: var(--white);
    margin: 0 2rem 2rem 2rem; /* Reduced top margin */
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
    text-decoration: none;
    display: block;
    text-align: center;
    width: calc(100% - 4rem);
    border-bottom: none;
    margin-top: auto; /* Push to bottom */
}

.nav-links .btn-reserve:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.nav-link {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-reserve {
    background: linear-gradient(135deg, var(--primary-color) 0%, #EF4444 100%);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
    border: none;
}

.btn-reserve:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.hamburger {
    display: flex !important; /* Force display */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.8); /* Make more visible */
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5); /* More prominent border */
    position: relative;
    margin-left: auto; /* Ensure it stays on the right */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Add shadow for visibility */
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); /* Add shadow for better visibility */
}

/* ===========================
   Hero Section - Sequential Playback
   =========================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed Grid: We want them stacked on top of each other */
    z-index: 0;
}

.hero-video {
    position: absolute; /* Stacks videos on top of each other */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* Start hidden */
    opacity: 0;
    z-index: 0;
    
    /* Smooth Crossfade Transition (1 second) */
    transition: opacity 1s ease-in-out;
}

/* This class makes the video visible */
.hero-video.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Your desired gradient overlay */
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 80%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}





.hero-title {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    margin-bottom: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #EF4444 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid var(--white);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
/* ===========================
   Editorial Design Section
   =========================== */
.editorial-container {
    background: #fdfbf7; /* Very light warm beige, not harsh white */
    padding-bottom: 6rem;
    overflow: hidden;
    position: relative;
}

/* ===========================
   Section 2: Clean Peach "Watermark" Design (Reference Style)
   =========================== */
.intro-promo-section {
    padding: 6rem 0;
    position: relative;
    min-height: 80vh;
    /* Peach background with subtle pattern */
    background: 
        linear-gradient(rgba(252, 236, 219, 0.92), rgba(252, 236, 219, 0.92)),
        url('./videos/pattern1.jpg') center center / cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.intro-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./videos/pattern1.jpg') center center / cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.intro-promo-section > * {
    position: relative;
    z-index: 1;
}

/* 2. The Subtle Pattern Watermark */
.intro-promo-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%; /* Position mainly behind the text on the left */
    transform: translate(-20%, -50%);
    width: 800px; /* Large size */
    height: 800px;
    /* Use your pattern image here */
    background-image: url('images/pattern1.jpg'); /* Ensure this path is correct */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    /* MAGICAL FILTER: This makes any colorful image look like a subtle watermark */
    opacity: 0.08; /* Very transparent */
    filter: grayscale(100%) contrast(1.2); /* Remove color, keep lines */
    mix-blend-mode: multiply; /* Blends nicely into the peach background */
    
    z-index: 0;
    pointer-events: none;
}

.intro-promo-section .section-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Text Left, Slider Right */
    gap: 6rem;
    align-items: center;
}

/* 3. Text Content - Clean, No Box */
.banner-card {
    /* Resetting the orange box style to Transparent */
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    color: #1a1a1a; /* Dark Text */
    max-width: 550px;
    text-align: left;
}

/* Remove the old glassmorphism/border effects */
.banner-card::before { display: none; }

.banner-card-header {
    margin-bottom: 1.5rem;
}

.brand-collaboration {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color); /* Red accent like 'Private Parties' subtitle */
    display: block;
}

/* 4. Heading Typography (Match 'PRIVATE PARTIES' style) */
.banner-card-title {
    font-family: var(--font-heading); /* Serif font */
    font-size: 3.8rem; /* Large and bold */
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a; /* Dark Black/Brown */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.banner-card-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a; /* Dark Grey for readability */
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* 5. Clean Button Style (Outline or Solid) */
.banner-btn-clean {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-btn-clean:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* 6. Slider Adjustments for Light Background */
.promo-slider-container {
    position: relative;
    height: 550px;
    border-radius: 20px; /* Softer corners */
    overflow: hidden;
    /* Add a shadow to make it pop off the peach background */
    box-shadow: 20px 20px 50px rgba(165, 100, 50, 0.15); 
    background: #fff;
    transform: none; /* Reset 3D transform for cleaner look */
    border: 4px solid #fff; /* White border looks nice on peach */
    cursor: grab;
    user-select: none;
}

.promo-slider-container:active {
    cursor: grabbing;
}

/* Remove complex glassmorphism that conflicts with peach theme */
.promo-slider-container::before { display: none; }
.promo-slider-container:hover { 
    transform: translateY(-5px);
    box-shadow: 20px 25px 60px rgba(165, 100, 50, 0.2);
    transition: all 0.4s ease;
}

.promo-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.promo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.promo-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-slide:hover img {
    transform: scale(1.08);
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3), transparent);
    padding: 3rem 2rem 2rem;
    color: #fff;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.promo-slide:hover .promo-overlay {
    padding-bottom: 2.5rem;
}

.promo-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.promo-overlay p {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Slider Controls colors updated for visibility */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    pointer-events: all;
    opacity: 0.7;
}

.slider-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.slider-btn:active {
    transform: scale(1.05);
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.4s ease;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: #fff;
    width: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255,255,255,0.4);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .intro-promo-section {
        padding: 4rem 0;
    }
    .intro-promo-section .section-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .intro-promo-section::before {
        left: 50%;
        top: 20%;
        transform: translate(-50%, -50%);
        opacity: 0.05;
    }

    .banner-card {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .banner-card-title {
        font-size: 2.5rem;
    }
    
    .promo-slider-container {
        height: 400px;
        width: 100%;
    }
}

/* ===========================
   Section 3: Flavors of India Video Gallery - Large Format with Frames
   =========================== */
.flavors-gallery-section {
    padding: 4.5rem 2rem;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

/* Removed complex background effects for cleaner design */

.flavors-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.flavors-header .section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666666;
    font-weight: 400;
    margin-bottom: 0.5rem;
    position: relative;
    font-family: var(--font-body);
}

.flavors-header .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    color: #333333;
    margin-bottom: 0.8rem;
    font-weight: 400;
    letter-spacing: 0;
}

.flavors-header .section-subtitle {
    font-size: 0.9rem;
    color: #777777;
    line-height: 1.4;
    font-weight: 300;
    font-family: var(--font-body);
    letter-spacing: 0;
}

/* Large Video Gallery Grid - Fixed Width Layout */
.video-gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 300px;
    
    /* Clean and simple frame */
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gallery-video-container {
    position: relative;
    width: 300px;
    height: 498px;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: none;
}

/* Hide all video controls completely */
.gallery-video::-webkit-media-controls {
    display: none !important;
}

.gallery-video::-webkit-media-controls-panel {
    display: none !important;
}

.gallery-video::-webkit-media-controls-play-button {
    display: none !important;
}

.gallery-video::-webkit-media-controls-pause-button {
    display: none !important;
}

.gallery-video::-webkit-media-controls-mute-button {
    display: none !important;
}

.gallery-video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.gallery-video::-webkit-media-controls-timeline {
    display: none !important;
}

.gallery-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.gallery-video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.gallery-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

/* Clean Video Overlay - Always Visible, Simple Design */
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.2) 60%,
        transparent 100%);
    padding: 1.2rem 1rem;
    color: var(--white);
    border-radius: 0 0 10px 10px;
}

.video-content {
    text-align: left;
}

.video-tag {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
    line-height: 1.2;
}

.video-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

/* CTA Button */
.flavors-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #EF4444 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-explore:hover::before {
    left: 100%;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .video-gallery-grid {
        justify-content: center;
    }
    
    .video-card {
        width: 300px; /* Keep fixed width */
    }
    
    .gallery-video-container {
        width: 300px;
        height: 498px; /* Keep fixed dimensions */
    }
}

@media (max-width: 768px) {
    .flavors-gallery-section {
        padding: 6rem 1.5rem;
    }
    
    .flavors-header {
        margin-bottom: 3rem;
    }
    
    .flavors-header .section-title {
        font-size: 3rem;
    }
    
    .flavors-header .section-subtitle {
        font-size: 1rem;
    }
    
    .video-gallery-grid {
        gap: 1rem;
        justify-content: center;
    }
    
    /* Show only 1 video card on mobile */
    .video-card {
        width: 300px;
        padding: 6px;
    }
    
    .video-card:nth-child(n+2) {
        display: none;
    }
    
    .gallery-video-container {
        width: 300px;
        height: 406px;
    }
    
    .video-title {
        font-size: 1.1rem;
    }
    
    .video-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .btn-explore {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .flavors-gallery-section {
        padding: 4rem 1rem;
    }
    
    .flavors-header .section-title {
        font-size: 2.5rem;
    }
    
    .video-gallery-grid {
        gap: 1.5rem;
        justify-content: center;
    }
    
    /* Show only 1 video card on small mobile */
    .video-card {
        width: 300px;
        padding: 5px;
    }
    
    .video-card:nth-child(n+2) {
        display: none;
    }
    
    .gallery-video-container {
        width: 300px;
        height: 338px;
    }
    
    .video-overlay {
        padding: 1.5rem 1.2rem;
    }
    
    .video-title {
        font-size: 1rem;
    }
}

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .editorial-heading {
        font-size: 3.5rem;
    }

    .decorative-line {
        margin: 0 auto 2rem;
    }
    
    .body-text {
        margin: 0 auto 2.5rem;
    }

    .poster-frame {
        margin: 0 auto;
        height: 500px;
    }

    .gallery-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .art-piece.tall, .art-piece.wide, .art-piece.small {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
        width: 100%;
        border-radius: 20px;
    }
}
/* ===========================
   Section 2: Intro & Poster Box
   =========================== */
.intro-section {
    padding: 6rem 2rem;
    background: var(--white);
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 Split */
    gap: 5rem;
    align-items: center;
}

/* Intro Text Styling */
.intro-content {
    padding-right: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Poster Box Styling (The "Slider" Box) */
.poster-box-container {
    position: relative;
    width: 100%;
    max-width: 400px; /* Limits width to look like a poster */
    height: 550px;    /* Vertical aspect ratio */
    margin: 0 auto;   /* Centers it in the right column */
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15); /* Strong shadow for depth */
    overflow: hidden;
    transform: rotate(2deg); /* Slight tilt for creative flair */
    transition: transform 0.3s ease;
    border: 8px solid #fff; /* White frame */
}

.poster-box-container:hover {
    transform: rotate(0deg) scale(1.02);
}

.poster-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.poster-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.poster-slide.active {
    opacity: 1;
}

.poster-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Poster Overlay Content */
.poster-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    text-align: center;
}

.poster-tag {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.poster-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
}

/* Controls inside the poster */
.poster-controls {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.poster-controls button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1rem;
}

.poster-controls button:hover {
    color: var(--primary-color);
}

/* ===========================
   Section 3: Cuisine Visuals (Collage)
   =========================== */
.cuisine-visual-section {
    padding: 0 2rem 6rem; /* Top padding 0 to connect closely with Intro */
    background: var(--white);
}

.cuisine-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Grid Layout: 3 Columns, 2 Rows */
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 1rem;
}

.cuisine-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.cuisine-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Effect: Zoom only, no text */
.cuisine-item:hover img {
    transform: scale(1.1);
}

/* Grid Spanning Logic for Collage Look */
.cuisine-item.main {
    grid-row: span 2; /* Takes up full height on left */
}

.cuisine-item.wide {
    grid-column: 2 / span 2; /* Spans 2 columns on bottom right */
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .section-container {
        grid-template-columns: 1fr; /* Stack intro and poster */
        text-align: center;
    }

    .intro-content {
        padding-right: 0;
    }

    .poster-box-container {
        transform: rotate(0); /* Remove tilt on mobile */
        max-width: 350px;
        height: 500px;
    }
    
    .cuisine-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .cuisine-item.main, .cuisine-item.wide {
        grid-column: span 1;
        grid-row: span 1;
        height: 200px;
    }
}



/* ===========================
   Video Gallery - Reference Design Match
   =========================== */

/* Wrapper handles positioning */
.gallery-video-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height for consistent look like the image */
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The dark gradient overlay at the bottom */
.video-overlay-ui {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem; /* Space around content */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 12px; /* Gap between text and buttons */
    opacity: 0; 
    transition: opacity 0.3s ease;
}

/* Always show overlay on hover (or always visible on mobile) */
.gallery-video-wrapper:hover .video-overlay-ui {
    opacity: 1;
}

@media (max-width: 1024px) {
    .video-overlay-ui {
        opacity: 1; /* Always visible on touch devices */
    }
}

/* Typography Matching */
.video-info-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.video-tag {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body, sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-title {
    color: #fff;
    font-family: var(--font-heading, serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

/* Controls Row */
.video-controls-row {
    display: flex;
    align-items: center;
    gap: 18px; /* Precise spacing between icons */
}

.ui-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, color 0.2s;
}

.ui-btn i {
    font-size: 1.1rem; /* Icon size match */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.ui-btn:hover {
    transform: scale(1.1);
    color: var(--primary-color, #DC2626);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .gallery-video-wrapper {
        height: 400px;
    }
    .video-title {
        font-size: 1.1rem;
    }
    .video-tag {
        font-size: 0.65rem;
    }
}
/* ===========================
   Food Gallery Section
   =========================== */
.food-gallery-section {
    padding: 8rem 2rem;
    background: var(--light-bg);
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.gallery-header .section-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

.gallery-header .section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    color: black;
    margin: 0;
    font-weight: 700;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 350px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.gallery-item.tall {
    grid-row: span 2;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

/* ===========================
   Video Gallery - Progress Bar Update
   =========================== */

/* Wrapper handles positioning */
.gallery-video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-ui {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1rem; /* Adjusted padding */
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-video-wrapper:hover .video-overlay-ui {
    opacity: 1;
}

@media (max-width: 1024px) {
    .video-overlay-ui { opacity: 1; }
}

/* Typography */
.video-info-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 5px;
}

.video-tag {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body, sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-title {
    color: #fff;
    font-family: var(--font-heading, serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

/* --- NEW: Progress Bar Styling --- */
.video-progress-wrapper {
    width: 100%;
    height: 4px;
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* Space between bar and buttons */
    position: relative;
}

.video-progress-bar {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3); /* Transparent white track */
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: background 0.2s, height 0.2s;
    position: relative;
    z-index: 10;
}

/* Chrome/Safari Slider Thumb */
.video-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0; /* Hidden by default for clean look */
    height: 0;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Firefox Slider Thumb */
.video-progress-bar::-moz-range-thumb {
    width: 0;
    height: 0;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Show thumb and thicker track on hover */
.video-progress-wrapper:hover .video-progress-bar {
    height: 5px;
}

.video-progress-wrapper:hover .video-progress-bar::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
}

.video-progress-wrapper:hover .video-progress-bar::-moz-range-thumb {
    width: 12px;
    height: 12px;
}

/* --- Controls Row --- */
.video-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Spreads left and right controls */
    width: 100%;
}

.left-controls, .right-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ui-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.ui-btn i {
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.ui-btn:hover {
    transform: scale(1.1);
    color: var(--primary-color, #DC2626);
}
/* ===========================
   Section 4: Chef's Recommendations (Enhanced Cultural Background)
   =========================== */

/* 1. Enhanced background with better contrast */
.menu-preview-section {
    padding: 8rem 2rem;
    width: 100%;
    position: relative;
    min-height: 700px;
    
    /* Enhanced dramatic background with stronger overlay */
    /* background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.95) 0%, 
            rgba(139, 0, 0, 0.9) 15%, 
            rgba(165, 42, 42, 0.85) 30%, 
            rgba(178, 34, 34, 0.8) 50%, 
            rgba(139, 69, 19, 0.85) 70%, 
            rgba(0, 0, 0, 0.95) 100%
        ),
        radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 0, 0.2) 0%, transparent 50%),
        url('./videos/culture.jpg') center center / cover no-repeat fixed; */
    
    /* Fallback properties */
    background-image: 
        /* linear-gradient(135deg, 
            rgba(0, 0, 0, 0.95) 0%, 
            rgba(139, 0, 0, 0.9) 15%, 
            rgba(165, 42, 42, 0.85) 30%, 
            rgba(178, 34, 34, 0.8) 50%, 
            rgba(139, 69, 19, 0.85) 70%, 
            rgba(0, 0, 0, 0.95) 100%
        ), */
        url('./videos/culture.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* background-color: #000000; */
    
    /* Add depth with inset shadow */
    /* box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.4); */
}

.menu-preview-section .section-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding: 0.8rem 0;
}

.menu-preview-section .section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        #FFD700, 
        rgba(220, 38, 38, 0.8), 
        transparent
    );
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.menu-preview-section .section-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: black; /* This was turning your Story page text white! */
    font-weight: 700;
    letter-spacing: -2px;
    position: relative;
}

.menu-preview-section .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Enhanced elegant pattern overlay with dramatic effects */
.menu-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    animation: menuShimmer 20s ease-in-out infinite;
}

@keyframes menuShimmer {
    0%, 100% { 
        opacity: 0.9;
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    33% { 
        opacity: 1;
        transform: translateX(3px) translateY(-2px) rotate(0.5deg);
    }
    66% { 
        opacity: 0.95;
        transform: translateX(-2px) translateY(3px) rotate(-0.3deg);
    }
}

/* Ensure content is above the overlay */
.menu-preview-section .section-container {
    position: relative;
    z-index: 2;
}

/* 2. Create the Dark Overlay (Essential for readability) - Temporarily disabled for testing */
.menu-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Temporarily remove overlay to test background image visibility */
    z-index: 1; /* Sits above image, below text */
}

/* 3. Bring the content above the overlay */
.menu-preview-section .section-container {
    position: relative;
    z-index: 2; /* Important: keeps text clickable and visible */
    
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

/* 4. Update Text Colors for Dark Background */

/* High contrast typography for perfect readability */
.section-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding: 0.8rem 0;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        #FFD700, 
        rgba(220, 38, 38, 0.8), 
        transparent
    );
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: black;
    font-weight: 700;
    letter-spacing: -2px;
    position: relative;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.6);
}

.intro-text:last-of-type {
    margin-bottom: 3rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    padding: 1.2rem 2.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.3), 
        transparent
    );
    transition: left 0.6s ease;
}

.btn-link:hover::before {
    left: 100%;
}

.btn-link:hover {
    color: #FFFFFF;
    border-color: rgba(255, 215, 0, 0.8);
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6);
}

.btn-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* 5. Product Cards adjustments */
.menu-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 380px; /* Increased from 300px */
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    padding: 2rem; /* Increased padding */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.1) 0%, 
        rgba(178, 34, 34, 0.08) 30%, 
        rgba(255, 215, 0, 0.06) 70%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.menu-product-card:hover::before {
    opacity: 1;
}

.menu-product-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(220, 20, 60, 0.3),
        0 0 40px rgba(220, 20, 60, 0.15);
    border-color: rgba(220, 20, 60, 0.4);
    background: rgba(0, 0, 0, 0.6);
}

.menu-product-card .product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem; /* Increased margin */
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.menu-product-card .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.menu-product-card .product-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.menu-product-card:hover .product-image {
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(220, 20, 60, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.menu-product-card:hover .product-image img {
    transform: scale(1.05); /* Reduced scale to prevent overflow */
}

.menu-product-card .product-info {
    position: relative;
    width: 100%;
    z-index: 2;
}

.menu-product-card .product-desc {
    font-size: 1.1rem; /* Increased font size */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 320px; /* Increased max-width */
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* Hover effect on card - Brighten text */
.menu-product-card:hover .product-desc {
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* Keep the Grid Layout (No changes needed here, just ensuring it exists) */
.menu-product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); /* Increased from 280px */
    gap: 4rem; /* Increased gap */
    justify-content: center;
    max-width: 1600px; /* Added max-width for better control */
    margin: 0 auto;
}

/* Add staggered animation for cards */
.menu-product-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.menu-product-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.menu-product-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.menu-product-card:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-cta {
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out 1.0s backwards;
}

.btn-primary {
    /* Ensure button looks substantial */
    padding: 1.2rem 3.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Add premium visual enhancements */
.intro-content {
    animation: fadeInLeft 1.2s ease-out;
    position: relative;
}

.intro-content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.promo-slider-container {
    animation: fadeInRight 1.2s ease-out 0.4s backwards;
}

/* Mobile Responsiveness with Enhanced Text Readability */
@media (max-width: 1024px) {
    .intro-promo-section {
        padding: 6rem 0;
        background-attachment: scroll;
        background-size: cover;
        min-height: auto;
    }
    
    .intro-promo-section .section-container {
        grid-template-columns: 1fr;
        gap: 6rem;
        text-align: center;
        padding: 0 2rem;
        max-width: 800px;
    }
    
    .banner-card {
        padding: 3rem 2.5rem;
        margin: 0 auto;
        max-width: 100%;
        background: transparent;
        border-radius: 0;
    }
    
    .banner-card-title {
        font-size: 1.6rem;
        line-height: 1.1;
        color: #1a1a1a;
    }
    
    .promo-slider-container {
        transform: none;
        height: 450px;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .promo-slider-container:hover {
        transform: translateY(-5px);
    }
    
    .slider-btn {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .promo-overlay {
        padding: 2.5rem 2rem;
    }
    
    .promo-overlay h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .intro-promo-section {
        padding: 4rem 0;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: auto;
        overflow: visible;
    }
    
    .intro-promo-section .section-container {
        gap: 4rem;
        padding: 0 1.5rem;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: visible;
    }
    
    .banner-card {
        padding: 2.5rem 2rem;
        background: transparent;
        border-radius: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
        order: 1;
    }
    
    .brand-collaboration {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
        color: var(--primary-color);
    }
    
    .banner-card-title {
        font-size: 1.4rem;
        letter-spacing: -0.5px;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .banner-card-text {
        font-size: 0.85rem;
        color: #4a4a4a;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .banner-btn-clean {
        padding: 0.8rem 1.8rem;
        font-size: 0.65rem;
        border: 1px solid #1a1a1a;
        color: #1a1a1a;
        background: transparent;
    }
    
    .promo-slider-container {
        height: 400px;
        border-radius: 20px;
        max-width: 100%;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        margin: 0 auto;
        order: 2;
        position: relative;
        overflow: hidden;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .promo-overlay {
        padding: 2rem 1.5rem;
    }
    
    .promo-overlay h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .promo-overlay p {
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 1.5rem; /* Move slightly down to clear text */
        gap: 0.6rem;    /* tighter spacing */
    }
    
    .slider-dots .dot {
        width: 8px;      /* Reduced from 12px */
        height: 8px;     /* Reduced from 12px */
        border-width: 1px; /* Thinner elegant border */
    }
    
    .slider-dots .dot.active {
        width: 24px;     /* Reduced from 30px */
        border-radius: 4px; /* Slightly softer radius */
    }

    /* Adjust overlay padding to ensure text doesn't hit the dots */
    .promo-overlay {
        padding: 2rem 1.5rem 2.5rem 1.5rem; /* More bottom padding for dots */
    }
    
}

@media (max-width: 480px) {
    .intro-promo-section {
        padding: 3rem 0;
        background-attachment: scroll;
        background-position: center center;
        overflow: visible;
    }
    
    .intro-promo-section .section-container {
        gap: 3rem;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .banner-card {
        padding: 2rem 1.5rem;
        background: transparent;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        order: 1;
    }
    
    .brand-collaboration {
        font-size: 0.65rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }
    
    .banner-card-title {
        font-size: 1.2rem;
        color: #1a1a1a;
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .banner-card-text {
        font-size: 0.8rem;
        color: #4a4a4a;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .banner-btn-clean {
        padding: 0.7rem 1.5rem;
        font-size: 0.6rem;
        border: 1px solid #1a1a1a;
        color: #1a1a1a;
        background: transparent;
    }
    
    .promo-slider-container {
        height: 350px;
        border-radius: 15px;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        order: 2;
        position: relative;
        overflow: hidden;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .promo-overlay {
        padding: 1.5rem 1.2rem;
    }
    
    .promo-overlay h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .promo-overlay p {
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 1.2rem;
        gap: 0.5rem;
    }
    
    .slider-dots .dot {
        width: 6px;      /* Reduced from 10px */
        height: 6px;     /* Reduced from 10px */
        border-width: 1px;
    }
    
    .slider-dots .dot.active {
        width: 18px;     /* Reduced from 25px */
    }

    /* Ensure the container doesn't feel "too big" vertically if that was implied */
    .promo-slider-container {
        height: 350px; /* Slight height reduction for better proportions */
        /* ... keep existing overrides ... */
    }
}

@media (max-width: 360px) {
    .intro-promo-section {
        padding: 2.5rem 0;
        overflow: visible;
    }
    
    .intro-promo-section .section-container {
        gap: 2.5rem;
        padding: 0 0.8rem;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .banner-card {
        padding: 1.5rem 1.2rem;
        width: 100%;
        max-width: 100%;
        order: 1;
    }
    
    .banner-card-title {
        font-size: 1.1rem;
    }
    
    .banner-card-text {
        font-size: 0.75rem;
    }
    
    .banner-btn-clean {
        padding: 0.6rem 1.2rem;
        font-size: 0.55rem;
        border: 1px solid #1a1a1a;
        color: #1a1a1a;
        background: transparent;
    }
    
    .promo-slider-container {
        height: 300px;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 10px;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        order: 2;
        position: relative;
        overflow: hidden;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .promo-overlay {
        padding: 1.2rem 1rem;
    }
    
    .promo-overlay h3 {
        font-size: 1.3rem;
    }
    
    .promo-overlay p {
        font-size: 0.8rem;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) and (pointer: coarse) {
    .slider-btn {
        min-width: 48px;
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .btn-link {
        min-height: 48px;
        touch-action: manipulation;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
}


/* ===========================
   Section 5: Feast of Spice (Elegant Light Theme)
   =========================== */
.feast-section {
    position: relative;
    width: 100%;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #fdfbf7 0%, #f8f6f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feast-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feast-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.feast-text-content {
    text-align: left;
}

.feast-sup {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.feast-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.feast-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--primary-color);
}

.feast-main {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
}

.feast-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 1rem;
}

/* Elegant Card Design */
.feast-floating-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(212, 165, 116, 0.1);
    position: relative;
    overflow: hidden;
}

.feast-floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #e6b885);
}

.card-decoration {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-decoration i {
    color: var(--primary-color);
    font-size: 2rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
}

.promo-title {
    color: var(--dark-bg);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.promo-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.card-buttons {
    display: flex;
    gap: 1rem;
}

.btn-card-outline {
    flex: 1;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: transparent;
}

.btn-card-outline:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #EF4444 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-card-fill {
    flex: 1;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, #EF4444 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
}

.btn-card-fill:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Responsive Design for Feast Section */
@media (max-width: 1024px) {
    .feast-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .feast-text-content {
        text-align: center;
    }
    
    .feast-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .feast-section {
        padding: 4rem 1.5rem;
    }
    
    .feast-content {
        gap: 2.5rem;
    }
    
    .feast-title {
        font-size: 3rem;
    }
    
    .feast-floating-card {
        padding: 2rem;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .card-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .feast-section {
        padding: 3rem 1rem;
    }
    
    .feast-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feast-sup {
        font-size: 0.8rem;
        letter-spacing: 3px;
        margin-bottom: 0.8rem;
    }
    
    .feast-sub {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-top: 0.8rem;
    }
    
    .feast-floating-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .card-decoration i {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    
    .promo-title {
        font-size: 1rem;
    }
    
    .promo-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-card-outline,
    .btn-card-fill {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .feast-title {
        font-size: 2rem;
    }
    
    .feast-floating-card {
        padding: 1.2rem;
    }
    
    .promo-text {
        font-size: 0.95rem;
    }
}

/* ===========================
   Section 6: Creative Booking with Video Background (Cinematic Design)
   =========================== */
.creative-booking-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

/* Video Background Container */
.booking-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.booking-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

/* Elegant Video Overlay */
.booking-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.7) 0%,
            rgba(139, 0, 0, 0.6) 20%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(139, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.6) 80%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(220, 38, 38, 0.15) 0%, transparent 50%); */
    z-index: 2;
}

/* Main Content Container */
.cb-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    height: 100vh;
    display: flex;
    align-items: center;
}

.cb-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    width: 50%;
    max-width: 600px;
    margin-left: 0;
    padding-right: 3rem;
}

/* Text Section - Left Aligned */
.cb-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    width: 100%;
}

.cb-header {
    text-align: left;
    width: 100%;
}

/* Enhanced Label Styling */
.cb-label {
    color: #fbbf24;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(251, 191, 36, 0.6);
    padding: 0.8rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 30px;
    border: 2px solid rgba(251, 191, 36, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
}

.cb-label::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 2rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

/* Dramatic Title Styling */
.cb-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 800;
    text-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.9),
        0 3px 10px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.3);
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.cb-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at left, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
    border-radius: 25px;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

/* Enhanced Subtitle */
.cb-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 1px 3px rgba(0, 0, 0, 0.6);
    max-width: 450px;
    line-height: 1.7;
    letter-spacing: 0.3px;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    text-align: left;
}

/* Booking Section - Right Side */
.cb-booking-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Enhanced Console Design */
.reservation-console-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 100px rgba(255, 215, 0, 0.15);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 500px;
    width: 100%;
    animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.reservation-console-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
}

.reservation-console-box:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 120px rgba(255, 215, 0, 0.2);
}

.console-header {
    background: rgba(249, 249, 249, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(238, 238, 238, 0.8);
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.console-status {
    display: flex;
    align-items: center;
    color: #4CAF50;
    font-weight: 600;
}

.console-logo {
    color: #888;
    font-size: 0.85rem;
}

.console-logo strong {
    color: var(--primary-color);
    font-weight: 700;
}

.pulsing-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
        box-shadow: 0 0 25px rgba(76, 175, 80, 0.8);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
    }
}

.console-body {
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: end;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
}

.console-body .btn-console-action {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
}

.console-input-group {
    position: relative;
}

.console-input-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.input-display {
    border-bottom: 3px solid rgba(238, 238, 238, 0.8);
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 50px;
}

.input-display:hover {
    border-bottom-color: var(--primary-color);
    transform: translateY(-3px);
    color: #222;
}

.input-display::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c42);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.input-display:hover::after {
    width: 100%;
}

.input-display i {
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: all 0.4s ease;
    min-width: 20px;
}

.input-display:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #ff6b35;
}

.input-display span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-console-action {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    border: none;
    height: 65px;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    font-size: 1rem;
}

.btn-console-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-console-action::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

.btn-console-action:hover::before {
    left: 100%;
}

.btn-console-action:hover::after {
    opacity: 1;
}

.btn-console-action:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.4),
        0 0 30px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-console-action span {
    position: relative;
    z-index: 2;
}

/* Mobile Adjustments for Video Background Design */
@media (max-width: 1024px) {
    .creative-booking-section {
        min-height: 100vh;
        padding: 0;
    }
    
    .cb-content-container {
        padding: 3rem 1.5rem;
        height: auto;
        min-height: 100vh;
    }
    
    .cb-content-wrapper {
        width: 100%;
        max-width: 600px;
        padding-right: 0;
        text-align: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .cb-text-section {
        padding: 0;
        align-items: center;
    }
    
    .cb-header {
        text-align: center;
    }
    
    .cb-title {
        font-size: 4rem;
        text-align: center;
    }
    
    .cb-subtitle {
        max-width: 100%;
        padding: 1.5rem 2rem;
        text-align: center;
    }
    
    .cb-label::after {
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    }
}

@media (max-width: 768px) {
    .creative-booking-section {
        min-height: 100vh;
    }
    
    .cb-content-container {
        padding: 2rem 1rem;
        height: auto;
        min-height: 100vh;
    }
    
    .cb-content-wrapper {
        width: 100%;
        max-width: 500px;
        padding-right: 0;
        text-align: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .cb-title {
        font-size: 3rem;
        letter-spacing: -1px;
        text-align: center;
    }
    
    .cb-label {
        font-size: 0.9rem;
        letter-spacing: 3px;
        padding: 0.6rem 1.5rem;
    }
    
    .cb-subtitle {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
        text-align: center;
    }
    
    .btn-book-table {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        letter-spacing: 1.5px;
        margin-top: 2rem;
    }
}

/* ===========================
   Book a Table Button Styles
   =========================== */
.btn-book-table {
    background: linear-gradient(135deg, var(--primary-color) 0%, #EF4444 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(220, 38, 38, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.btn-book-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-book-table::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.btn-book-table:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 40px rgba(220, 38, 38, 0.5),
        0 0 30px rgba(220, 38, 38, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-book-table:hover::before {
    left: 100%;
}

.btn-book-table:hover::after {
    opacity: 1;
}

.btn-book-table span {
    position: relative;
    z-index: 2;
}

/* Mobile adjustments for the new button */
@media (max-width: 768px) {
    .btn-book-table {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        letter-spacing: 1.5px;
        margin-top: 2rem;
    }
    
    
    .input-display i {
        font-size: 1.2rem;
    }
    
    .reservation-console-box {
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .cb-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .cb-content-container {
        padding: 1.5rem 1rem;
        height: auto;
        min-height: 100vh;
    }
    
    .cb-content-wrapper {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .cb-subtitle {
        font-size: 1rem;
        padding: 1rem 1.2rem;
        text-align: center;
    }
    
    .cb-label {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
}
    
    .cb-subtitle {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }
    
    .console-body {
        padding: 1.5rem;
    }
    
    .console-header {
        padding: 1rem 1.5rem;
    }
    
    .cb-label {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }


/* ===========================
   Delivery Section - Elegant Single Button Design
   =========================== */
.delivery-section {
    padding: 4rem 2rem;
    position: relative;
    /* Peach background with subtle pattern */
    background: 
        linear-gradient(rgba(252, 236, 219, 0.95), rgba(252, 236, 219, 0.95)),
        url('./videos/pattern1.jpg') center center / cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.delivery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./videos/pattern1.jpg') center center / cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.delivery-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


.delivery-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.delivery-content p {
    font-size: 1.1rem;
    color: #2a2a2a;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.delivery-cta {
    margin-bottom: 2.5rem;
}

.delivery-btn-main {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 4px; /* Very minimal rounded corners */
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid #1a1a1a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.delivery-btn-main:hover {
    background: #1a1a1a;
    color: var(--white);
    border-color: #1a1a1a;
}

/* Remove complex animations - keep it simple */

.btn-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.delivery-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 165, 116, 0.08);
    color: var(--secondary-color);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.delivery-note::before {
    content: '🚚';
    font-size: 1rem;
}

/* Alternative elegant button style */
.delivery-btn-elegant {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--white);
    color: var(--dark-bg);
    padding: 1.5rem 3.5rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
}

.delivery-btn-elegant::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.delivery-btn-elegant:hover::after {
    opacity: 1;
}

.delivery-btn-elegant:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .delivery-section {
        padding: 4rem 1.5rem;
    }
    
    .delivery-content h2 {
        font-size: 2.8rem;
    }
    
    .delivery-btn-main {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        gap: 0.8rem;
    }
    
    .btn-icon {
        font-size: 1.2rem;
    }
    
    .delivery-note {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* ===========================
   Promotional Banner Modal
   =========================== */
.banner-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    animation: bannerFadeIn 0.5s ease-out;
}

.banner-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.banner-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: bannerSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes bannerFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bannerSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.banner-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.banner-close-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.banner-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.banner-image-section {
    position: relative;
    overflow: hidden;
}

.banner-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.banner-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 165, 116, 0.2) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.banner-text-section {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* Apply same pattern background as intro-promo-section */
    background: 
        linear-gradient(rgba(252, 236, 219, 0.92), rgba(252, 236, 219, 0.92)),
        url('./videos/pattern1.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.banner-text-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%; /* Position mainly behind the text on the left */
    transform: translate(-20%, -50%);
    width: 600px; /* Slightly smaller for modal */
    height: 600px;
    /* Use your pattern image here */
    background-image: url('./videos/pattern1.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    /* MAGICAL FILTER: This makes any colorful image look like a subtle watermark */
    opacity: 0.08; /* Very transparent */
    filter: grayscale(100%) contrast(1.2); /* Remove color, keep lines */
    mix-blend-mode: multiply; /* Blends nicely into the peach background */
    
    z-index: 0;
    pointer-events: none;
}

.banner-text-section > * {
    position: relative;
    z-index: 1;
}

.banner-decorative-element {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(212, 165, 116, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.6;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400; /* Match the elegant style */
    line-height: 1.1;
    color: #1a1a1a; /* Dark text for better contrast on peach background */
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: #4a4a4a; /* Darker grey for better readability on peach background */
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.banner-subtitle strong {
    color: var(--primary-color);
    font-weight: 600;
}

.banner-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-banner-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6b885 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.btn-banner-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-banner-secondary {
    color: var(--secondary-color);
    text-align: center;
    padding: 0.8rem 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-banner-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.banner-date-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
}

.banner-date,
.banner-time {
    font-size: 0.9rem;
    color: #666666; /* Darker grey for better contrast on peach background */
    font-weight: 500;
}

.banner-date {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .banner-modal-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
    }
    
    .banner-content-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .banner-image-section {
        height: 250px;
    }
    
    .banner-text-section {
        padding: 2rem 1.5rem;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    .banner-text-section::before {
        left: 50%;
        top: 20%;
        transform: translate(-50%, -50%);
        opacity: 0.05;
        width: 400px;
        height: 400px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-close-btn {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-text-section {
        padding: 1.5rem;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    .banner-text-section::before {
        left: 50%;
        top: 20%;
        transform: translate(-50%, -50%);
        opacity: 0.05;
        width: 300px;
        height: 300px;
    }
    
    .btn-banner-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===========================
   Booking Modal
   =========================== */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.booking-modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    border: none;
    background: var(--light-bg);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.close-modal i {
    font-size: 1rem;
}

.booking-modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.full-width {
    width: 100%;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

/* ===========================
   Floating Book Table Button
   =========================== */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #EF4444 100%);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1500;
    box-shadow: 
        0 8px 25px rgba(220, 38, 38, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: floatingPulse 3s ease-in-out infinite;
}

.floating-book-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(220, 38, 38, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.floating-btn-text {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1.2px;
}

.floating-btn-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.floating-book-btn:hover .floating-btn-icon {
    transform: rotate(15deg) scale(1.1);
}

@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(220, 38, 38, 0.4),
            0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(220, 38, 38, 0.6),
            0 6px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Mobile responsiveness for floating button */
@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 12px;
        gap: 8px;
    }
    
    .floating-btn-icon {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .floating-book-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .floating-btn-text {
        letter-spacing: 1px;
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .section-container,
    .booking-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 4rem;
    }

    .floating-text-box {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links {
        width: 400px;
        right: -400px;
    }
    
    .nav-links.active {
        right: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        width: 100vw;
        right: -100vw;
    }
    
    .nav-links.active {
        right: 0;
    }

    /* Removed conflicting grid styles for hero video-container */

    .hero-title {
        font-size: 3.2rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .section-title {
        font-size: 2.8rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .feature-title {
        font-size: 2.8rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .banner-card-title {
        font-size: 1.6rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .feast-title {
        font-size: 3rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .cb-title {
        font-size: 3rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .delivery-content h2 {
        font-size: 2.8rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .floating-text-box {
        padding: 2.5rem;
        margin: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 350px;
    }

    .booking-image-grid {
        grid-template-columns: 1fr;
    }

    .booking-img.img-2 {
        margin-top: 0;
    }

    .booking-buttons {
        flex-direction: column;
        width: 100%;
    }

    .booking-buttons .btn-primary,
    .booking-buttons .btn-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .delivery-partners {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Desktop Modal Enhancements */
@media (min-width: 1025px) {
    .booking-modal-content {
        max-width: 650px;
        padding: 3.5rem;
    }
    
    .booking-modal-content h2 {
        font-size: 2.8rem;
        margin-bottom: 0.8rem;
    }
    
    .modal-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .form-row {
        gap: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .close-modal {
        top: 1.2rem;
        right: 1.2rem;
        width: 50px;
        height: 50px;
    }
    
    .close-modal i {
        font-size: 1.1rem;
    }
}

/* Tablet Modal Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .booking-modal-content {
        max-width: 500px;
        padding: 2.5rem 2rem;
    }
    
    .booking-modal-content h2 {
        font-size: 2.2rem;
    }
}

/* Small Tablet and Large Mobile */
@media (max-width: 768px) and (min-width: 481px) {
    .booking-modal {
        padding: 1rem;
        align-items: center;
    }
    
    .booking-modal-content {
        max-width: 90%;
        padding: 2rem 1.5rem;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .booking-modal-content h2 {
        font-size: 2rem;
        padding-right: 3rem;
    }
    
    .close-modal {
        top: 1rem;
        right: 1rem;
        width: 42px;
        height: 42px;
        font-size: 1.7rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 768px) {
    .booking-modal {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }

    .booking-modal-content {
        padding: 2rem 1.5rem;
        margin: 0;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .booking-modal-content h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .close-modal {
        top: 0.8rem;
        right: 0.8rem;
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .section-title {
        font-size: 2.2rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .banner-card-title {
        font-size: 1.4rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .feast-title {
        font-size: 2.5rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .cb-title {
        font-size: 2.5rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .delivery-content h2 {
        font-size: 2.2rem;
        font-weight: 400;
        letter-spacing: -0.5px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Enhanced Mobile Modal Styles */
    .booking-modal {
        padding: 0;
        align-items: stretch;
    }
    
    .booking-modal-content {
        padding: 1.5rem 1rem;
        border-radius: 0;
        max-width: 100%;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    
    .booking-modal-content h2 {
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: -0.5px;
        margin-bottom: 0.5rem;
        padding-right: 3rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .close-modal {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
        position: fixed;
        z-index: 2001;
    }
    
    .booking-form {
        gap: 1.2rem;
        flex: 1;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .btn-primary.full-width {
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .form-note {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }

    .promo-slider-container {
        height: 400px;
    }

    .promo-overlay h3 {
        font-size: 1.8rem;
    }
}

/* Enhanced hamburger visibility for all screen sizes */
@media (max-width: 1024px) {
    .hamburger {
        background: rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 15px;
    }
    
    .hamburger span {
        width: 30px;
        height: 3px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hamburger {
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.4);
        padding: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .hamburger:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .hamburger span {
        width: 26px;
        height: 3px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hamburger {
        padding: 10px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .hamburger span {
        width: 24px;
        height: 3px;
    }
}
/* Add floating animation for enhanced visual appeal */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Remove conflicting hover styles - they're already defined above */

/* Enhanced sparkle effect for menu preview section */
.menu-preview-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    background-size: 250px 150px;
    animation: sparkleGold 35s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

@keyframes sparkleGold {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        opacity: 0.9;
    }
    66% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-150px) translateX(-10px) rotate(2deg);
        opacity: 0.5;
    }
}


/* Add enhanced fade-in animations for better visual hierarchy */
.intro-content {
    animation: fadeInLeft 1.2s ease-out;
}

.promo-slider-container {
    animation: fadeInRight 1.2s ease-out 0.4s backwards;
}

.menu-preview-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.menu-product-grid {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================
   Rang Mahal Style Overlay Sections - Redesigned to Match Reference
   =========================== */

.rang-overlay-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #f8f6f3;
}

.rang-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Full-width Background Image */
.rang-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.rang-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay Card - Positioned Over Image */
.rang-overlay-card {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 2.5rem 2.2rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

/* Card Positioning */
.position-left {
    margin-left: 8%;
    margin-right: auto;
}

.position-right {
    margin-left: auto;
    margin-right: 8%;
}

/* Card Color Schemes - Matching Reference Images */
.card-burnt-red {
    background-color: #a83e25; /* Deep burnt red from reference */
}

.card-gold {
    background-color: #998b4c; /* Olive gold from reference */
}

.card-green {
    background-color: #1a3c34; /* Deep forest green from reference */
}

.card-rust {
    background-color: #bf5930; /* Warm rust orange from reference */
}

.card-terracotta {
    background-color: #c4704a; /* Warm terracotta for artisanal gifts section */
}

/* Typography & Elements */
.rang-brand-logos {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    text-transform: lowercase;
    opacity: 0.9;
}

.brand-text {
    font-weight: 300;
}

.brand-divider {
    font-size: 1rem;
    opacity: 0.6;
    font-weight: 300;
}

.rang-star-accent {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0.8;
}

.rang-category-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: block;
    opacity: 0.9;
}

.rang-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.rang-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    color: #ffffff;
}

.rang-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    opacity: 0.9;
    color: #ffffff;
}

/* CTA Button Styling */
.rang-cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    background: transparent;
    margin-top: 0.5rem;
}

.rang-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Gift Card Feature Styling */
.gift-card-feature {
    margin: 1.2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gift-card-icon {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.gift-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.gift-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .rang-section {
        height: auto;
        min-height: 500px;
        padding: 3rem 0;
    }

    .rang-overlay-card {
        max-width: 90%;
        margin: 0 auto;
        padding: 2rem 1.8rem;
    }
    
    .position-left, .position-right {
        margin-left: auto;
        margin-right: auto;
    }

    .rang-heading {
        font-size: 1.6rem;
    }

    .rang-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .rang-section {
        min-height: 450px;
        padding: 2.5rem 0;
    }

    .rang-overlay-card {
        max-width: 95%;
        padding: 1.8rem 1.5rem;
    }

    .rang-heading {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .rang-description {
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
    }

    .rang-brand-logos {
        font-size: 0.65rem;
        margin-bottom: 1.2rem;
    }

    .rang-star-accent {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .rang-category-label {
        font-size: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .rang-cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.65rem;
    }
}

/* Landscape orientation improvements for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .intro-promo-section {
        padding: 2rem 0;
    }
    
    .intro-promo-section .section-container {
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        text-align: left;
    }
    
    .banner-card {
        padding: 2rem 1.5rem;
    }
    
    .banner-card-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .banner-card-text {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .promo-slider-container {
        height: 300px;
    }
}

/* High DPI/Retina display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .intro-content {
        border: 0.5px solid rgba(255, 255, 255, 0.1);
    }
    
    .section-label::after {
        height: 1.5px;
    }
}
/* Ensure promo slider visibility on all devices */
.promo-slider {
    display: block;
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.promo-slide {
    display: block;
    visibility: visible;
    width: 100%;
    height: 100%;
}

.promo-slide.active {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Mobile-specific fixes for promo slider */
@media (max-width: 768px) {
    .intro-promo-section {
        position: relative;
        overflow: visible !important;
        width: 100% !important;
    }
    
    .intro-promo-section .section-container {
        position: relative;
        overflow: visible !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .promo-slider-container {
        position: relative !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 300px !important;
        overflow: hidden !important;
        z-index: 10 !important;
    }
    
    .promo-slider {
        position: relative !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .promo-slide {
        position: absolute !important;
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }
    
    .promo-slide.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 2 !important;
    }
    
    .promo-slide img {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .slider-controls {
        position: absolute !important;
        display: flex !important;
        visibility: visible !important;
        z-index: 20 !important;
    }
    
   .slider-dots {
        bottom: 15px !important; /* Position properly above the bottom */
        gap: 6px !important;
    }

    .slider-dots .dot {
        width: 8px !important;       /* Small circle */
        height: 8px !important;
        min-width: 0 !important;     /* Override any potential minimums */
        min-height: 0 !important;
        border: 1px solid #fff !important;
        background: rgba(255,255,255,0.4) !important;
        padding: 0 !important;       /* Ensure no padding adds bulk */
    }

    .slider-dots .dot.active {
        width: 20px !important;      /* Small pill shape */
        background: #fff !important;
        border-radius: 10px !important;
    }

    /* Ensure the container doesn't feel "too big" vertically if that was implied */
    .promo-slider-container {
        height: 350px; /* Slight height reduction for better proportions */
        /* ... keep existing overrides ... */
    }
}
/* Emergency fallback for mobile slider visibility */
@media (max-width: 768px) {
    .promo-slider-container,
    .promo-slider,
    .promo-slide {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Ensure no elements are accidentally hidden */
.intro-promo-section * {
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .intro-promo-section {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .intro-promo-section .section-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .promo-slider-container {
        width: calc(100vw - 2rem) !important;
        max-width: calc(100vw - 2rem) !important;
        margin: 0 auto !important;
        left: 0 !important;
        right: 0 !important;
    }
}