/*
==============================================================================
SECTIONS.CSS - Main Page Section Styles
==============================================================================

This file contains all main page section styles for Hollywood Snack Shack:
- Hero Section (branding, actions, promo card)
- Menu Section (menu grid, categories)
- About Section (story cards, community love)
- Reviews Section (testimonials, ratings)
- Contact Section (contact cards, hours, map)
- Map Section (Google Maps integration)
- Video Section (embedded video content)

Mobile-first responsive design with CSS custom properties for theming.
*/

/* ===== EXTRAS SECTION ===== */

.extras {
    padding: 40px 15px;
    background: linear-gradient(135deg, var(--cream) 0%, #f8fdf4 100%);
    position: relative;
    overflow: hidden;
}

.extras::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 150px;
    background-image: url('../Assets/Images/deli-counter-essentials.jpg');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.extras::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%234a7c23" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%237fb069" opacity="0.1"/><circle cx="60" cy="80" r="2.5" fill="%232d5016" opacity="0.05"/></svg>');
    pointer-events: none;
}

.extras .container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.extras .section-title {
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    position: relative;
}

.extras .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--light-green));
    border-radius: 2px;
}

.extras-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-style: italic;
}

.extras-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
    max-width: 100%;
    width: 100%;
}

/* Mobile layout - show by default */
.extras-mobile-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

/* Desktop layout - hidden by default */
.extras-combined-container {
    display: none;
}

/* Tablet and Desktop responsive styles for Extras */
@media (min-width: 768px) {
    .extras {
        padding: 60px 30px;
    }

    .extras .section-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .extras-subtitle {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }

    .extras-content {
        gap: 30px;
    }

    .extras-mobile-layout {
        flex-direction: row;
        gap: 30px;
    }


    @media (min-width: 1024px) {
        .extras {
            padding: 80px 40px;
        }

        .extras .section-title {
            font-size: 2.8rem;
            margin-bottom: 25px;
        }

        .extras-subtitle {
            font-size: 1.3rem;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .extras-content {
            max-width: 1000px;
            margin: 0 auto;
            gap: 40px;
        }

        .extras-mobile-layout {
            display: none;
        }

        .extras-combined-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 25px;
            background: var(--warm-white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            border: 1px solid rgba(45, 80, 22, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .extras-combined-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(45, 80, 22, 0.02), rgba(74, 124, 35, 0.02));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .extras-combined-container:hover::before {
            opacity: 1;
        }

        .extras-combined-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
        }

        .extras-combined-container .dressings,
        .extras-combined-container .add-ons {
            background: transparent;
            box-shadow: none;
            padding: 20px;
        }

        .extras .section-title {
            font-size: 3.2rem;
            margin-bottom: 30px;
        }

        .extras-subtitle {
            font-size: 1.4rem;
            margin-bottom: 80px;
            max-width: 700px;
        }

        .extras-content {
            max-width: 1200px;
            gap: 50px;
        }

        .extras-combined-container {
            max-width: 1200px;
            gap: 50px;
            padding: 40px;
        }
    }

    @media (min-width: 1400px) {
        .extras {
            padding: 80px 60px;
        }

        .extras .section-title {
            font-size: 2.8rem;
        }

        .extras-content {
            max-width: 1400px;
            gap: 0;
        }

        .extras-combined-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            padding: 50px;
        }
    }

    /* ===== HERO SECTION ===== */

    /* Enhanced Hero Section with Modern Responsive Design */
    .hero-section {
        padding: clamp(100px, 15vh, 140px) clamp(15px, 4vw, 30px) clamp(40px, 6vh, 60px);
        background: linear-gradient(135deg, var(--warm-white) 0%, rgba(0, 84, 164, 0.25) 25%, rgba(0, 56, 118, 0.35) 50%, rgba(197, 165, 114, 0.15) 75%, var(--warm-white) 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        min-height: clamp(60vh, 75vh, 80vh);
        width: 100%;
        /* Performance optimizations */
        contain: layout style paint;
        will-change: scroll-position;
        transform: translateZ(0);
        /* Hardware acceleration */
        contain-intrinsic-size: 0 600px;
    }

    .hero-container {
        max-width: min(1400px, 95vw);
        width: 100%;
        position: relative;
        z-index: 2;
        animation: heroFadeInUp 1s ease-out 0.3s both;
        /* Performance optimizations */
        contain: layout;
        transform: translateZ(0);
        /* Hardware acceleration */
    }

    @keyframes heroFadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 50px);
        width: 100%;
        align-items: center;
        /* Performance optimizations */
        contain: layout;
        transform: translateZ(0);
        /* Hardware acceleration */
    }

    /* Left side: Text content */
    .hero-text-content {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 2.8vw, 32px);
        text-align: center;
        order: 2;
        /* Performance optimizations */
        contain: layout style;
        will-change: transform;
        /* Add better spacing for desktop */
        max-width: 650px;
        justify-content: center;
    }

    /* Right side: Image content */
    .hero-image-content {
        display: flex;
        justify-content: center;
        align-items: center;
        order: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        /* Performance optimizations */
        contain: layout;
        will-change: transform;
    }

    /* Hero Branding Section */
    .hero-text-content .hero-branding {
        margin-bottom: 0;
        margin-top: 0;
    }

    .hero-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(15px, 3vw, 20px);
        margin-bottom: clamp(10px, 2vw, 15px);
        flex-wrap: wrap;
    }

    .hero-snack-logo {
        width: clamp(60px, 8vw, 90px);
        height: clamp(60px, 8vw, 90px);
        object-fit: contain;
        filter: drop-shadow(0 4px 12px rgba(45, 80, 22, 0.3));
        transition: transform 0.3s ease;
    }

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

    .hero-tagline {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .primary-text {
        font-family: 'Fredoka', sans-serif;
        font-size: clamp(1.3rem, 4vw, 1.9rem);
        font-weight: 600;
        color: var(--primary-green);
        text-shadow: 0 2px 4px rgba(45, 80, 22, 0.15);
        white-space: normal;
        overflow-wrap: break-word;
        line-height: 1.3;
        max-width: 100%;
    }

    /* For tablet sizes where awkward breaking occurs, use a slightly smaller font and allow controlled breaking */
    @media (min-width: 768px) and (max-width: 1023px) {
        .primary-text {
            font-size: clamp(1.2rem, 3.5vw, 1.6rem);
            white-space: normal;
            text-align: left;
            max-width: 100%;
            margin: 0;
            line-height: 1.4;
        }
    }

    /* For larger desktop screens, allow normal wrapping with plenty of space */
    @media (min-width: 1200px) {
        .primary-text {
            font-size: 1.9rem;
            white-space: normal;
            text-align: left;
            max-width: 550px;
        }
    }

    .secondary-text {
        font-family: 'Inter', sans-serif;
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        font-weight: 500;
        color: var(--text-medium);
        text-shadow: 0 2px 4px rgba(45, 80, 22, 0.1);
    }

    /* Hero Description Section */
    .hero-description {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2.5vw, 22px);
        margin-bottom: clamp(10px, 2vw, 15px);
    }

    .hero-title {
        font-family: 'Fredoka', sans-serif;
        font-size: clamp(1.9rem, 5vw, 2.8rem);
        font-weight: 700;
        color: var(--primary-green);
        line-height: 1.25;
        margin: 0;
        text-shadow: 0 3px 6px rgba(45, 80, 22, 0.15);
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: clamp(1rem, 2.5vw, 1.15rem);
        font-weight: 400;
        color: var(--text-medium);
        line-height: 1.65;
        margin: 0;
        text-shadow: 0 2px 4px rgba(45, 80, 22, 0.08);
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: clamp(12px, 2vw, 15px);
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Promo Card Section */
    .promo-decorations {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 1;
    }

    .promo-card-wrapper {
        position: relative;
        display: inline-block;
        margin-top: clamp(15px, 3vw, 20px);
        border-radius: clamp(12px, 2vw, 20px);
        overflow: hidden;
        width: 100%;
        /* Removed aspect-ratio constraint to allow full original size display */
        /* Performance optimizations */
        will-change: transform;
        backface-visibility: hidden;
        perspective: 1000px;
        transform: translateZ(0);
    }

    .promo-card-image {
        width: 100%;
        height: auto;
        /* Changed to auto to preserve original aspect ratio */
        object-fit: contain;
        /* Changed to contain to show full image without cropping */
        border-radius: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-medium);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: clamp(4px, 1vw, 8px) solid var(--primary-green);
        position: relative;
        /* Performance optimizations */
        will-change: transform;
        backface-visibility: hidden;
        transform: translateZ(0);
    }

    .promo-card-image::before {
        content: '';
        position: absolute;
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
        border: 4px dashed var(--accent-green);
        border-radius: 28px;
        pointer-events: none;
        z-index: -1;
    }

    .promo-card-image::after {
        content: '🥪 FRESH DAILY 🥪';
        position: absolute;
        top: clamp(-20px, -4vw, -25px);
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-green);
        color: white;
        padding: clamp(4px, 1vw, 6px) clamp(12px, 2vw, 16px);
        border-radius: 20px;
        font-size: clamp(0.7rem, 1.5vw, 0.8rem);
        font-weight: 600;
        font-family: 'Fredoka', sans-serif;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
        z-index: 1;
        white-space: nowrap;
    }

    .promo-card-image:hover {
        /* Removed transform to prevent scaling issues on click */
        box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2);
    }

    .promo-card-container {
        position: relative;
    }

    .call-ahead-section {
        margin-top: 20px;
        text-align: center;
    }

    /* Removed cursor: pointer to prevent button-like behavior */

    /* === PERFORMANCE OPTIMIZATIONS === */
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {

        .hero-section,
        .hero-container,
        .hero-main,
        .hero-text-content,
        .hero-image-content,
        .promo-card-wrapper,
        .promo-card-image {
            transition: none !important;
            animation: none !important;
            will-change: auto !important;
        }
    }

    /* Optimize for high DPI displays */
    @media (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 192dpi) {
        .promo-card-image {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
    }

    /* Critical CSS inlining hint */
    .hero-section {
        contain-intrinsic-size: 0 600px;
    }

    /* Mobile First Responsive Design */
    @media (min-width: 768px) {
        .hero-main {
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 5vw, 60px);
            align-items: center;
        }

        .hero-text-content {
            text-align: left;
            order: 1;
        }

        .hero-image-content {
            order: 2;
            max-width: none;
        }

        .hero-logos {
            justify-content: flex-start;
        }

        .hero-tagline {
            align-items: flex-start;
        }

        .hero-actions {
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            align-content: center;
            flex-wrap: wrap;
            gap: 15px;
            max-width: none;
            width: 100%;
            margin-top: 5px;
            min-height: 50px;
        }
    }

    @media (min-width: 1024px) {
        .hero-text-content {
            flex: 1;
            min-width: 0;
            max-width: 600px;
            /* Ensure better alignment for buttons */
            align-items: flex-start;
            padding: 0 20px;
        }

        .hero-image-content {
            flex: 0 0 40%;
        }

        .hero-actions {
            gap: 18px;
            margin-top: 8px;
            align-items: center;
        }
    }

    /* ===== MENU SECTION ===== */

    .menu {
        padding: 60px 20px;
        background: var(--warm-white);
        position: relative;
    }

    .menu-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Ensure consistent card heights on larger screens */
    @media (min-width: 768px) {
        .menu-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            justify-items: stretch;
            align-items: stretch;
        }

        .menu-container .menu-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .menu-container .card-description {
            flex-grow: 1;
        }

        .menu-container .price-row {
            margin-top: auto;
            margin-bottom: 0;
        }

        /* Handle odd number of cards gracefully */
        .menu-container:has(.menu-card:nth-child(7):last-child) {
            grid-template-rows: auto auto auto;
        }
    }

    /* Responsive gap adjustments */
    @media (min-width: 768px) and (max-width: 1023px) {
        .menu-container {
            gap: 20px;
        }
    }

    @media (min-width: 1024px) {
        .menu-container {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
    }

    /* Alternative responsive layout using auto-fit */
    @media (min-width: 1200px) {
        .menu-container.auto-fit {
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            grid-template-rows: none;
            grid-auto-rows: 1fr;
        }

        .menu-container.auto-fit .menu-card {
            grid-column: auto;
            grid-row: auto;
            order: initial;
        }

        .menu-container.auto-fit .featured-card {
            order: -1;
            /* Keep featured card first */
        }
    }

    @media (min-width: 1400px) {
        .menu-container {
            gap: 30px;
        }
    }

    .menu-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .menu-header .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--accent-green), var(--light-green));
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    /* Side-by-side layout for dressing header - override existing menu-header styles */
    .menu-header.dressing-header {
        text-align: left !important;
        margin-bottom: 60px !important;
    }

    /* Convenience header image styling */
    .convenience-header-image {
        text-align: center;
        margin: 20px 0 30px 0;
    }

    .convenience-image {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        border: 4px solid var(--accent-green);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .convenience-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }

    .dressing-header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .dressing-header-text {
        flex: 1;
        text-align: left !important;
    }

    .dressing-header-image {
        flex: 1;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .dressing-image {
        display: block;
        width: 100%;
        max-width: 800px;
        height: auto;
        border-radius: 20px;
        border: 4px solid var(--accent-green);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .dressing-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }

    .dressing-header .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--accent-green), var(--light-green));
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .dressing-header .menu-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.1);
        text-align: left !important;
    }

    .dressing-header .menu-subtitle {
        color: var(--text-medium);
        font-size: 1.2rem;
        max-width: 500px;
        line-height: 1.6;
        margin: 8px 0 25px 0;
        text-align: left !important;
        font-weight: 500;
        font-style: italic;
        letter-spacing: 0.3px;
    }

    /* Shared styling for side-by-side headers with picnic background */
    .menu-header.dressing-header,
    .menu-header.soup-salad-header,
    .menu-header.convenience-header,
    .menu-header.sandwich-header {
        border: 3px solid var(--accent-green);
        border-radius: 30px;
        padding: 40px;
        background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../Assets/Images/wallpaper/picnic.jpg');
        background-repeat: repeat;
        background-position: center;
        background-size: 400px auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        margin-bottom: 60px !important;
        position: relative;
        overflow: hidden;
    }

    /* Soup & Salad Header Styling */
    .menu-header.soup-salad-header {
        text-align: center !important;
        margin-bottom: 60px !important;
    }

    .soup-salad-header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .soup-salad-header-text {
        flex: 1;
        text-align: left !important;
    }

    .soup-salad-header-image {
        flex: 1;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .soup-image {
        display: block;
        width: 100%;
        max-width: 800px !important;
        height: auto;
        border-radius: 20px;
        border: 4px solid var(--accent-green);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .soup-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }

    .soup-salad-header .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--accent-green), var(--light-green));
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .soup-salad-header .menu-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.1);
        text-align: left !important;
    }

    .soup-salad-header .menu-subtitle {
        color: var(--text-medium);
        font-size: 1.2rem;
        max-width: 500px;
        line-height: 1.6;
        margin: 8px 0 25px 0;
        text-align: left !important;
        font-weight: 500;
        font-style: italic;
        letter-spacing: 0.3px;
    }

    /* Convenience Header Styling */
    .menu-header.convenience-header {
        text-align: center !important;
        margin-bottom: 60px !important;
    }

    .convenience-header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .convenience-header-text {
        flex: 1;
        text-align: left !important;
    }

    .convenience-header-image {
        flex: 1;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .convenience-image {
        display: block;
        width: 100%;
        max-width: 800px !important;
        height: auto;
        border-radius: 20px;
        border: 4px solid var(--accent-green);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .convenience-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }

    .convenience-header .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--accent-green), var(--light-green));
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .convenience-header .menu-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.1);
        text-align: left !important;
    }

    .convenience-header .menu-subtitle {
        color: var(--text-medium);
        font-size: 1.2rem;
        max-width: 500px;
        line-height: 1.6;
        margin: 8px 0 25px 0;
        text-align: left !important;
        font-weight: 500;
        font-style: italic;
        letter-spacing: 0.3px;
    }

    /* Sandwich Header Styling */
    .menu-header.sandwich-header {
        text-align: center !important;
        margin-bottom: 60px !important;
    }

    .sandwich-header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .sandwich-header-text {
        flex: 1;
        text-align: left !important;
    }

    .sandwich-header-image {
        flex: 1;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .sandwich-image {
        display: block;
        width: 100%;
        max-width: 800px !important;
        height: auto;
        border-radius: 20px;
        border: 4px solid var(--accent-green);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .sandwich-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }

    .sandwich-header .section-badge {
        background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
        text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.1);
    }

    .sandwich-header .menu-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.1);
        text-align: left !important;
    }

    .sandwich-header .menu-subtitle {
        color: var(--text-medium);
        font-size: 1.2rem;
        max-width: 500px;
        line-height: 1.6;
        margin: 8px 0 25px 0;
        text-align: left !important;
        font-weight: 500;
        font-style: italic;
        letter-spacing: 0.3px;
    }

    /* Unified Section Title Styling - All section titles should be consistent */
    .menu-title,
    .about-title,
    .reviews-title,
    .gallery-title,
    .contact-title {
        font-family: 'Fredoka', sans-serif;
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.1);
        text-align: center;
        line-height: 1.2;
    }

    .menu-title {
        margin-bottom: 15px;
    }

    .menu-subtitle {
        color: var(--text-gray);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 40px auto;
        line-height: 1.5;
    }

    .menu-grid {
        display: grid;
        gap: 30px;
        margin-bottom: 50px;
        grid-template-columns: 1fr;
    }

    .menu-grid-wide {
        display: grid;
        gap: 30px;
        margin-bottom: 50px;
        grid-template-columns: 1fr;
    }

    .menu-footer {
        text-align: center;
        padding: 30px 20px;
        background: rgba(45, 80, 22, 0.05);
        border-radius: var(--border-radius);
        margin-top: 40px;
    }

    .menu-footer h4 {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.5rem;
        color: var(--primary-green);
        margin-bottom: 15px;
    }

    .menu-footer p {
        color: var(--text-medium);
        font-size: 1rem;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto 20px;
    }

    /* ===== ABOUT SECTION ===== */

    .about {
        padding: 60px 20px;
        background: linear-gradient(135deg, var(--warm-white) 0%, #f8fffe 50%, var(--cream) 100%);
        position: relative;
        overflow: hidden;
    }

    .about::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
        opacity: 0.3;
    }

    .about-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .about-title {
        margin-bottom: 40px;
        position: relative;
    }

    .story-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }


    .community-love {
        max-width: 600px;
        margin: 0 auto;
        padding: 40px 30px;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--cream) 0%, #f0f8ff 50%, #f8fdf4 100%);
        border: 2px solid var(--accent-green);
        box-shadow: 0 10px 30px rgba(74, 124, 35, 0.15);
        border-radius: 25px;
    }

    .community-love::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(74, 124, 35, 0.08), transparent);
        animation: shine 6s infinite;
        pointer-events: none;
    }

    @keyframes shine {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }

        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }

    .community-love h3 {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--primary-green);
        margin-bottom: 15px;
        background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .community-love p {
        color: var(--text-dark);
        font-size: 1.1rem;
        line-height: 1.6;
        font-weight: 500;
    }

    /* ===== REVIEWS SECTION ===== */

    .reviews {
        padding: 60px 20px;
        background: var(--warm-white);
    }

    .reviews-container {
        max-width: 1400px;
        margin: 0 auto;
        text-align: center;
    }

    .reviews-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .reviews-header .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #4285f4, #1a73e8);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }


    .reviews-subtitle {
        color: var(--text-gray);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.5;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .reviews-section {
        margin: 60px 20px 40px;
        text-align: center;
    }

    .reviews-section .section-badge {
        background: linear-gradient(135deg, #4285f4, #1a73e8);
        color: white;
    }

    .reviews-content {
        max-width: 1400px;
        margin: 0 auto;
    }

    .featured-review {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border: 3px solid var(--accent-green);
        border-radius: var(--border-radius);
        padding: 40px 30px;
        text-align: center;
        box-shadow: var(--shadow-medium);
        margin-bottom: 40px;
    }

    .featured-review .review-content {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--primary-green);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .featured-review .reviewer-name {
        font-size: 1.2rem;
        color: var(--accent-green);
    }

    .featured-review .review-rating {
        justify-content: center;
        margin-bottom: 15px;
    }

    .featured-review .review-rating span {
        font-size: 1.5rem;
    }

    /* Elfsight Widget Customizations */
    .elfsight-widget-container {
        margin-top: 2rem;
    }

    /* Hide Elfsight free widget promo - Comprehensive targeting */
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 .elfsight-powered-by,
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 .e-app-powered-by,
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 .elfsight-review-external-link,
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 [class*="powered"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 [class*="brand"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 [class*="promo"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 [class*="logo"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 [class*="watermark"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 [class*="badge"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 [class*="footer"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[href*="elfsight"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[title*="Widget"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[target="_blank"][style*="position: absolute"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -9999 !important;
    }

    /* Generic hide for any Elfsight promo */
    .elfsight-app [class*="powered-by"],
    .elfsight-app [class*="brand"],
    .elfsight-app [class*="promo"],
    .elfsight-app [class*="logo"],
    .elfsight-app [class*="watermark"],
    .elfsight-app [href*="elfsight"] {
        display: none !important;
        visibility: hidden !important;
    }

    /* Target any absolute positioned links at bottom of widget */
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888>div:last-child a,
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[style*="bottom"] {
        display: none !important;
    }

    /* Hide any element that mentions Elfsight in text content */
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 *:contains("Elfsight"),
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 *:contains("Widget by") {
        display: none !important;
    }

    /* Specific targeting for the Elfsight promo link */
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[href*="elfsight.com"][target="_blank"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[href*="facebook-reviews-widget"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[style*="left:50%"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a:has(svg[viewBox="0 0 16 16"]),
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a:contains("Free Facebook Reviews widget") {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -9999 !important;
        pointer-events: none !important;
    }

    /* Target any SVG that might be the Elfsight logo */
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 svg[viewBox="0 0 16 16"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[style*="background-color: rgba(238, 238, 238, 0.9)"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[style*="border-radius: 40px"] {
        display: none !important;
    }

    /* Specific targeting for remaining Elfsight promo elements */
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[href*="utm_campaign=free-widget"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 a[href*="utm_source=websites"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 div[style*="right:-9px"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 div[style*="top:-9px"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 div[title="Remove Elfsight logo"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -9999 !important;
        pointer-events: none !important;
    }

    /* Hide any elements with red background (#f93262) - the close button */
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 div[style*="background:#f93262"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 svg[fill="#fff"],
    .elfsight-app-b9e6d19c-8c5c-4b5a-9106-a25e19610888 div[role="button"][title*="Remove"] {
        display: none !important;
    }


    /* ===== CONTACT SECTION ===== */

    .contact {
        padding: 60px 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, var(--warm-white) 100%);
        position: relative;
    }

    .contact-container {
        max-width: 1400px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .contact-header .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--accent-green), var(--light-green));
        color: white;
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .contact-title {
        margin-bottom: 15px;
    }

    .contact-subtitle {
        color: var(--text-gray);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.5;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    /* Storefront Image Styles */
    .hours-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 25px;
        height: auto;
        overflow: visible;
        width: 100%;
    }

    .hours-info {
        text-align: center;
        width: 100%;
    }

    .hours-storefront {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .storefront-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .storefront-image {
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 16px;
        box-shadow: var(--shadow-medium);
        object-fit: cover;
    }

    .storefront-address {
        text-align: center;
    }

    .storefront-address p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--text-medium);
        line-height: 1.4;
        font-weight: 500;
    }

    /* Address and Phone Number Styling */
    .address {
        font-size: 1rem;
        color: var(--text-medium);
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .phone-number {
        margin-bottom: 10px;
    }

    .phone-number a {
        color: var(--accent-green);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .phone-number a:hover {
        color: var(--primary-green);
    }

    .hours-info {
        margin-bottom: 15px;
    }

    .social-description {
        font-size: 1rem;
        color: var(--text-medium);
        line-height: 1.5;
        margin-bottom: 15px;
    }

    /* Business Hours Section */
    .hours-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .hours-list li {
        padding: 4px 0 4px 16px;
        position: relative;
        font-size: 0.9rem;
        color: var(--text-medium);
    }

    .hours-list li::before {
        content: "•";
        color: var(--accent-green);
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    .service-highlight {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .service-highlight span {
        font-size: 0.85rem;
        color: var(--accent-green);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .hours-actions {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin: 0 !important;
        min-width: 180px;
    }

    .hours-actions .call-hours-btn,
    .hours-actions .call-order-btn {
        padding: 16px 24px !important;
        font-size: 1rem !important;
        border-radius: 12px;
        margin: 0 auto !important;
        width: fit-content;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .hours-actions .call-hours-btn.primary {
        background: var(--accent-green);
        color: white;
    }

    .hours-actions .call-order-btn.secondary {
        background: transparent;
        color: var(--accent-green);
        border: 2px solid var(--accent-green);
    }

    .hours-actions .call-order-btn.secondary:hover {
        background: var(--accent-green);
        color: white;
    }

    /* ===== STORE HOURS SCHEDULE ===== */

    /* Base styles for hours schedule - improved readability */
    .hours-schedule {
        margin: 20px 0;
        padding: 0;
        text-align: left;
    }

    .hours-schedule h4 {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: var(--primary-green);
        font-weight: 600;
        text-align: center;
    }

    .schedule-list {
        list-style: none;
        padding: 0;
        margin: 0;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(45, 80, 22, 0.1);
    }

    .schedule-row {
        padding: 14px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        transition: background-color 0.2s ease;
    }

    .schedule-row:last-child {
        border-bottom: none;
    }

    .schedule-row:hover {
        background: rgba(74, 124, 35, 0.05);
        border-radius: 8px;
        padding: 14px 12px;
        margin: 0 -12px;
    }

    /* Highlight current day */
    .schedule-row.current-day {
        background: rgba(74, 124, 35, 0.08);
        border-radius: 8px;
        padding: 14px 12px;
        margin: 0 -12px;
        border-left: 4px solid var(--accent-green);
    }

    .schedule-row.current-day .days {
        color: var(--primary-green);
        font-weight: 700;
    }

    .schedule-row.current-day .times {
        background: var(--accent-green);
        color: white;
        box-shadow: 0 2px 4px rgba(74, 124, 35, 0.3);
    }

    .days {
        font-weight: 600;
        color: var(--text-primary);
        font-size: 1.05rem;
        font-family: 'Inter', sans-serif;
        flex: 1;
        letter-spacing: 0.3px;
    }

    .times {
        font-weight: 700;
        color: var(--accent-green);
        font-size: 1.1rem;
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.5px;
        background: rgba(74, 124, 35, 0.08);
        padding: 6px 14px;
        border-radius: 20px;
        border: 1px solid rgba(74, 124, 35, 0.15);
        white-space: nowrap;
    }

    .hours-note {
        margin-top: 20px;
        padding: 16px;
        background: rgba(255, 193, 7, 0.1);
        border-radius: 10px;
        text-align: center;
        border: 1px solid rgba(255, 193, 7, 0.2);
    }

    .hours-note small {
        font-size: 0.9rem;
        color: var(--text-medium);
        line-height: 1.4;
        font-weight: 500;
    }

    .service-highlights {
        margin-top: 25px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .service-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 10px;
        border: 1px solid rgba(45, 80, 22, 0.08);
        transition: all 0.2s ease;
    }

    .service-item:hover {
        background: rgba(74, 124, 35, 0.08);
        transform: translateY(-1px);
    }

    .service-emoji {
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .service-item span:last-child {
        font-size: 0.95rem;
        color: var(--text-medium);
        font-weight: 500;
        line-height: 1.3;
    }

    /* ===== MAP SECTION ===== */

    /* Enhanced Map Section */
    .map-section {
        margin: 40px 0;
        padding-bottom: 40px;
        text-align: center;
        position: relative;
    }

    .map-header {
        margin-bottom: 30px;
    }

    .map-header .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--accent-green), var(--light-green));
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .map-section h3 {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--primary-green);
        margin-bottom: 10px;
    }

    .map-intro {
        color: var(--text-gray);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.5;
    }

    .map-wrapper {
        position: relative;
    }

    .map-container {
        background: var(--warm-white);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow-medium);
        border: 2px solid rgba(45, 80, 22, 0.1);
        transition: all 0.3s ease;
        position: relative;
        margin-bottom: 30px;
    }

    .map-container:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

    .map-overlay {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 2;
        pointer-events: none;
    }

    .map-pin {
        background: var(--accent-green);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
        animation: mapPinPulse 2s infinite;
    }

    @keyframes mapPinPulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }
    }

    .map-container iframe {
        display: block;
        border-radius: var(--border-radius);
    }

    .map-info-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .map-info-card {
        background: var(--warm-white);
        padding: 25px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-light);
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid rgba(45, 80, 22, 0.1);
    }

    /* Individual card colors for contrast */
    .map-info-card:nth-child(1) {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        border-color: rgba(59, 130, 246, 0.2);
    }

    .map-info-card:nth-child(2) {
        background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        border-color: rgba(34, 197, 94, 0.2);
    }

    .map-info-card:nth-child(3) {
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        border-color: rgba(245, 158, 11, 0.3);
    }

    .map-info-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-medium);
    }

    /* Enhanced hover effects for individual cards */
    .map-info-card:nth-child(1):hover {
        border-color: rgba(59, 130, 246, 0.4);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    }

    .map-info-card:nth-child(2):hover {
        border-color: rgba(34, 197, 94, 0.4);
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    }

    .map-info-card:nth-child(3):hover {
        border-color: rgba(245, 158, 11, 0.5);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
    }

    .map-info-card .info-icon {
        font-size: 2rem;
        margin-bottom: 12px;
        display: block;
    }

    .map-info-card h4 {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-green);
        margin-bottom: 8px;
    }

    .map-info-card p {
        color: var(--text-gray);
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .highlight-card {
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
        border-color: rgba(245, 158, 11, 0.4) !important;
    }

    .quick-call-btn {
        display: inline-block;
        margin-top: 12px;
        padding: 10px 20px;
        background: var(--accent-green);
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .quick-call-btn:hover {
        background: var(--primary-green);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
    }

    /* Modern Split Layout for Visit CTA */
    .visit-cta {
        background: var(--warm-white);
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(74, 124, 35, 0.08);
        position: relative;
        /* Removed overflow: hidden to allow shadows to show fully */
        margin-top: 60px;
        max-width: 1200px;
        /* Wider container for split layout */
        margin-left: auto;
        margin-right: auto;
    }

    /* Green border around CTA text container */
    .cta-text-column {
        border: 3px solid var(--accent-green);
        border-radius: 20px;
        padding: 40px 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: rgba(74, 124, 35, 0.02);
    }

    /* Decorative background element */
    .visit-cta::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        background: linear-gradient(135deg, rgba(74, 124, 35, 0.03) 0%, rgba(74, 124, 35, 0.08) 100%);
        border-top-right-radius: 24px;
        border-bottom-right-radius: 24px;
        z-index: 0;
        /* Only show on desktop via media query later, or keep subtle */
        display: none;
    }

    .cta-content {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }

    /* Left Column Styles */
    .cta-text-column {
        padding: 40px 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-header {
        margin-bottom: 15px;
    }

    .cta-badge {
        display: inline-block;
        background: rgba(74, 124, 35, 0.1);
        color: var(--primary-green);
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .visit-cta h3 {
        font-family: 'Fredoka', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-green);
        line-height: 1.2;
        margin: 0;
    }

    .cta-description {
        font-size: 1.05rem;
        color: var(--text-medium);
        margin-bottom: 30px;
        line-height: 1.6;
        max-width: 500px;
    }

    /* Buttons */
    .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        width: 100%;
    }

    .visit-cta .cta-primary,
    .visit-cta .cta-secondary,
    .visit-cta .cta-tertiary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .visit-cta .cta-primary {
        background: var(--primary-green);
        color: white;
        box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
        gap: 8px;
    }

    .visit-cta .cta-primary .cta-icon {
        color: #ff4444;
        display: flex;
        align-items: center;
    }

    .visit-cta .cta-secondary {
        background: white;
        color: var(--primary-green);
        border: 1px solid rgba(74, 124, 35, 0.2);
    }

    .visit-cta .cta-tertiary {
        color: var(--text-medium);
        background: transparent;
    }

    .visit-cta .cta-primary:hover {
        background: var(--accent-green);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(45, 80, 22, 0.25);
    }

    .visit-cta .cta-secondary:hover {
        border-color: var(--primary-green);
        background: rgba(74, 124, 35, 0.05);
        transform: translateY(-2px);
    }

    .visit-cta .cta-tertiary:hover {
        color: var(--primary-green);
        background: rgba(0, 0, 0, 0.03);
    }

    /* Right Column Styles (Features) */
    .cta-features-column {
        padding: 20px 30px 40px;
        background: transparent;
    }

    .cta-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-card {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 16px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        border-color: rgba(74, 124, 35, 0.15);
    }

    .feature-icon-box {
        font-size: 1.8rem;
        margin-bottom: 10px;
        background: rgba(74, 124, 35, 0.05);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .feature-info h4 {
        font-family: 'Fredoka', sans-serif;
        font-size: 1rem;
        color: var(--text-dark);
        margin-bottom: 4px;
    }

    .feature-info span {
        font-size: 0.85rem;
        color: var(--text-medium);
        display: block;
    }

    /* Desktop Layout (Split) */
    @media (min-width: 1200px) {
        .visit-cta {
            padding: 0;
            border: 1px solid rgba(0, 0, 0, 0.08);
            max-width: 1150px;
        }

        .visit-cta::before {
            display: block;
            /* Show background on right side */
        }

        .cta-content {
            flex-direction: row;
            align-items: stretch;
        }

        .cta-text-column {
            flex: 1 1 0;
            /* Ensure equal width distribution */
            min-width: 0;
            /* Prevent overflow */
            padding: 60px 50px;
            align-items: flex-start;
            text-align: left;
            justify-content: center;
        }

        .cta-description {
            margin-left: 0;
            margin-right: 0;
            font-size: 1.1rem;
        }

        .cta-buttons {
            justify-content: flex-start;
            margin-left: 4px;
        }

        .cta-features-column {
            flex: 1 1 0;
            /* Ensure equal width distribution */
            min-width: 0;
            /* Prevent overflow */
            padding: 40px;
            /* Slightly reduced padding for better fit */
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(248, 253, 244, 0.5);
            /* Subtle tint for right side */
            border-left: 1px solid rgba(0, 0, 0, 0.03);
            border-top-right-radius: 24px;
            /* Match container radius */
            border-bottom-right-radius: 24px;
            /* Match container radius */
        }

        .cta-features-grid {
            gap: 20px;
            width: 100%;
            max-width: none;
            /* Reset max-width from mobile styles */
        }

        .visit-cta h3 {
            font-size: 2.2rem;
        }
    }

    /* ===== VIDEO SECTION ===== */

    /* Video Section Styles */
    .video-section {
        padding: 4rem 2rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }

    .video-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, rgba(74, 124, 35, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .video-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .video-wrapper {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        background: #fff;
        padding: 1rem;
    }

    .video-wrapper iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        border-radius: 12px;
        border: none;
    }

    /* Video loading state */
    .video-section.video-loading .video-wrapper::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        margin: -20px 0 0 -20px;
        border: 3px solid rgba(74, 124, 35, 0.3);
        border-top: 3px solid #4a7c23;
        border-radius: 50%;
        animation: videoSpinner 1s linear infinite;
        z-index: 10;
        pointer-events: none;
    }

    @keyframes videoSpinner {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* ===== GALLERY SECTION ===== */

    .gallery {
        padding: 40px 15px;
        background: var(--warm-white);
        position: relative;
        overflow: hidden;
    }

    .gallery-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-title {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.65;
        max-width: 550px;
        color: var(--text-medium);
        margin-bottom: 40px;
        font-style: italic;
        text-align: center;
    }

    .gallery-title {
        margin-bottom: 10px;
    }

    .gallery-subtitle {
        font-size: 1.1rem;
        color: var(--text-medium);
        margin-bottom: 40px;
        font-style: italic;
        text-align: center;
    }

    @media (min-width: 768px) {
        .gallery {
            padding: 60px 30px;
        }

        .gallery-title {
            font-size: 2.5rem;
        }

        /* Responsive Section Titles - Tablet */
        .menu-title,
        .about-title,
        .reviews-title,
        .contact-title,
        .dressing-header .menu-title,
        .soup-salad-header .menu-title,
        .convenience-header .menu-title {
            font-size: 2.5rem;
        }
    }

    @media (min-width: 1024px) {
        .gallery {
            padding: 80px 40px;
        }

        .gallery-title {
            font-size: 3rem;
        }

        /* Responsive Section Titles - Desktop */
        .menu-title,
        .about-title,
        .reviews-title,
        .contact-title,
        .dressing-header .menu-title,
        .soup-salad-header .menu-title,
        .convenience-header .menu-title {
            font-size: 3rem;
        }
    }

    @media (max-width: 767px) {
        .gallery-title {
            font-size: 1.8rem;
        }

        /* Responsive Section Titles - Mobile */
        .menu-title,
        .about-title,
        .reviews-title,
        .contact-title,
        .dressing-header .menu-title,
        .soup-salad-header .menu-title,
        .convenience-header .menu-title {
            font-size: 1.8rem;
        }

        .gallery-subtitle {
            font-size: 1rem;
            margin-bottom: 30px;
        }
    }


    /* ===== SEASONAL SECTIONS ===== */

    /* Seasonal Hours Card Base Styling */
    .seasonal-hours {
        position: relative;
        background: linear-gradient(135deg,
                #f0f8ff 0%,
                #e6f3ff 25%,
                #f0f9ff 50%,
                #e6f3ff 75%,
                #f0f8ff 100%);
        border-top: 4px solid #3b82f6;
        overflow: hidden;
    }

    .seasonal-hours::before {
        background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
    }

    /* Seasonal Decorations Container */
    .seasonal-decorations {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        overflow: hidden;
        z-index: 1;
    }

    /* Winter Frost Background Effect */
    .winter-frost {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 30%,
                rgba(147, 197, 253, 0.08) 0%,
                rgba(191, 219, 254, 0.05) 25%,
                rgba(219, 234, 254, 0.03) 50%,
                transparent 70%);
        animation: none;
        opacity: 0;
    }

    /* Falling Snow Animation */
    .falling-snow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .snowflake {
        position: absolute;
        font-size: 2.2rem;
        opacity: 0;
        animation: none;
        filter: drop-shadow(0 0 10px rgba(147, 197, 253, 0.7)) drop-shadow(0 0 20px rgba(191, 219, 254, 0.5));
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    }

    .snowflake-1 {
        left: 5%;
        animation-delay: 0s;
        animation-duration: 12s;
    }

    .snowflake-2 {
        left: 15%;
        animation-delay: 1.5s;
        animation-duration: 14s;
    }

    .snowflake-3 {
        left: 25%;
        animation-delay: 3s;
        animation-duration: 16s;
    }

    .snowflake-4 {
        left: 35%;
        animation-delay: 4.5s;
        animation-duration: 13s;
    }

    .snowflake-5 {
        left: 45%;
        animation-delay: 6s;
        animation-duration: 15s;
    }

    .snowflake-6 {
        left: 55%;
        animation-delay: 1s;
        animation-duration: 11s;
    }

    .snowflake-7 {
        left: 65%;
        animation-delay: 2.5s;
        animation-duration: 17s;
    }

    .snowflake-8 {
        left: 75%;
        animation-delay: 4s;
        animation-duration: 18s;
    }

    .snowflake-9 {
        left: 85%;
        animation-delay: 5.5s;
        animation-duration: 16s;
    }

    .snowflake-10 {
        left: 10%;
        animation-delay: 7s;
        animation-duration: 19s;
    }

    .snowflake-11 {
        left: 20%;
        animation-delay: 8.5s;
        animation-duration: 17s;
    }

    .snowflake-12 {
        left: 30%;
        animation-delay: 10s;
        animation-duration: 20s;
    }

    /* Winter Corner Decoration */
    .winter-corner {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 2.5rem;
        opacity: 0;
        animation: none;
        filter: drop-shadow(0 0 15px rgba(147, 197, 253, 0.8)) drop-shadow(0 0 25px rgba(191, 219, 254, 0.6));
        z-index: 2;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    }

    /* Seasonal Icon Styling */
    .seasonal-icon {
        position: relative;
        background: linear-gradient(135deg,
                rgba(147, 197, 253, 0.15) 0%,
                rgba(191, 219, 254, 0.1) 100%);
        border: 2px solid rgba(147, 197, 253, 0.2);
    }

    .seasonal-icon .base-icon {
        font-size: 1.8rem;
    }

    .seasonal-icon .seasonal-accent {
        position: absolute;
        bottom: 2px;
        right: 2px;
        font-size: 0.9rem;
        animation: none;
    }

    /* ===== RESPONSIVE ADJUSTMENTS ===== */

    /* Tablet Responsive */
    @media (min-width: 768px) {

        /* Hero Section - Tablet */
        .hero-section {
            padding: 200px 30px 80px;
            min-height: 85vh;
        }

        .hero-logos {
            gap: 30px;
        }

        .hero-snack-logo {
            width: 85px;
            height: 85px;
        }

        .primary-text {
            font-size: 1.5rem;
        }

        .secondary-text {
            font-size: 1.1rem;
        }

        .hero-actions {
            gap: 20px;
        }

        .hero-btn {
            padding: 16px 28px;
            font-size: 1.1rem;
            min-width: 160px;
        }

        .promo-card-image {
            max-width: 750px;
        }

        /* Menu Section - Tablet */
        .menu-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .menu-grid-wide {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        /* Story Cards - Tablet */
        .story-cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        /* Reviews Section - Tablet */
        .reviews-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }


        /* Contact Section - Tablet */
        .contact-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        /* Map Section - Tablet */
        .map-info-cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        /* Video Section - Tablet */
        .video-section {
            padding: 2rem 1rem;
        }

        .video-wrapper {
            padding: 0.75rem;
            border-radius: 16px;
        }

        .video-wrapper iframe {
            border-radius: 8px;
        }

        /* Hours content - Tablet */
        .hours-content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
            width: 100%;
        }

        .hours-info {
            text-align: center;
            max-width: 600px;
            width: 100%;
        }

        .hours-storefront {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .storefront-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 20px;
            object-fit: cover;
        }

        .storefront-address p {
            font-size: 0.95rem;
        }
    }

    /* Tablet Portrait Specific Fix */
    @media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
        .hero-section {
            padding: 180px 30px 50px !important;
        }
    }

    /* Desktop Responsive */
    @media (min-width: 1024px) {

        /* Enable Winter Decorations for Desktop */
        .winter-corner {
            opacity: 1;
            animation: winter-frost 8s ease-in-out infinite;
        }

        .snowflake {
            opacity: 1;
            animation: snowfall 15s ease-in-out infinite;
        }

        .winter-frost {
            opacity: 1;
            animation: winter-frost 10s ease-in-out infinite;
        }

        /* Hero Section - Desktop */
        .hero-section {
            padding: 220px 40px 100px;
            min-height: 80vh;
        }

        .hero-branding {
            margin-bottom: 40px;
        }

        .hero-logos {
            gap: 40px;
        }

        .hero-snack-logo {
            width: 100px;
            height: 100px;
        }


        .primary-text {
            font-size: 1.8rem;
        }

        .secondary-text {
            font-size: 1.3rem;
        }

        .hero-content {
            gap: 30px;
        }

        .hero-actions {
            gap: 25px;
        }

        .hero-btn {
            padding: 18px 32px;
            font-size: 1.1rem;
            min-width: 180px;
        }

        .promo-card-image {
            max-width: 950px;
        }

        /* Section Paddings - Desktop */
        .hero {
            padding: 140px 40px 80px;
        }

        .menu {
            padding: 80px 40px;
        }

        .soup-image {
            max-width: 600px !important;
        }

        .about {
            padding: 80px 40px;
            background: linear-gradient(135deg, var(--warm-white) 0%, #f8fffe 50%, var(--cream) 100%);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
            opacity: 0.3;
        }

        .about-title {
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .about-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-green), var(--light-green));
            border-radius: 2px;
        }

        .contact {
            padding: 80px 40px;
        }

        .menu-header,
        .menu-container,
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

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

        /* Menu Grid - Desktop */
        .menu-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .menu-grid-wide {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* Story Cards - Desktop */
        .story-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        /* Add staggered animation on load */
        .story-card:nth-child(1) {
            animation: slideInUp 0.6s ease-out 0.1s both;
        }

        .story-card:nth-child(2) {
            animation: slideInUp 0.6s ease-out 0.3s both;
        }

        .story-card:nth-child(3) {
            animation: slideInUp 0.6s ease-out 0.5s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .story-card {
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 40px 30px;
            background: linear-gradient(135deg, var(--warm-white) 0%, #fafafa 100%);
            border: 1px solid rgba(74, 124, 35, 0.1);
        }

        /* Add light colors to each story card for better contrast - Desktop */
        .story-card:nth-child(1) {
            background: linear-gradient(135deg, #f0f8ff 0%, #fafeff 100%);
            border-color: #2d5016;
        }

        .story-card:nth-child(2) {
            background: linear-gradient(135deg, #f0fff4 0%, #fafffa 100%);
            border-color: #2d5016;
        }

        .story-card:nth-child(3) {
            background: linear-gradient(135deg, #fffbf0 0%, #fffefa 100%);
            border-color: #2d5016;
        }

        .story-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(74, 124, 35, 0.1), rgba(127, 176, 105, 0.1));
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(74, 124, 35, 0.15);
            transition: all 0.3s ease;
        }

        .story-card:hover .story-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(74, 124, 35, 0.25);
        }

        .story-card h3 {
            font-size: 1.5rem;
            margin-bottom: 18px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .story-card p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-medium);
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        .story-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-green), var(--light-green));
            border-radius: 2px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .story-card:hover::after {
            opacity: 1;
        }

        .story-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 40px rgba(74, 124, 35, 0.2);
            border-color: var(--accent-green);
        }

        /* Add subtle parallax effect to icons */
        .story-card:hover .story-icon {
            transform: scale(1.15) rotate(8deg) translateY(-5px);
            box-shadow: 0 8px 25px rgba(74, 124, 35, 0.3);
        }

        .community-love {
            max-width: 700px;
            margin: 0 auto;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--cream) 0%, #f0f8ff 50%, #f8fdf4 100%);
            border: 2px solid var(--accent-green);
            box-shadow: 0 10px 30px rgba(74, 124, 35, 0.15);
            border-radius: 25px;
        }

        .community-love::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(74, 124, 35, 0.08), transparent);
            animation: shine 6s infinite;
            pointer-events: none;
        }

        .community-love h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .community-love p {
            font-size: 1.25rem;
            line-height: 1.8;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Reviews Grid - Desktop */
        .reviews-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* Contact Grid - Desktop */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 30px;
            align-items: stretch;
            margin-bottom: 50px;
            max-width: 1300px;
            margin: 0 auto 50px auto;
        }

        .contact-grid .location-card,
        .contact-grid .phone-card,
        .contact-grid .social-card {
            grid-row: 1;
            position: relative;
        }

        .contact-grid .hours-card {
            grid-row: 2;
            grid-column: 1 / -1;
            max-width: 1250px;
            margin: 20px auto 0;
            padding: 35px 40px;
            display: block;
            text-align: center;
            min-height: auto;
            height: auto;
            overflow: visible;
            box-shadow: var(--shadow-medium);
            justify-self: center;
            width: 100%;
        }

        /* Enhanced Map Section - Desktop */
        .map-section {
            margin: 60px 0;
            padding-bottom: 60px;
        }

        .map-header {
            margin-bottom: 50px;
        }

        .map-section h3 {
            font-size: 2.4rem;
            margin-bottom: 20px;
        }

        .map-intro {
            font-size: 1.2rem;
            max-width: 700px;
        }

        .map-container {
            max-width: 1000px;
            margin: 0 auto 40px;
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(45, 80, 22, 0.12);
            transition: all 0.4s ease;
        }

        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(45, 80, 22, 0.18);
        }

        .map-container iframe {
            height: 450px;
        }

        .map-pin {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }

        .map-info-cards {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 60px auto 0;
        }

        .map-info-card {
            padding: 30px 25px;
        }

        .map-info-card .info-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .map-info-card h4 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .map-info-card p {
            font-size: 1rem;
        }

        /* Enhanced CTA Section - Desktop */
        .visit-cta {
            padding: 50px 30px;
            border-radius: 20px;
            margin-top: 60px;
            position: relative;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        .visit-cta h3 {
            font-size: 1.9rem;
            margin-bottom: 15px;
        }

        .cta-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-features {
            flex-direction: row;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .feature-item {
            font-size: 1.1rem;
        }

        .feature-icon {
            font-size: 1.4rem;
        }

        .cta-buttons {
            flex-direction: row;
            justify-content: flex-start;
            gap: 15px;
            flex-wrap: nowrap;
            margin-left: 4px;
        }

        .visit-cta .cta-primary,
        .visit-cta .cta-secondary,
        .visit-cta .cta-tertiary {
            min-width: 140px;
            padding: 15px 20px;
            font-size: 1rem;
            white-space: nowrap;
        }

        /* Hours content - Desktop */
        .hours-content-wrapper {
            gap: 45px;
        }

        .hours-info {
            max-width: 700px;
            text-align: center;
        }

        .hours-storefront {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .storefront-image {
            max-width: 380px;
        }

        .contact-grid .hours-card {
            max-width: 1350px !important;
        }
    }

    /* Large Desktop Responsive */
    @media (min-width: 1200px) {

        /* Hours content - Large Desktop */
        .hours-content-wrapper {
            gap: 55px;
        }

        .hours-info {
            flex: 1.3;
            min-width: 480px;
            text-align: center;
        }

        .hours-storefront {
            min-width: 450px;
            max-width: 500px;
            padding-right: 25px;
        }

        .storefront-image {
            max-width: 450px;
            border-radius: 24px;
        }

        .storefront-address p {
            font-size: 1rem;
        }

        .contact-grid .hours-card {
            max-width: 1450px !important;
        }

        .visit-cta {
            max-width: 1000px;
        }
    }

    /* Ultra-wide Desktop Responsive */
    @media (min-width: 1400px) {

        /* About Section - Ultra-wide */
        .about {
            padding: 100px 60px;
        }

        .about-title {
            margin-bottom: 80px;
        }

        /* Responsive Section Titles - Ultra-wide Desktop */
        .menu-title,
        .about-title,
        .reviews-title,
        .gallery-title,
        .contact-title,
        .dressing-header .menu-title,
        .soup-salad-header .menu-title,
        .convenience-header .menu-title {
            font-size: 3.8rem;
        }

        .story-cards {
            gap: 45px;
            margin-bottom: 80px;
        }

        .story-card {
            min-height: 360px;
            padding: 50px 35px;
        }

        .story-icon {
            font-size: 4rem;
            padding: 25px;
            margin-bottom: 25px;
        }

        .story-card h3 {
            font-size: 1.7rem;
            margin-bottom: 22px;
        }

        .story-card p {
            font-size: 1.15rem;
            line-height: 1.8;
        }

        .community-love {
            max-width: 800px;
            padding: 60px 50px;
        }

        .community-love h3 {
            font-size: 2rem;
            margin-bottom: 25px;
        }

        .community-love p {
            font-size: 1.35rem;
            line-height: 1.9;
        }

        /* Contact Section - Ultra-wide */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 30px;
            align-items: stretch;
            margin-bottom: 50px;
            max-width: 1300px;
            margin: 0 auto 50px auto;
        }

        .contact-grid .location-card,
        .contact-grid .phone-card,
        .contact-grid .social-card {
            grid-row: 1;
        }

        .contact-grid .hours-card {
            grid-row: 2;
            grid-column: 1 / -1;
            max-width: 800px;
            margin: 20px auto 0;
            padding: 35px 40px;
            display: block;
            text-align: center;
            min-height: auto;
            box-shadow: var(--shadow-medium);
        }

        .hours-card .contact-icon {
            margin: 0 auto 20px !important;
            width: 80px !important;
            height: 80px !important;
            font-size: 2.5rem !important;
        }

        .hours-card h3 {
            margin-bottom: 20px !important;
            font-size: 1.8rem !important;
            text-align: center;
        }

        .contact-title {
            margin-bottom: 50px;
        }

        .section-badge {
            font-size: 1rem;
            padding: 12px 24px;
            margin-bottom: 25px;
        }

        .map-section {
            margin: 40px 0 40px;
        }

        .map-section h3 {
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .map-container {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(45, 80, 22, 0.12);
            transition: all 0.4s ease;
        }

        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(45, 80, 22, 0.18);
        }

        .visit-cta {
            padding: 60px 50px;
            border-radius: 24px;
            margin-top: 60px;
            position: relative;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .visit-cta h3 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .visit-cta p {
            font-size: 1.2rem;
            margin-bottom: 35px;
        }

        /* Hours content - Ultra-wide */
        .hours-content-wrapper {
            gap: 65px;
        }

        .hours-info {
            flex: 1.2;
            min-width: 520px;
            text-align: center;
        }

        .hours-storefront {
            min-width: 480px;
            max-width: 550px;
            padding-right: 30px;
        }

        .storefront-image {
            max-width: 480px;
        }

        .contact-grid .hours-card {
            max-width: 1500px !important;
        }
    }

    /* Mobile Specific Responsive */
    @media (max-width: 767px) {

        /* Hero Section - Mobile */
        .hero-section {
            padding: 160px 15px 60px;
            min-height: 70vh;
        }

        .hero-branding {
            margin-bottom: 25px;
        }

        .hero-logos {
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-snack-logo {
            width: 60px;
            height: 60px;
        }



        .primary-text {
            font-size: 1.1rem;
        }

        .secondary-text {
            font-size: 0.9rem;
        }

        .hero-content {
            gap: 20px;
        }

        .hero-actions {
            flex-direction: column;
            gap: 18px;
            width: 100%;
            max-width: 280px;
        }

        .hero-btn {
            width: auto;
            padding: 10px 16px;
            font-size: 0.95rem;
            min-width: auto;
            justify-content: center;
            display: inline-flex;
            align-items: center;
        }

        .hero-btn .btn-icon {
            font-size: 1.2rem;
            margin-right: 6px;
            display: inline-flex;
            align-items: center;
            opacity: 1;
        }

        /* Video Section - Mobile */
        .video-section {
            padding: 1.5rem 0.75rem;
        }

        .video-wrapper {
            padding: 0.5rem;
            border-radius: 12px;
        }

        /* Seasonal Adjustments - Mobile */
        .winter-corner {
            font-size: 1.2rem;
            top: 10px;
            right: 10px;
        }

        .snowflake {
            font-size: 1rem;
        }

        .seasonal-badge {
            font-size: 0.8rem;
            padding: 4px 10px;
        }

        .seasonal-icon .seasonal-accent {
            font-size: 0.8rem;
        }
    }


    /* Very Small Mobile Responsive */
    @media (max-width: 480px) {
        .video-section {
            padding: 1.5rem 0.75rem;
        }

        .video-wrapper {
            padding: 0.5rem;
            border-radius: 12px;
        }

        .soup-image {
            border: 3px solid var(--accent-green) !important;
            border-radius: 20px !important;
        }

    }

    /* ===== SEASONAL ANIMATIONS ===== */

    @keyframes snowfall {
        0% {
            transform: translateY(-100px) rotate(0deg) translateX(0px);
            opacity: 0;
        }

        5% {
            opacity: 1;
        }

        20% {
            transform: translateY(200px) rotate(45deg) translateX(-30px);
        }

        40% {
            transform: translateY(500px) rotate(90deg) translateX(40px);
        }

        60% {
            transform: translateY(800px) rotate(135deg) translateX(-25px);
        }

        80% {
            transform: translateY(1100px) rotate(180deg) translateX(35px);
            opacity: 1;
        }

        95% {
            opacity: 1;
        }

        100% {
            transform: translateY(1400px) rotate(225deg) translateX(0px);
            opacity: 0;
        }
    }

    @keyframes winter-frost {

        0%,
        100% {
            transform: rotate(0deg) scale(1);
            opacity: 0.4;
        }

        25% {
            transform: rotate(90deg) scale(1.2);
            opacity: 0.7;
        }

        50% {
            transform: rotate(180deg) scale(1.4);
            opacity: 0.8;
        }

        75% {
            transform: rotate(270deg) scale(1.2);
            opacity: 0.6;
        }
    }

    @keyframes pumpkin-glow {

        0%,
        100% {
            transform: scale(1);
            filter: drop-shadow(0 0 8px rgba(251, 146, 60, 0.3));
        }

        50% {
            transform: scale(1.05);
            filter: drop-shadow(0 0 12px rgba(251, 146, 60, 0.5));
        }
    }

    @keyframes seasonal-pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.8;
        }

        50% {
            transform: scale(1.1);
            opacity: 1;
        }
    }

    /* Tablet Specific Seasonal */
    @media (min-width: 769px) and (max-width: 1024px) {
        .winter-corner {
            font-size: 1.4rem;
            opacity: 1;
            animation: winter-frost 8s ease-in-out infinite;
        }

        .snowflake {
            font-size: 1.1rem;
            opacity: 1;
            animation: snowfall 15s ease-in-out infinite;
        }
    }

    /* Large Screen Seasonal */
    @media (min-width: 1200px) {
        .winter-corner {
            font-size: 1.8rem;
            top: 20px;
            right: 20px;
            opacity: 1;
            animation: winter-frost 8s ease-in-out infinite;
        }
    }

    .snowflake {
        font-size: 1.4rem;
        opacity: 1;
        animation: snowfall 18s ease-in-out infinite;
    }

    .seasonal-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* ===== ADDITIONAL RESPONSIVE FIXES ===== */

/* Ensure promo card rounded corners work on all devices */
.promo-card-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.promo-card-image {
    border-radius: 20px;
}