/*
==============================================================================
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: 1200px;
    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;
    }

    .dressings,
    .add-ons {
        flex: 1;
    }
}

@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;
        margin: 0;
    }

    .extras-combined-container .dressings::before,
    .extras-combined-container .add-ons::before {
        display: none;
    }
}

@media (min-width: 1200px) {
    .extras {
        padding: 100px 60px;
    }

    .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: 120px 80px;
    }

    .extras .section-title {
        font-size: 3.5rem;
    }

    .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 */
.hero-section {
    padding: 120px 15px 30px;
    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;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Hero Branding Section */
.hero-branding {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.hero-snack-logo {
    width: 90px;
    height: 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: 1.6rem;
    font-weight: 600;
    color: var(--primary-green);
    text-shadow: 0 2px 4px rgba(45, 80, 22, 0.1);
}

.secondary-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-medium);
    text-shadow: 0 2px 4px rgba(45, 80, 22, 0.1);
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 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: 20px;
}

.promo-card-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 8px solid var(--primary-green);
    position: relative;
}

.promo-card-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 4px dashed var(--accent-green);
    border-radius: calc(var(--border-radius) + 8px);
    pointer-events: none;
    z-index: -1;
}

.promo-card-image::after {
    content: '🥪 FRESH DAILY 🥪';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 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;
}

.promo-card-image:hover {
    transform: translateY(-5px);
    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;
}

.promo-card-image {
    cursor: pointer;
}

/* ===== 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;
}

.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);
}

.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: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.1);
    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: 1200px;
    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-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);
}

.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: 1200px;
    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;
}

/* ===== CONTACT SECTION ===== */

.contact {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--warm-white) 100%);
    position: relative;
}

.contact-container {
    max-width: 1200px;
    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 {
    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;
}

.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: 300px;
    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;
}

/* ===== 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);
}

.visit-cta {
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.visit-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 4s infinite;
}

.cta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.visit-cta h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.visit-cta .cta-primary,
.visit-cta .cta-secondary,
.visit-cta .cta-tertiary {
    background: var(--warm-white);
    color: var(--accent-green);
    border: 2px solid transparent;
}

.visit-cta .cta-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.visit-cta .cta-tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.visit-cta .cta-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.visit-cta .cta-secondary:hover {
    background: white;
    color: var(--accent-green);
    transform: translateY(-2px);
}

.visit-cta .cta-tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== 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;
}

.gallery-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    text-align: center;
}

.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.8rem;
    }
}

@media (min-width: 1024px) {
    .gallery {
        padding: 80px 40px;
    }

    .gallery-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 767px) {
    .gallery-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,
        #fef7f0 0%,
        #fef3ec 25%,
        #fff4ed 50%,
        #fef3ec 75%,
        #fef7f0 100%);
    border-top: 4px solid #d97706;
    overflow: hidden;
}

.seasonal-hours::before {
    background: linear-gradient(90deg, #d97706, #ea580c, #dc2626);
}

/* Seasonal Decorations Container */
.seasonal-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Autumn Glow Background Effect */
.autumn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(251, 146, 60, 0.03) 0%,
        rgba(245, 101, 101, 0.02) 25%,
        rgba(217, 119, 6, 0.01) 50%,
        transparent 70%
    );
    animation: autumn-glow 8s ease-in-out infinite;
}

/* Falling Leaves Animation */
.falling-leaves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.leaf {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.7;
    animation: fall 12s linear infinite;
    filter: drop-shadow(0 1px 3px rgba(194, 65, 12, 0.2));
}

.leaf-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.leaf-2 {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.leaf-3 {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 11s;
}

.leaf-4 {
    left: 75%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.leaf-5 {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 15s;
}

/* Pumpkin Corner Decoration */
.pumpkin-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.8;
    animation: pumpkin-glow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(251, 146, 60, 0.3));
    z-index: 2;
}

/* Seasonal Icon Styling */
.seasonal-icon {
    position: relative;
    background: linear-gradient(135deg,
        rgba(251, 146, 60, 0.15) 0%,
        rgba(217, 119, 6, 0.1) 100%);
    border: 2px solid rgba(217, 119, 6, 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: seasonal-pulse 2s ease-in-out infinite;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

/* Tablet Responsive */
@media (min-width: 768px) {
    /* Hero Section - Tablet */
    .hero-section {
        padding: 150px 30px 50px;
    }

    .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: 700px;
    }

    /* 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) {
    /* Hero Section - Desktop */
    .hero-section {
        padding: 140px 40px 60px;
    }

    .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: 900px;
    }

    /* Section Paddings - Desktop */
    .hero {
        padding: 140px 40px 80px;
    }

    .menu {
        padding: 80px 40px;
    }

    .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 {
        font-size: 3.2rem;
        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: 80px 60px;
        border-radius: 24px;
        margin-top: 80px;
        position: relative;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .visit-cta h3 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 1.3rem;
        margin-bottom: 35px;
        max-width: 600px;
        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: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .visit-cta .cta-primary,
    .visit-cta .cta-secondary,
    .visit-cta .cta-tertiary {
        min-width: 160px;
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    /* 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;
    }
}

/* Ultra-wide Desktop Responsive */
@media (min-width: 1400px) {
    /* About Section - Ultra-wide */
    .about {
        padding: 100px 60px;
    }

    .about-title {
        font-size: 3.8rem;
        margin-bottom: 80px;
    }

    .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 {
        font-size: 3rem;
        margin-bottom: 50px;
        text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.1);
    }

    .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: 600px;
        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: 140px 15px 25px;
    }

    .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: 12px;
        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 */
    .pumpkin-corner {
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }

    .leaf {
        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;
    }
}

/* ===== SEASONAL ANIMATIONS ===== */

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    20% {
        transform: translateY(-50px) rotate(45deg);
    }
    40% {
        transform: translateY(20px) rotate(90deg);
    }
    60% {
        transform: translateY(80px) rotate(135deg);
    }
    80% {
        transform: translateY(140px) rotate(180deg);
    }
    100% {
        transform: translateY(200px) rotate(225deg);
        opacity: 0;
    }
}

@keyframes autumn-glow {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        opacity: 0.4;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.5;
    }
    75% {
        transform: rotate(270deg) scale(1.1);
        opacity: 0.4;
    }
}

@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) {
    .pumpkin-corner {
        font-size: 1.4rem;
    }

    .leaf {
        font-size: 1.1rem;
    }
}

/* Large Screen Seasonal */
@media (min-width: 1200px) {
    .pumpkin-corner {
        font-size: 1.8rem;
        top: 20px;
        right: 20px;
    }

    .leaf {
        font-size: 1.4rem;
    }

    .seasonal-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}