/* ===== CSS VARIABLES (Brand Colours) ===== */
:root {
    --bargain-red: #B21D13;
    --bargain-red-dark: #8a1710;
    --trust-blue: #3271D9;
    --trust-blue-dark: #2558a8;
    --value-yellow: #FAB314;
    --value-yellow-light: #ffeeba;
    --deep-navy: #211F5F;
    --white: #FFFFFF;
    --light-grey: #F8F9FA;
    --grey: #6c757d;
    --dark-grey: #343a40;
    --header-height: 85px;
    --header-height-mobile: 70px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--deep-navy);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

    body.menu-open {
        overflow: hidden;
    }

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--trust-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--trust-blue-dark);
    }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .site-header.scrolled {
        height: 75px;
        box-shadow: 0 2px 20px rgba(0,0,0,0.12);
    }

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

    .header-logo .logo-desktop {
        height: 60px;
        width: auto;
        transition: height 0.3s ease;
    }

.site-header.scrolled .logo-desktop {
    height: 50px;
}

.header-logo .logo-mobile {
    display: none;
    height: 45px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

    .nav-links li a {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--deep-navy);
        border-radius: 6px;
        transition: all 0.3s ease;
    }

        .nav-links li a:hover {
            background: var(--light-grey);
            color: var(--trust-blue);
        }

    .nav-links .nav-spacer {
        width: 40px;
    }

    .nav-links .nav-facebook {
        background: var(--trust-blue);
        color: var(--white) !important;
        margin-left: 5px;
    }

        .nav-links .nav-facebook:hover {
            background: var(--trust-blue-dark);
        }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--deep-navy);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--deep-navy);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

    .mobile-nav-links li {
        margin: 12px 0;
    }

        .mobile-nav-links li a {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: var(--white);
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }

            .mobile-nav-links li a:hover {
                color: var(--value-yellow);
            }

/* ===== MAIN CONTENT ===== */
main {
    margin-top: var(--header-height);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: auto;
    background: linear-gradient(135deg, #FEF3D1 0%, #FDE9B0 30%, #FFFFFF 55%, #D4E4FC 80%, #B8D4FC 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 25px 55px;
    overflow: hidden;
}

    /* Subtle pattern overlay */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233271D9' fill-opacity='0.03'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Hero Headline */
.hero-headline {
    margin-bottom: 20px;
}

    .hero-headline .headline-top {
        display: block;
        font-family: 'Open Sans', sans-serif;
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        font-weight: 600;
        color: var(--trust-blue);
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .hero-headline .headline-main {
        display: block;
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(3rem, 10vw, 5.5rem);
        color: var(--deep-navy);
        letter-spacing: 3px;
        line-height: 1;
    }

/* Hero Tagline */
.hero-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    color: var(--bargain-red);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background: var(--bargain-red);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    letter-spacing: 3px;
    padding: 14px 40px;
    border-radius: 6px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(178, 29, 19, 0.3);
    position: relative;
    overflow: hidden;
}

    .coming-soon-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
        animation: shine 3s infinite;
    }

@keyframes shine {
    0% {
        left: -100%;
    }

    50%, 100% {
        left: 100%;
    }
}

/* ===== INFO STRIP ===== */
.info-strip {
    background: var(--deep-navy);
    padding: 0;
}

.info-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.info-strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 35px;
    flex: 1;
    max-width: 380px;
}

.info-strip-icon {
    width: 45px;
    height: 45px;
    background: var(--value-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-strip-icon svg {
        width: 22px;
        height: 22px;
        fill: var(--deep-navy);
    }

.info-strip-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .info-strip-text strong {
        color: var(--white);
        font-size: 0.95rem;
        font-weight: 700;
    }

    .info-strip-text span {
        color: rgba(255,255,255,0.75);
        font-size: 0.85rem;
    }

.info-strip-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
    margin: 15px 0;
}

.about-section {
    padding: 45px 25px 70px;
    background: var(--white);
}


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

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

    .section-header h2 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        color: var(--deep-navy);
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 1.05rem;
        color: var(--grey);
        max-width: 500px;
        margin: 0 auto;
    }

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-card {
    background: var(--light-grey);
    padding: 35px 28px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .about-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

.about-card-icon {
    width: 60px;
    height: 60px;
    background: var(--trust-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

    .about-card-icon svg {
        width: 28px;
        height: 28px;
        fill: var(--white);
    }

.about-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    color: var(--deep-navy);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-card p {
    color: var(--grey);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 45px 25px 85px;
    background: var(--light-grey);
}

    .map-section .section-header h2 {
        color: var(--deep-navy);
    }

    .map-section .section-header p {
        color: var(--grey);
    }

.map-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-info {
    background: var(--deep-navy);
    padding: 35px 30px;
    color: var(--white);
}

    .map-info h3 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.6rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
        color: var(--value-yellow);
    }

    .map-info address {
        font-style: normal;
        line-height: 1.8;
        font-size: 0.95rem;
        color: rgba(255,255,255,0.85);
        margin-bottom: 25px;
    }

.map-hours h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.map-hours ul {
    list-style: none;
}

    .map-hours ul li {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.85);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        .map-hours ul li:last-child {
            border-bottom: none;
        }

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 12px 24px;
    background: var(--value-yellow);
    color: var(--deep-navy);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .directions-btn:hover {
        background: var(--white);
        color: var(--deep-navy);
    }

.map-container {
    min-height: 350px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        min-height: 350px;
        border: none;
        display: block;
    }

/* ===== SOCIAL CTA SECTION ===== */
.social-cta {
    padding: 60px 25px;
    background: var(--trust-blue);
    text-align: center;
}

.social-cta-content {
    max-width: 550px;
    margin: 0 auto;
}

.social-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.social-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--trust-blue);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

    .facebook-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        color: var(--trust-blue);
    }

    .facebook-btn svg {
        width: 20px;
        height: 20px;
        fill: #1877F2;
    }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--deep-navy);
    color: var(--white);
}

.footer-top {
    padding: 50px 25px 35px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--value-yellow);
}

.footer-info h4,
.footer-hours h4,
.footer-social h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-info p,
.footer-hours p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.75;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .footer-social-link:hover {
        color: var(--white);
    }

    .footer-social-link svg {
        fill: currentColor;
    }

.footer-bottom {
    padding: 20px 25px;
    text-align: center;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.5);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .info-strip-item {
        padding: 20px 25px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .map-wrapper {
        grid-template-columns: 1fr;
    }

    .map-info {
        text-align: center;
    }

    .map-hours ul li {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 850px) {
    .nav-links {
        gap: 3px;
    }

        .nav-links li a {
            padding: 8px 12px;
            font-size: 0.85rem;
        }

    .info-strip-container {
        flex-direction: column;
    }

    .info-strip-item {
    max-width: none;
    justify-content: flex-start;
    padding: 18px 25px 18px 60px;
    }

    .info-strip-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }

    .header-container {
        padding: 0 20px;
    }

    .header-logo .logo-desktop {
        display: none;
    }

    .header-logo .logo-mobile {
        display: block;
        height: 42px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 45px 20px;
    }

    .about-section,
    .map-section {
        padding: 50px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }

    .coming-soon-badge {
        padding: 12px 28px;
        letter-spacing: 2px;
    }

    .about-card {
        padding: 28px 22px;
    }

    .social-cta {
        padding: 45px 20px;
    }

    .facebook-btn {
        padding: 12px 26px;
        font-size: 0.95rem;
    }

    .map-info {
        padding: 28px 22px;
    }
}
