/* ========================================
   ZiggyZooms Fancy Styles
   Primary Colors: #4a2911 (brown), #f89820 (orange), #fff3e5 (cream)
   ======================================== */

:root {
    --primary-brown: #4a2911;
    --primary-orange: #f89820;
    --primary-cream: #fff3e5;
    --accent-gold: #ffb84d;
    --dark-brown: #2d1a0a;
    --light-brown: #6b3d1e;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--primary-cream);
    color: var(--primary-brown);
    font-family: 'Varela', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
}

p {
    margin-bottom: 1.2rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.2rem;
    margin-top: 0.8rem;
}

/* === NAVIGATION === */
.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    box-shadow: 0 4px 20px rgba(74, 41, 17, 0.3);
}

.navbar-desktop,
.navbar-mobile {
    background: transparent;
}

/* Show desktop nav on large screens, hide mobile */
.navbar-desktop {
    display: block;
}

.navbar-mobile {
    display: none;
}

/* Show mobile nav on small screens, hide desktop */
@media (max-width: 991px) {
    .navbar-desktop {
        display: none;
    }

    .navbar-mobile {
        display: block;
    }
}

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

.logo-img {
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(248, 152, 32, 0.3));
}

.logo-img:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 4px 12px rgba(248, 152, 32, 0.5));
}

.nav-menu-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
}

/* Hamburger Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-cream);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-link {
    color: var(--primary-cream);
    text-decoration: none;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-orange);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
    background: rgba(248, 152, 32, 0.1);
}

.nav-link:hover::before,
.nav-link.w--current::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.w--current {
    color: var(--primary-orange);
    background: rgba(248, 152, 32, 0.15);
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-gold) 100%);
    padding: 4.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 6px rgba(74, 41, 17, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    animation: slideInDown 0.8s ease-out;
}

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

.hero-subtitle {
    position: relative;
    z-index: 1;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

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

.phone-link {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-brown);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(74, 41, 17, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.phone-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.phone-link:hover::before {
    width: 300px;
    height: 300px;
}

.phone-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(74, 41, 17, 0.5);
}

.hero-tagline {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

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

/* === LOGO SECTION === */
.logo-section {
    padding: 4.5rem 2rem;
    text-align: center;
    background: var(--primary-cream);
    background-image: url('../images/zwagon_full.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Optional: Add overlay to make logo more visible */
.logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 243, 229, 0.55);
    pointer-events: none;
}

.logo-container {
    position: relative;
    z-index: 1;
}

.logo-circle {
    animation: rotateIn 1s ease-out;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(74, 41, 17, 0.2));
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.logo-circle:hover {
    transform: scale(1.05) rotate(5deg);
}

.price-headline {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: 2.5rem;
    text-shadow: 2px 2px 4px rgba(248, 152, 32, 0.2);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.price-headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    border-radius: 2px;
}

/* === SCROLLING TAGLINE === */
.scrolling-tagline {
    background: var(--primary-brown);
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
}

.scrolling-tagline::before,
.scrolling-tagline::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.scrolling-tagline::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary-brown), transparent);
}

.scrolling-tagline::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--primary-brown));
}

.tagline-outer {
    width: 100%;
}

.tagline-inner {
    display: flex;
    animation: scroll 10s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tagline-text {
    color: var(--primary-orange);
    font-size: 1.8rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0 3rem;
    margin: 0;
}

/* === LONG DISTANCE SECTION === */
.long-distance-section {
    background: linear-gradient(135deg, var(--light-brown) 0%, var(--primary-brown) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.long-distance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(248, 152, 32, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(248, 152, 32, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.section-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--primary-cream);
    position: relative;
    z-index: 1;
}

.section-phone {
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

/* === BUTTONS === */
.button-primary {
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(248, 152, 32, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.button-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.button-primary:hover::before {
    width: 400px;
    height: 400px;
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 152, 32, 0.6);
    background: var(--accent-gold);
}

.button-container {
    position: relative;
    z-index: 1;
}

/* === HOURS GRID === */
.hours-grid {
    background: var(--primary-cream);
    padding: 4.5rem 2rem;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(300px, 500px));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.alt-background {
    background: linear-gradient(180deg, var(--primary-cream) 0%, #fff 100%);
}

/* Hide spacer cells */
.hours-grid > .w-layout-cell:nth-child(1),
.hours-grid > .w-layout-cell:nth-child(4),
.hours-grid > .w-layout-cell:nth-child(5),
.hours-grid > .w-layout-cell:nth-child(10) {
    display: none !important;
}

/* First column - Driving Hours header */
.hours-grid > .w-layout-cell:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    display: block !important;
}

/* Second column - Kitchen Hours header */
.hours-grid > .w-layout-cell:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    display: block !important;
}

/* Driving Hours - days and times wrapper */
.hours-grid > .w-layout-cell:nth-child(6) {
    grid-column: 1;
    grid-row: 2;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Driving Hours - times cell */
.hours-grid > .w-layout-cell:nth-child(7) {
    grid-column: 1;
    grid-row: 2;
    display: block !important;
    margin: 0 !important;
}

/* Kitchen Hours - days cell */
.hours-grid > .w-layout-cell:nth-child(8) {
    grid-column: 2;
    grid-row: 2;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Kitchen Hours - times cell */
.hours-grid > .w-layout-cell:nth-child(9) {
    grid-column: 2;
    grid-row: 2;
    display: block !important;
    margin: 0 !important;
}

.hours-heading {
    color: var(--primary-brown);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
}

.hours-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.w-layout-cell .w-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hours-days-cell,
.hours-times-cell {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 0;
    box-shadow: 0 4px 16px rgba(74, 41, 17, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hours-days-cell:hover,
.hours-times-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 41, 17, 0.15);
}

.hours-days,
.hours-times {
    color: var(--primary-brown);
    font-size: 1.2rem;
    line-height: 2;
    margin: 0;
    font-weight: 600;
}

/* Special styling for white text and orange italic text */
.white {
    color: var(--primary-brown) !important;
}

.orange-italic {
    color: var(--primary-orange) !important;
    font-style: italic;
}

/* === PICKUP TIME SECTION === */
.pickup-time-section {
    background: var(--primary-cream);
    padding: 4.5rem 2rem;
}

.pickup-time-parent {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.pickup-time-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(74, 41, 17, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.pickup-time-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
}

.pickup-time-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(248, 152, 32, 0.25);
    border-color: var(--primary-orange);
}

.pickup-label {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 0.8rem 0;
}

.pickup-heading {
    color: var(--primary-brown);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.5rem 0 1.2rem 0;
}

.pickup-condition {
    color: var(--light-brown);
    font-size: 1.1rem;
    margin: 1.2rem 0;
    font-weight: 600;
}

.pickup-time {
    color: var(--primary-orange);
    font-size: 3rem;
    font-weight: 700;
    margin: 1.2rem 0 0 0;
    text-shadow: 2px 2px 4px rgba(248, 152, 32, 0.2);
}

/* === NEWSLETTER SECTION === */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-gold) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(74, 41, 17, 0.3);
    letter-spacing: 3px;
}

.newsletter-description {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === FOOTER === */
.footer-grid {
    background: var(--primary-brown);
    padding: 3.5rem 2rem;
    color: var(--primary-cream);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-spacer {
    display: none;
}

.footer-address-cell {
    flex: 0 0 auto;
    order: 1;
    text-align: left;
}

.footer-social-cell {
    flex: 1;
    order: 2;
    display: flex;
    justify-content: center;
}

.footer-contact-cell {
    flex: 0 0 auto;
    order: 3;
    text-align: right;
}

.footer-logo-cell {
    flex: 0 0 auto;
    order: 3;
    text-align: right;
}

.footer-social-block {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.footer-social-link {
    background: rgba(248, 152, 32, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-4px) rotate(5deg);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(248, 152, 32, 0.4);
}

.social-icon {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-social-link:hover .social-icon {
    transform: scale(1.1);
}

.footer-contact,
.footer-address {
    color: var(--primary-cream);
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-link {
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    background: var(--dark-brown);
    padding: 2rem;
    text-align: center;
    color: var(--primary-cream);
}

.footer-legal-block {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: var(--primary-cream);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-legal-link:hover {
    color: var(--primary-orange);
}

.footer-copyright {
    color: rgba(255, 243, 229, 0.7);
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .phone-link {
        font-size: 2rem;
        padding: 0.8rem 1.5rem;
    }

    .price-headline {
        font-size: 2.2rem;
    }

    .tagline-text {
        font-size: 1.4rem;
    }

    .section-title,
    .newsletter-title {
        font-size: 2.2rem;
    }

    .nav-menu {
        flex-wrap: wrap;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-address-cell,
    .footer-social-cell,
    .footer-contact-cell,
    .footer-logo-cell {
        order: 0;
    }

    .footer-contact-cell,
    .footer-address-cell,
    .footer-logo-cell {
        text-align: center;
    }

    /* Stack hours vertically on tablet */
    .hours-grid {
        flex-direction: column;
    }

    .hours-grid .w-layout-cell:nth-child(2),
    .hours-grid .w-layout-cell:nth-child(3) {
        flex: 1 1 auto;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .phone-link {
        font-size: 1.5rem;
    }

    .pickup-time-parent {
        flex-direction: column;
    }

    .pickup-time-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* About page stuff */

.meet-team-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-gold) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.meet-team-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.meet-team-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 6px rgba(74, 41, 17, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.meet-team-description {
    font-size: 1.3rem;
    color: white;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.meet-team-tagline {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Company Officers Section */
.officers-section {
    background: var(--primary-brown);
    padding: 5rem 2rem 3rem;
}

.officers-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.officer-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.officer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
}

.officer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(248, 152, 32, 0.35);
}

.officer-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--primary-orange);
    box-shadow: 0 4px 16px rgba(74, 41, 17, 0.2);
}

.officer-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.officer-title {
    font-size: 1.2rem;
    color: var(--primary-orange);
    font-weight: 600;
}

/* Headshots Section */
.headshots-section {
    background: var(--primary-cream);
    padding: 5rem 2rem;
}

.headshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.headshot-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 6px 24px rgba(74, 41, 17, 0.1);
    transition: all 0.3s ease;
}

.headshot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(74, 41, 17, 0.15);
}

.headshot-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(74, 41, 17, 0.15);
}

.headshot-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.headshot-role {
    font-size: 1.1rem;
    color: var(--light-brown);
    font-weight: 600;
}

/* Board of Directors Section */
.board-section {
    background: var(--primary-cream);
    padding: 4rem 2rem;
}

.board-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.board-member {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(74, 41, 17, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.board-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 41, 17, 0.15);
    border-color: var(--primary-orange);
}

.board-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.board-role {
    font-size: 1rem;
    color: var(--light-brown);
    font-weight: 600;
    line-height: 1.5;
}

/* Team Members Section */
.team-section {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    padding: 5rem 2rem;
}

.team-category {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.team-category-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 152, 32, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-orange);
}

.team-member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 0.95rem;
    color: var(--primary-cream);
    font-weight: 500;
}

/* Join Team Section */
.join-team-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-gold) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-team-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.join-team-content {
    position: relative;
    z-index: 1;
}

.join-team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(74, 41, 17, 0.3);
}

.join-team-description {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .meet-team-title {
    font-size: 2.5rem;
    }
    
    .officers-grid,
    .board-grid,
    .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .meet-team-title {
    font-size: 2rem;
    }
    
    .meet-team-description {
    font-size: 1.1rem;
    }
    
    .officers-grid,
    .headshots-grid,
    .board-grid,
    .team-grid {
    grid-template-columns: 1fr;
    }
}

/* === HAMBURGER MENU - Add after existing mobile-menu-toggle styles === */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu-container.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(248, 152, 32, 0.2);
    }
}

/* === HOURS GRID MOBILE FIX === */
@media (max-width: 991px) {
    .hours-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    /* Show all cells and reset their grid positions */
    .hours-grid > .w-layout-cell {
        display: block !important;
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    /* Stack everything vertically */
    .hours-grid > .w-layout-cell:nth-child(6),
    .hours-grid > .w-layout-cell:nth-child(8) {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .hours-heading {
        font-size: 2rem;
    }
    
    .hours-days-cell,
    .hours-times-cell {
        padding: 1.5rem;
    }
    
    .hours-days,
    .hours-times {
        font-size: 1rem;
    }
}