:root {
    --primary-red: #C41E3A;
    --dark-red: #8B0000;
    --bright-red: #DC143C;
    --light-red: #FF6B6B;
    --red-accent: #FF4757;
    --cream-bg: #FFF5F5;
    --white: #FFFFFF;
    --text-dark: #2C1810;
    --dark-bg: #1A0000;
}

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

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #2a0002;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation - HIDDEN */
nav {
    display: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--light-red);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

/* Hero Background Video */
/* Full Section Video Player */
.hero-video-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
    background: #2a0002;
    /* Fallback background image until video loads */
    background-image: url('./images/fallback-hero-section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Unmute Button Overlay */
.unmute-button {
    position: absolute;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    display: flex !important;
    align-items: center;
    gap: 3px;
    padding: 5px 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 9px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
    box-shadow: none;
    pointer-events: auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.unmute-button:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: none;
    z-index: 1000;
    pointer-events: auto;
}

.unmute-button svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
}

.unmute-button.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Muted state - show button */
.hero-video-fullscreen[data-muted="true"] ~ .unmute-button {
    display: flex;
}

/* Unmuted state - keep button visible */
.hero-video-fullscreen[data-muted="false"] ~ .unmute-button {
    display: flex !important;
}

/* Dark black gradient overlay removed - no overlay on video */

/* Global Animated Background - Continuous across all sections */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: #2a0002;
}

/* Ensure background covers full document height */
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Animated Background Layers (for sections that need it) */
.animated-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Layer 1: Primary mesh gradient (red tones) */
    .page-background::before,
.animated-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    rgba(42, 0, 2, 0.8) 0%,
    rgba(58, 0, 4, 0.9) 50%,
    rgba(116, 0, 6, 0.6) 100%
    );
}

/* Layer 2: Secondary mesh gradient overlay (red) */
    .page-background::after,
.animated-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(225deg,
    rgba(42, 0, 2, 0.95) 0%,
    transparent 50%,
    rgba(116, 0, 6, 0.5) 100%
    );
}

/* Animated Diagonal Lines Pattern (45°) */
    .page-background .animated-grid-pattern,
.animated-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
    );
    background-size: 56.57px 56.57px;
    background-position: 0 0;
    animation: diagonal-move-45 20s linear infinite;
    z-index: 1;
}

/* Diagonal lines animation keyframes (45°) */
@keyframes diagonal-move-45 {
0% {
    background-position: 0 0;
}
100% {
    background-position: 56.57px 56.57px;
}
}

/* Animated Glowing Orbs (red tones) */
    .page-background .animated-orb,
.animated-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

/* Red orb - primary */
.orb-red-primary {
    width: 12rem;
    height: 12rem;
    background-color: rgba(196, 30, 58, 0.4);
}

/* Red orb - secondary */
.orb-red-secondary {
    width: 15rem;
    height: 15rem;
    background-color: rgba(139, 0, 0, 0.5);
}

/* Light red orb accent */
.orb-red-light {
    width: 20rem;
    height: 20rem;
    background-color: rgba(220, 20, 60, 0.3);
}

/* Float animation for orbs */
@keyframes float {
0%, 100% {
    transform: translateY(0) translateX(0);
}
33% {
    transform: translateY(-30px) translateX(20px);
}
66% {
    transform: translateY(30px) translateX(-20px);
}
}

/* Pulse glow animation (darker) */
@keyframes pulse-glow {
0%, 100% {
    opacity: 0.2;
    transform: scale(1);
}
50% {
    opacity: 0.4;
    transform: scale(1.1);
}
}

.pulse-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

        /* Small Glowing Dots */
        .glow-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
            box-shadow: 
                0 0 8px rgba(255, 255, 255, 0.8),
                0 0 15px rgba(255, 255, 255, 0.6),
                0 0 20px rgba(255, 255, 255, 0.4);
            animation: dot-pulse 3s ease-in-out infinite, dot-float 8s ease-in-out infinite;
            z-index: 1;
        }

@keyframes dot-pulse {
0%, 100% {
    opacity: 0.6;
    transform: scale(1);
}
50% {
    opacity: 1;
    transform: scale(1.3);
}
}

@keyframes dot-float {
0%, 100% {
    transform: translate(0, 0) scale(1);
}
25% {
    transform: translate(20px, -15px) scale(1);
}
50% {
    transform: translate(-15px, 20px) scale(1);
}
75% {
    transform: translate(15px, 15px) scale(1);
}
}

/* Varied sizes for dots */
.glow-dot-small {
    width: 3px;
    height: 3px;
}

.glow-dot-medium {
    width: 4px;
    height: 4px;
}

.glow-dot-large {
    width: 5px;
    height: 5px;
}

/* Pattern Option 1: Subtle Dots (Recommended - Most Versatile) */
/*
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}
*/

/* Pattern Option 3: Diagonal Lines (Dynamic) */
/*
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
    );
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}
*/

/* Pattern Option 4: Diamond Pattern (Modern Elegance) */
/*
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(212, 165, 116, 0.15) 35px,
    rgba(212, 165, 116, 0.15) 70px
    );
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}
*/

/* Pattern Option 5: Crosshatch (Classic Elegance) */
/*
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}
*/

/* Pattern Option 6: Hexagon Pattern (Contemporary) */
/*
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
    radial-gradient(circle at 0% 0%, rgba(212, 165, 116, 0.12) 2px, transparent 2px);
    background-size: 60px 60px, 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}
*/

/* No Pattern - Remove ::after completely to have no pattern overlay */

.hero-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 2rem;
}

picture {
    display: block;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

picture source {
    display: none;
}

.hero-image {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-bottom: 2rem;
    margin-top: 12rem;
    padding-top: 4rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(196, 30, 58, 0.6));
    animation: image-glow 3s ease-in-out infinite;
    /* Prevent layout shift */
    aspect-ratio: 819 / 762;
}

/* Video element styling */
.hero-image video,
video.hero-image {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-bottom: 2rem;
    margin-top: 12rem;
    padding-top: 4rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(196, 30, 58, 0.6));
    animation: image-glow 3s ease-in-out infinite;
    aspect-ratio: 819 / 762;
    /* Remove black background using screen blend mode */
    mix-blend-mode: screen;
    background: transparent;
}

/* Animated glow background for hero image */
.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(196, 30, 58, 0.4) 0%,
        rgba(116, 0, 6, 0.3) 30%,
        rgba(196, 30, 58, 0.2) 50%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(
        circle,
        rgba(255, 107, 107, 0.3) 0%,
        rgba(196, 30, 58, 0.2) 40%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: -2;
    animation: glow-pulse 3s ease-in-out infinite 1.5s;
    pointer-events: none;
}

@keyframes image-glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(196, 30, 58, 0.6)) drop-shadow(0 0 60px rgba(196, 30, 58, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(196, 30, 58, 0.8)) drop-shadow(0 0 80px rgba(255, 107, 107, 0.4));
    }
}

@keyframes glow-pulse {
0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
}
50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}
}

.hero-logo {
    max-width: 300px;
    width: auto;
    height: auto;
    display: block;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    margin-bottom: 2rem;
    position: relative;
    animation: logo-master 6s ease-in-out infinite;
    /* Prevent layout shift */
    aspect-ratio: 300 / 112;
    background: linear-gradient(135deg, rgba(116, 0, 6, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
}

/* Animated glow ring around logo */
.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
    circle,
    rgba(196, 30, 58, 0.4) 0%,
    rgba(116, 0, 6, 0.3) 40%,
    transparent 70%
    );
    border-radius: 50%;
    z-index: -1;
    animation: logo-ring-pulse 3s ease-in-out infinite;
}

.hero-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.3) 0%,
    rgba(196, 30, 58, 0.2) 50%,
    transparent 80%
    );
    border-radius: 50%;
    z-index: -2;
    animation: logo-ring-pulse 3s ease-in-out infinite 1.5s;
}

@keyframes logo-master {
0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 15px rgba(196, 30, 58, 0.4))
    drop-shadow(0 0 30px rgba(196, 30, 58, 0.2));
}
25% {
    transform: translateY(-8px) scale(1.03) rotate(1deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 25px rgba(196, 30, 58, 0.6))
    drop-shadow(0 0 40px rgba(255, 107, 107, 0.3));
}
50% {
    transform: translateY(-12px) scale(1.05) rotate(0deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 30px rgba(196, 30, 58, 0.8))
    drop-shadow(0 0 50px rgba(255, 107, 107, 0.4));
}
75% {
    transform: translateY(-8px) scale(1.03) rotate(-1deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 25px rgba(196, 30, 58, 0.6))
    drop-shadow(0 0 40px rgba(255, 107, 107, 0.3));
}
}

@keyframes logo-ring-pulse {
0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
}
50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
}
}

/* Modern Scroll Down Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-arrow img {
    width: 100px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.scroll-arrow:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.9));
}

.scroll-arrow svg {
    display: none;
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
}
40% {
    transform: translateX(-50%) translateY(-8px);
}
60% {
    transform: translateX(-50%) translateY(-4px);
}
}

/* Stylish Section Divider */

/* Form Section - Exact same as hero section */
.form-section {
    position: relative;
    min-height: auto;
    padding: 0.5rem 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.form-container {
    position: relative;
    max-width: 800px;
    width: 100%;
    z-index: 2;
    background: transparent !important;
    border-radius: 0;
    padding: 0 2rem;
    overflow: visible;
    border: none;
    box-shadow: none;
}

.form-wrapper {
    background: transparent !important;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
    position: relative;
    z-index: 2;
    margin: 0;
}

.form-section iframe {
    width: 100%;
    min-height: 603px;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    display: block;
    margin: 0;
    padding: 0;
}

/* Phone Number - Side of Map */
.form-phone {
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-phone a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    border: 2px solid rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-phone a:hover {
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    border-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.form-phone a::before {
    content: '📞';
    font-size: 1.5rem;
}

        /* Dishes Carousel Section */
        .dishes-carousel-section {
            position: relative;
            min-height: auto;
            padding: 0.5rem 0;
            background: transparent;
            overflow: hidden;
            z-index: 1;
        }
        
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin: 0 auto;
        }
        
        .carousel-track {
            display: flex;
            animation: carousel-scroll 30s linear infinite;
            gap: 1.5rem;
            will-change: transform;
        }
        
        .carousel-slide {
            flex: 0 0 auto;
            width: 300px;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .carousel-slide:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .carousel-slide:hover img {
            transform: scale(1.1);
        }
        
        @keyframes carousel-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Pause animation on hover */
        .carousel-container:hover .carousel-track {
            animation-play-state: paused;
        }
        
        /* Map Section - Exact same as hero and form sections */
        .map-section {
    position: relative;
    min-height: auto;
    padding: 0.5rem 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.map-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    padding: 0 2rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 360px; /* Fixed height */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    opacity: 0.95;
}

.map-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

    .hero h1,
    .hero p,
.cta-button {
    display: none;
}

/* Sections */
section {
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

        /* Benefits Section */
        .benefits {
            background: var(--cream-bg);
            /* Clean subtle dots pattern */
            background-image: 
                radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
            background-size: 40px 40px;
        }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-brown);
}

    .form-group input,
    .form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.8);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 1));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-alert {
    display: none;
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

.success-alert.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
from {
    opacity: 0;
    transform: translateY(-10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

        /* Locations Section */
        .locations {
            background: var(--cream-bg);
            /* Clean crosshatch pattern */
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
        }

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.location-card h3 {
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 1rem;
}

.location-card p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.location-card a {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    font-weight: 600;
}

.location-card a:hover {
    text-decoration: underline;
}

/* Map Section */
/* ========================================
    MAP CUSTOMIZATION REQUIRED
    ========================================
    To display your restaurant location:

    Option 1: Google Maps Embed (Recommended)
    - Visit: https://www.google.com/maps
    - Search your address
    - Click "Share" → "Embed a map"
    - Copy iframe and replace below

    Option 2: Custom Coordinates
    - Replace: lat=40.7484 lng=-74.0042
    - With your coordinates
    ========================================== */

.map-container {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 1));
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    /* Subtle diagonal pattern */
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(0, 0, 0, 0.1) 30px,
            rgba(0, 0, 0, 0.1) 60px
        );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
/* Tablet view */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero-content {
        padding: 0 !important;
        margin: 0 !important;
        padding-bottom: 1rem !important;
    }
}

/* Mobile view */
@media (max-width: 768px) {
/* Ensure background patterns are visible on mobile */
.page-background {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.page-background::before,
.page-background::after {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    content: '' !important;
}

.animated-grid-pattern {
    display: block !important;
    visibility: visible !important;
    opacity: 0.3 !important;
    z-index: 1 !important;
    position: absolute !important;
}

.animated-orb {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
    position: absolute !important;
}

.glow-dot {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2 !important;
    position: absolute !important;
}

/* Ensure hero video is behind patterns */
.hero-background-video {
    z-index: -1 !important;
}

.hero h1 {
    font-size: 2.5rem;
}

.nav-links {
    display: none;
}


.form-row {
    grid-template-columns: 1fr;
}

.hero {
    background-attachment: scroll;
    min-height: 50vh !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-content {
    height: 50vh !important;
    min-height: 50vh !important;
    padding: 0 !important;
    margin: 0 !important;
    padding-bottom: 1rem !important;
    justify-content: flex-end !important;
}

.unmute-button {
    bottom: 80px !important;
    right: 20px !important;
    padding: 4px 7px !important;
    font-size: 8px !important;
    gap: 3px !important;
}

.unmute-button svg {
    width: 11px !important;
    height: 11px !important;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
    /* Force video to play on mobile */
    -webkit-playsinline: true;
    playsinline: true;
    /* Optimize for mobile */
    will-change: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Ensure video doesn't block background patterns */
    mix-blend-mode: normal;
}

/* No overlay on mobile */

.hero-content {
    padding-bottom: 1rem;
    justify-content: flex-end !important;
}

picture {
    display: block !important;
    width: 100% !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 2;
}

picture source {
    display: none;
}

.hero-image {
    max-width: 100% !important;
    max-height: 70vh !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    margin-bottom: 1.5rem;
    margin-top: 8rem;
    padding-top: 3rem;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Video element mobile styling */
.hero-image video,
video.hero-image {
    max-width: 100% !important;
    max-height: 70vh !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    margin-bottom: 1.5rem;
    margin-top: 8rem;
    padding-top: 3rem;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-logo {
    max-width: 250px;
    margin-bottom: 1rem !important;
}

.scroll-arrow {
    position: absolute !important;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.scroll-arrow img {
    width: 80px;
    height: auto;
}

.form-section {
    padding: 0.5rem 0;
}

.dishes-carousel-section {
    padding: 0.5rem 0;
}

.carousel-slide {
    width: 250px;
    height: 320px;
}

.carousel-track {
    gap: 1rem;
}

.form-container {
    padding: 0 1rem;
}

.form-section iframe {
    min-height: 500px;
}

.form-phone {
    margin-bottom: 0;
}

.form-phone a {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    width: 100%;
    justify-content: center;
}

.map-section {
    padding: 0.5rem 0;
}

.map-container {
    padding: 0 1rem;
    height: 360px !important;
}

.map-wrapper {
    height: 360px !important;
}