/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-orange: #f97316;
    --accent-red: #ef4444;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --white: #ffffff;
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 50%, rgba(249, 115, 22, 0.7) 100%);
    --button-gradient: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    --accent-gradient: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    --overlay-gradient: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.6) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* Typography - Titles with spray paint style */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.page-title,
.footer h4,
.info-card h3,
.feature-content h3,
.story-chapter h3,
.contact-card-main h3,
.menu-features h3 {
    font-family: 'Permanent Marker', cursive !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation Styles */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    -webkit-animation: fadeInDown 0.8s ease-out forwards;
    animation: fadeInDown 0.8s ease-out forwards;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--button-gradient);
    opacity: 0.8;
    animation: gradient-flow 3s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* Fixed height for consistency */
}

/* Header Logo */
.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
}

.header-logo {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}



.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 0.6rem;
    position: absolute;
    right: 2rem;
    z-index: 11;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--secondary-blue);
}

.hamburger {
    width: 22px;
    height: 2.5px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    position: relative;
}

.mobile-menu-toggle.active .hamburger {
    background: var(--secondary-blue);
}

.mobile-menu-toggle.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--secondary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Hide Order Now mobile button on desktop */
.order-now-mobile {
    display: none;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    opacity: 0;
    animation: fadeInItem 0.6s ease-out forwards;
}

.nav-menu li:nth-child(1) a { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) a { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) a { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) a { animation-delay: 0.4s; }

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

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-gradient);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover::before,
.nav-menu a:focus::before {
    opacity: 0.1;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--secondary-blue);
    transform: translateY(-1px);
}

/* Order Now Button in Navigation */
.order-now-nav {
    background: var(--button-gradient);
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.order-now-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    color: white !important;
}

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

.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e293b; /* Dark fallback color */
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.welcome-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    -webkit-animation: titleFadeInUp 0.8s ease-out 0.4s forwards;
    animation: titleFadeInUp 0.8s ease-out 0.4s forwards;
}

.welcome-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.welcome-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(180deg, #1e293b 0%, #334155 100%);
    position: relative;
}

.about-preview-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-content-centered {
    margin: 0 auto;
}

/* Welcome & About Combined Section */
.welcome-about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.welcome-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.welcome-about-container .content-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hero Section Title Animation */
.hero-container h1,
.hero-container h2 {
    opacity: 0;
    -webkit-animation: titleFadeInUp 1s ease-out 0.6s forwards;
    animation: titleFadeInUp 1s ease-out 0.6s forwards;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.learn-more-link {
    display: inline-block;
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.learn-more-link:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* Background removed to show video */
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #1e293b; /* Fallback color */
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%) scale(1.2);
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -moz-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    opacity: 1;
    visibility: visible;
    pointer-events: none; /* Prevent interaction */
    z-index: -1; /* Ensure it's behind everything */
    will-change: transform; /* Force GPU acceleration */
    -webkit-backface-visibility: hidden; /* Chrome performance fix */
    backface-visibility: hidden;
}

/* Bluish Glass Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.7) 0%,
        rgba(30, 41, 59, 0.5) 25%,
        rgba(59, 130, 246, 0.15) 50%,
        rgba(30, 41, 59, 0.5) 75%,
        rgba(15, 23, 42, 0.7) 100%
    );
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 3;
}

.info-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 6px 8px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.25),
        0 24px 48px rgba(0, 0, 0, 0.35),
        0 20px 40px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.info-icon {
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.info-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
}

/* Inline icons for contact page */
.inline-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    stroke: var(--white);
}

/* Small text utility */
.text-sm {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 1rem 0;
}

.highlight a {
    color: var(--white);
    text-decoration: none;
}

.directions-link,
.contact-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--button-gradient);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.directions-link:hover,
.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Align to top to avoid white space */
    filter: brightness(0.9);
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* CTA Buttons (updated) */
.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--button-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Hero Logo */
.hero-logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    -webkit-animation: heroLogoFadeIn 1.2s ease-out 0.3s forwards;
    animation: heroLogoFadeIn 1.2s ease-out 0.3s forwards;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 900px;
    height: auto;
    max-width: 90vw;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.hero-logo:hover {
    transform: scale(1.03);
}

@-webkit-keyframes heroLogoFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translate(-50%, -40%);
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

@keyframes heroLogoFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translate(-50%, -40%);
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}



/* Removed old animation - now using specific animations for each element */

/* Footer */
.footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    margin-bottom: 3rem;
}

.footer-mascots {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-mascot {
    width: 80px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-mascot:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: var(--secondary-blue);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-tagline {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
}

.footer-phone a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: var(--secondary-blue);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Family Section */
.family-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e5e7eb 30%, #ddd6fe 70%, #c7d2fe 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -60px;
    z-index: 5;
    position: relative;
}

.family-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.family-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

.family-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.family-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    text-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
    letter-spacing: -1px;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    justify-items: center;
}

.family-member {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.family-member:nth-child(1) { animation-delay: 0.2s; }
.family-member:nth-child(2) { animation-delay: 0.3s; }
.family-member:nth-child(3) { animation-delay: 0.4s; }
.family-member:nth-child(4) { animation-delay: 0.5s; }

.family-card {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 15px rgba(0, 0, 0, 0.1),
        0 20px 25px rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    margin: 0 auto;
}

.family-card:hover {
    transform: translateY(-20px) scale(1.05) rotateZ(-2deg);
    box-shadow: 
        0 8px 12px rgba(0, 0, 0, 0.1),
        0 20px 30px rgba(0, 0, 0, 0.15),
        0 30px 50px rgba(59, 130, 246, 0.25);
    filter: brightness(1.05);
    border-color: rgba(59, 130, 246, 0.5);
}

.member-name {
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.8s forwards;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
}

.member-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.family-member:hover .member-name {
    transform: scale(1.1);
}

.family-member:hover .member-name::after {
    transform: translateX(-50%) scaleX(1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 1400px) {
    .family-grid {
        gap: 2.5rem;
    }
    
    .family-card {
        max-width: 250px;
    }
}

@media (max-width: 1024px) {
    .family-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .family-card {
        max-width: 240px;
    }
    
    /* Stack features on tablets */
    .features-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    /* Video background mobile optimization */
    .video-background video {
        transform: translate(-50%, -50%) scale(1.5); /* Crop more on mobile for better focus */
    }
    
    /* Menu video mobile optimization */
    .menu-section .video-background video {
        transform: translate(-50%, -50%) scale(1.2); /* Less scaling for menu video */
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
        height: 60px;
    }
    
    .header-logo {
        height: 50px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        right: 1rem;
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }
    
    /* Section Padding Mobile */
    .welcome-about-section,
    .info-section,
    .features-section,
    .story-section,
    .contact-section,
    .menu-section {
        padding: 60px 0;
    }
    
    .about-preview-container {
        padding: 0 1rem;
    }
    
    .welcome-about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-mascots {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-mascot {
        width: 60px;
        height: 60px;
    }
    
    .features-container {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .feature-item {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: none;
        padding: 0 1rem;
    }
    
    .feature-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        height: 250px;
    }
    
    /* Fix image cutoff on mobile */
    .feature-img {
        object-fit: contain;
        background-color: #f5f3f0; /* Match the section background */
    }
    
    .feature-content {
        text-align: center;
        width: 100%;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature-content.content-box {
        padding: 2rem 1.5rem;
    }
    
    .menu-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-image-wrapper {
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .menu-features h3 {
        font-size: 1.5rem;
    }
    
    .menu-features p {
        font-size: 0.95rem;
    }
    
    .menu-order-section {
        margin-top: 2rem;
    }
    
    .menu-order-btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        width: 90%;
        max-width: 300px;
    }
    
    /* Order Now Nav Mobile */
    .order-now-nav {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-left: 0;
    }
    

    
    .coming-soon-banner {
        padding: 1rem 0;
    }
    
    .coming-soon-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
        .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: linear-gradient(180deg, 
            rgba(15, 23, 42, 0.98) 0%, 
            rgba(30, 41, 59, 0.98) 50%,
            rgba(15, 23, 42, 0.98) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
        z-index: 999;
        overflow-y: auto;
        left: auto;
        transform: none;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--secondary-blue) 50%, 
            transparent 100%);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 90%;
        max-width: 400px;
        margin: 0.25rem 0;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.3rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 15px;
        color: rgba(255, 255, 255, 0.95);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        background: linear-gradient(145deg, 
            rgba(30, 41, 59, 0.6) 0%, 
            rgba(15, 23, 42, 0.6) 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(59, 130, 246, 0.3) 50%, 
            transparent 100%);
        transition: left 0.5s ease;
    }
    
    .nav-menu a:hover::before,
    .nav-menu a:focus::before {
        left: 100%;
    }
    
    .nav-menu a:hover,
    .nav-menu a:focus {
        color: var(--secondary-blue);
        background: linear-gradient(145deg, 
            rgba(30, 41, 59, 0.8) 0%, 
            rgba(59, 130, 246, 0.2) 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        border-color: var(--secondary-blue);
    }
    
    /* Show Order Now mobile button on mobile */
    .order-now-mobile {
        display: block !important;
    }
    
    /* Order Now button in mobile menu */
    .nav-menu .order-now-mobile {
        width: 100%;
        margin: 0;
        padding: 0 1rem;
        order: -1; /* Ensures it stays at top */
    }
    
    .nav-menu .order-now-mobile a {
        background: var(--button-gradient);
        color: white !important;
        font-weight: 700;
        border: none;
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
        text-align: center;
        padding: 1.5rem 2rem;
        font-size: 1.4rem;
        border-radius: 20px;
        margin-bottom: 0.5rem;
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu .order-now-mobile a:hover {
        /* Disabled - no hover effect */
        transform: none;
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    }

    
    .hero-logo {
        width: 400px;
        max-width: 85vw;
    }
    
    .hero-logo-wrapper {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* Mobile Typography */
    h1, .hero-title {
        font-size: 2rem;
    }
    
    h2, .section-title, .page-title {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Content Box Mobile */
    .content-box {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    /* Welcome Section Mobile */
    .welcome-text {
        font-size: 1rem;
    }
    
    /* Info Cards Mobile */
    .info-icon {
        font-size: 2.5rem;
    }
    
    /* Feature Section - Already defined in 768px query */
    
    /* Hero Sections Mobile */
    .page-hero {
        min-height: 300px;
        margin-top: 60px;
    }
    
    .page-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding-top: 40px;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-logo-section {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        max-width: 150px;
        margin-bottom: 0.5rem;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
    }
    
    .footer-order-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .footer-section h4 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
    }
    
    .footer-phone {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }
    
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-background {
        object-fit: cover;
        object-position: center;
    }
    
    .family-section {
        padding: 60px 0;
        margin-top: -30px;
        min-height: auto;
    }
    
    .family-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .family-grid {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
    
    .family-card {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem;
        height: 55px;
    }
    
    .header-logo {
        height: 45px;
    }

    
    .coming-soon-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .mobile-menu-toggle {
        right: 0.5rem;
        width: 38px;
        height: 38px;
        padding: 0.4rem;
    }
    
    .hamburger {
        width: 20px;
        height: 2px;
        margin: 2.5px 0;
    }
    
    /* Update hero logo for small screens */
    .hero-logo {
        width: 350px;
        max-width: 90vw;
    }
    
    .hero-logo-wrapper {
        top: 50%;
    }
    
    /* Extra Small Mobile Typography */
    h1, .hero-title {
        font-size: 1.75rem;
    }
    
    h2, .section-title, .page-title {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.15rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    /* Content Box Extra Small */
    .content-box {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    /* Buttons Extra Small */
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .welcome-buttons {
        gap: 0.75rem;
        flex-direction: column;
        width: 100%;
    }
    
    .welcome-buttons .cta-button {
        width: 100%;
        text-align: center;
    }
    
    /* Info Cards Extra Small */
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    /* Footer Extra Small */
    .footer {
        padding-top: 30px;
    }
    
    .footer-mascots {
        padding: 1.5rem 0;
        gap: 0.75rem;
    }
    
    .footer-mascot {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        border-width: 1px;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-phone {
        font-size: 1rem;
    }
    
    .footer-phone a {
        display: inline-block;
        padding: 0.5rem 0;
    }
    
    .footer-section h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-order-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        font-size: 0.8rem;
    }
    
    /* Features Section Extra Small */
    .features-section {
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    .features-container {
        gap: 2.5rem;
        grid-template-columns: 1fr !important;
        padding: 0 0.5rem;
    }
    
    .feature-item {
        flex-direction: column !important;
        text-align: center;
        width: 100%;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .feature-image {
        max-width: calc(100% - 1rem);
        width: calc(100% - 1rem);
        height: 200px;
        margin: 0 auto;
    }
    
    /* Fix image cutoff on small mobile */
    .feature-img {
        object-fit: contain;
        background-color: #f5f3f0; /* Match the section background */
    }
    
    .feature-content {
        width: 100%;
    }
    
    .feature-content.content-box {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .feature-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Story Section Mobile */
    .story-section {
        padding: 40px 0;
    }
    
    .story-container {
        padding: 0 1rem;
    }
    
    .story-intro {
        margin-bottom: 2rem;
    }
    
    .lead-text {
        font-size: 1.25rem;
        line-height: 1.6;
    }
    
    .story-chapter {
        margin-bottom: 2rem;
    }
    
    .story-chapter h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-left: 0.75rem;
    }
    
    .story-chapter h2::before {
        width: 3px;
    }
    
    .story-chapter p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
        margin: 1.5rem 0;
    }
    
    .story-chapter .content-box {
        padding: 1.5rem 1rem;
    }
    
    /* Contact Card Mobile */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-card-main {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .contact-card-left,
    .contact-card-right {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form-group label {
        font-size: 0.9rem;
    }
    
    .contact-form-group input,
    .contact-form-group textarea {
        font-size: 16px;
        padding: 0.75rem;
    }
    
    .map-placeholder {
        height: 200px;
        margin-top: 1.5rem;
    }
    
    /* Menu Section Mobile */
    .menu-section {
        padding: 40px 0;
    }
    
    .menu-container {
        padding: 0 1rem;
    }
    
    .menu-image-wrapper {
        max-width: 100%;
        margin: 0 auto 1.5rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .menu-features {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .menu-features .content-box {
        padding: 1.5rem 1rem;
    }
    
    .menu-features h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .menu-features p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .menu-order-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
    }
    
    /* Page Hero Extra Small */
    .page-hero {
        min-height: 250px;
        margin-top: 55px;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Section Padding Extra Small */
    .welcome-about-section,
    .info-section,
    .features-section,
    .story-section,
    .contact-section,
    .menu-section {
        padding: 40px 0;
    }
}

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    margin-top: 70px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* About Hero Specific */
.about-hero {
    background-image: url('Bagels and family.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Contact Hero Specific */
.contact-hero {
    background-image: url('Traditions.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.menu-hero {
    background-image: url('BBSBAnner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.page-hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    opacity: 0;
    -webkit-animation: fadeInUp 0.8s ease-out 0.3s forwards;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.page-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-animation: titleFadeInUp 0.8s ease-out 0.3s forwards;
    animation: titleFadeInUp 0.8s ease-out 0.3s forwards;
}

.page-subtitle {
    font-size: 1.5rem;
    color: white;
    opacity: 0;
    font-style: italic;
    -webkit-animation: titleFadeInUp 0.8s ease-out 0.5s forwards;
    animation: titleFadeInUp 0.8s ease-out 0.5s forwards;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 500;
}

.story-chapter {
    margin-bottom: 4rem;
}

.story-chapter h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.story-chapter h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
}

.story-chapter p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-blue);
    text-align: center;
    margin: 2rem 0;
}

.signature {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 3rem;
    color: var(--white);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-card-main {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-card-left {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card-left > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-info-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.map-link, .phone-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.map-link:hover, .phone-link:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

.contact-card-right {
    padding: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
    color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-button {
    background: var(--button-gradient);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.map-section {
    margin-top: 80px;
}

.map-section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder iframe {
    border-radius: 20px;
}

@media (max-width: 968px) {
    .contact-card-main {
        grid-template-columns: 1fr;
    }
    
    .contact-card-left {
        padding: 3rem;
        border-radius: 20px 20px 0 0;
    }
    
    .contact-card-right {
        padding: 3rem;
        border-radius: 0 0 20px 20px;
    }
    
    .contact-form-group input,
    .contact-form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    /* Background removed to show video */
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

/* Menu Section Video Background */
.menu-section .video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #1e293b; /* Fallback color */
}

.menu-section .video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Menu Section Video Overlay */
.menu-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.8) 0%,
        rgba(30, 41, 59, 0.6) 25%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(30, 41, 59, 0.6) 75%,
        rgba(15, 23, 42, 0.8) 100%
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2;
}

.menu-image-wrapper {
    margin-bottom: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.menu-img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.menu-features .content-box {
    text-align: center;
}

.menu-features h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.menu-features p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.menu-features a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
}

.menu-features a:hover {
    color: var(--primary-blue);
}

/* Menu Order Section */
.menu-order-section {
    text-align: center;
    margin-top: 3rem;
}

.menu-order-btn {
    display: inline-block;
    background: var(--button-gradient);
    color: white !important;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.menu-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.menu-coming-soon {
    text-align: center;
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-coming-soon h2 {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
}

.menu-coming-soon > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.menu-info {
    background: rgba(15, 23, 42, 0.5);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.menu-info ul {
    list-style: none;
    padding: 0;
}

.menu-info li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.menu-info li::before {
    content: '🥯';
    position: absolute;
    left: 0;
}

/* Content Box Styles */
.content-box {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-box:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 8px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.25),
        0 24px 48px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.content-box-light {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    height: 320px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.feature-image:hover .feature-img {
    transform: scale(1.05);
}

.feature-content {
    width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-content.content-box {
    min-height: 200px;
    padding: 2.5rem;
}

.feature-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0 !important;
    -webkit-transform: translateY(40px) !important;
    -moz-transform: translateY(40px) !important;
    transform: translateY(40px) !important;
    -webkit-transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    -moz-transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.scroll-reveal.revealed {
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    transform: translateY(0) !important;
}

.scroll-reveal-left {
    opacity: 0 !important;
    transform: translateX(-60px) !important;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.scroll-reveal-left.revealed {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.scroll-reveal-right {
    opacity: 0 !important;
    transform: translateX(60px) !important;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.scroll-reveal-right.revealed {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.scroll-scale {
    opacity: 0 !important;
    -webkit-transform: scale(0.85) !important;
    transform: scale(0.85) !important;
    -webkit-transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.scroll-scale.revealed {
    opacity: 1 !important;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}

/* Staggered animations */
.stagger-delay-1 { transition-delay: 0.1s !important; }
.stagger-delay-2 { transition-delay: 0.2s !important; }
.stagger-delay-3 { transition-delay: 0.3s !important; }
.stagger-delay-4 { transition-delay: 0.4s !important; }

/* Page Load Animations */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes titleFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes titleFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Apply entrance animations */



/* Footer Order Button */
.footer-order-btn {
    display: inline-block;
    background: var(--button-gradient);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.footer-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Footer mascot animations */
.footer-mascot {
    transition: transform 0.3s ease;
    opacity: 0;
    -webkit-animation: fadeInUp 0.6s ease-out forwards;
    animation: fadeInUp 0.6s ease-out forwards;
}

.footer-mascot:nth-child(1) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.footer-mascot:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.footer-mascot:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.footer-mascot:nth-child(4) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.footer-mascot:hover {
    transform: translateY(-5px);
}



/* Accessibility */
*:focus {
    outline: 2px solid var(--secondary-blue);
    outline-offset: 2px;
}

/* Reduce motion for video background */
@media (prefers-reduced-motion: reduce) {
    .video-background video {
        display: none;
    }
    
    .video-overlay {
        background: linear-gradient(180deg, rgba(51, 65, 85, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    }
}

/* Chrome-specific fixes */
@supports (-webkit-appearance: none) {
    .video-background video {
        transform: translate3d(-50%, -50%, 0) scale(1.2);
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1.2);
    }
    
    .scroll-reveal,
    .scroll-scale,
    .scroll-reveal-left,
    .scroll-reveal-right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
}

/* Chrome browser specific */
body.chrome .video-background video {
    transform: translate3d(-50%, -50%, 0) scale(1.2) !important;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.2) !important;
    will-change: auto !important; /* Chrome sometimes has issues with will-change */
}

body.chrome .scroll-reveal,
body.chrome .scroll-scale {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Chrome menu video specific */
body.chrome .menu-section .video-background video {
    transform: translate3d(-50%, -50%, 0) !important;
    -webkit-transform: translate3d(-50%, -50%, 0) !important;
}

/* Coming Soon Tape Overlay - COMMENTED OUT TO REACTIVATE BUTTONS
.order-now-nav,
.menu-order-btn,
.footer-order-btn {
    position: relative;
    overflow: hidden;
    cursor: not-allowed !important;
    opacity: 0.7;
    pointer-events: all;
    transition: opacity 0.3s ease;
}
*/

/* Hover effect for disabled buttons - COMMENTED OUT
.order-now-nav:hover,
.menu-order-btn:hover,
.footer-order-btn:hover {
    opacity: 0.85;
}
*/

/*
.order-now-nav:hover::after,
.menu-order-btn:hover::after,
.footer-order-btn:hover::after {
    animation-duration: 0.5s;
}
*/

/* Coming Soon Tape - COMMENTED OUT
.order-now-nav::after,
.menu-order-btn::after,
.footer-order-btn::after {
    content: 'COMING SOON';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(185, 28, 28, 0.95) 100%);
    color: white;
    padding: 8px 120px;
    font-weight: 900;
    font-size: 0.85em;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 10;
    font-family: 'Permanent Marker', cursive;
    animation: tapePulse 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
*/

/*
@keyframes tapePulse {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-20deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(-20deg) scale(1.05);
    }
}
*/

/* Footer button specific - COMMENTED OUT
.footer-order-btn {
    overflow: visible !important;
}
*/

/* Menu page button specific - COMMENTED OUT
.menu-order-btn {
    overflow: visible !important;
    margin-bottom: 2rem;
}
*/

/* Mobile adjustments for tape - COMMENTED OUT
@media (max-width: 768px) {
    .order-now-nav::after,
    .menu-order-btn::after,
    .footer-order-btn::after {
        font-size: 0.65em;
        padding: 3px 50px;
        transform: translate(-50%, -50%) rotate(-15deg);
        letter-spacing: 2px;
    }
    
    .nav-menu .order-now-nav::after {
        padding: 4px 80px;
    }
    
    @keyframes tapePulse {
        0%, 100% {
            transform: translate(-50%, -50%) rotate(-15deg) scale(1);
        }
        50% {
            transform: translate(-50%, -50%) rotate(-15deg) scale(1.03);
        }
    }
}
*/

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
