/*--------------------------------------------------------------
# Hero Section Styles - Updated
--------------------------------------------------------------*/
.hero-section {
    /* Mobile container padding */
    padding: var(--container-padding-mobile) var(--section-padding-vertical);
    margin-bottom: 15px;
    background-color: var(--color-background);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 87vh;
}

/* MARK: > Titles */
.hero-text-content {
    max-width: 500px;
    margin-top: 10vh;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.hero-text-content h1 {
    width: 180px;
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    /* Now fluid */
    margin-bottom: 0.4em;
    font-weight: 800;
    line-height: 1.25;
    text-wrap: balance;
}

.mobile-break {
    display: block;
}

.hero-text-content h2 {
    font-family: var(--font-primary);
    width: 190px;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    /* Fluid */
    margin-bottom: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-light);
}

.hero-text-content h3 {
    font-family: var(--font-secondary);
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    /* Fluid */
    line-height: 1.45;
    font-weight: 500;
    margin-bottom: 1em;
    color: var(--color-text);
}

.curly-arrow-cta {
    width: clamp(55px, 10vw, 75px);
    position: absolute;
    top: 60%;
    right: 10%;
    transform: rotate(-7deg);
}

.hero-text-content .cta-button {
    margin-top: 0px;
    background-color: var(--color-primary-accent);
    padding: 10px 18px;
    font-size: var(--font-size-small);
    font-weight: 700;
}

.disclaimer {
    font-family: var(--font-secondary);
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    /* Fluid */
    color: var(--color-text-lightest);
    margin-top: 0.6em;
    font-style: italic;
}

/* MARK: > img collage - Preserve overlay behavior */
.hero-img {
    position: absolute;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    z-index: 2;
}

/* Mobile: Images overlay screen edges */
.hero-img-people {
    width: 60vw;
    width: 120px;
    top: 3%;
    left: -2%;
    /* Overlay left edge */
    transform: rotate(10deg);
}

.hero-img-mickey {
    width: 30vw;
    width: 110px;
    top: 27%;
    left: -5%;
    /* Overlay left edge */
    transform: rotate(-8deg);
}

.hero-img-horses {
    width: 33vw;
    width: 120px;
    top: 58%;
    left: -8%;
    /* Overlay left edge */
    transform: rotate(10deg);
}

.hero-img-smiley {
    width: 30vw;
    width: 105px;
    top: 3vh;
    right: 1.5%;
    /* Overlay right edge */
    transform: rotate(-8deg);
}

.hero-img-bluemural {
    width: 28vw;
    width: 100px;
    top: 22%;
    right: -4%;
    /* Overlay right edge */
    transform: rotate(10deg);
}

.hero-img-cyclist {
    width: 28vw;
    width: 100px;
    top: 55%;
    right: -4%;
    /* Overlay right edge */
    transform: rotate(-10deg);
}

/* MARK: > brands scroller */
.hero-brands-scroller-wrapper {
    width: 100%;
    padding: 15px 0;
    position: absolute;
    bottom: 0%;
    left: 0;
    z-index: 1;
}

.hero-brands-scroller-wrapper h6 {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 10px;
    font-size: var(--font-size-small);
}

.hero-brands-scroller {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--container-padding-mobile, 15px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-brands-scroller span {
    font-family: var(--font-secondary);
    font-weight: 500;
    margin-right: 10px;
    font-size: var(--font-size-small);
    color: var(--color-text-lighter);
    white-space: nowrap;
    flex-shrink: 0;
}

.logos-track {
    display: flex;
    align-items: center;
    animation: scrollLogos 100s linear infinite;
}

.logos-track img {
    width: 60px;
    max-height: 50px;
    opacity: 0.7;
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-brands-scroller-wrapper::before,
.hero-brands-scroller-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.hero-brands-scroller-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-background) 5%, transparent);
}

.hero-brands-scroller-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-background) 5%, transparent);
}

/* RESPONSIVE - Standardized breakpoints */
/* MARK: > Tablet 768px */
@media (min-width: 768px) {
    .hero-section {
        /* Larger screens: add padding, images grow */
        padding: var(--container-padding-tablet) var(--section-padding-vertical);
        margin-top: 60px;
        margin-bottom: 40px;
        min-height: 85vh;
    }

    .hero-text-content {
        max-width: 580px;
        margin-top: 18vh;
        margin-bottom: 40px;
    }

    .hero-text-content h1 {
        width: 500px;
        line-height: 1.2;
    }

    .hero-text-content h2 {
        width: 320px;
        line-height: 1.6;
        margin-bottom: 1.5em;
    }

    .mobile-break {
        display: none;
    }

    /* Images grow and respect padding on larger screens */
    .hero-img {
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .hero-img-people {
        width: 150px;
        top: 2vh;
        left: 8vw;
        /* Respect padding */
        transform: rotate(-10deg);
    }

    .hero-img-mickey {
        width: 150px;
        top: 20vh;
        left: 5vw;
        /* Respect padding */
        transform: rotate(-15deg);
    }

    .hero-img-horses {
        width: 160px;
        top: 43vh;
        left: 7vw;
        /* Respect padding */
        transform: rotate(8deg);
    }

    .hero-img-smiley {
        width: 150px;
        top: 2vh;
        right: 10vw;
        /* Respect padding */
        transform: rotate(12deg);
    }

    .hero-img-bluemural {
        width: 160px;
        top: 15vh;
        right: 5vw;
        /* Respect padding */
        transform: rotate(10deg);
    }

    .hero-img-cyclist {
        width: 130px;
        top: 40vh;
        right: 8vw;
        /* Respect padding */
        transform: rotate(-5deg);
    }

    .hero-brands-scroller-wrapper {
        margin-top: 60px;
        padding: 20px 0;
    }

    .hero-brands-scroller {
        padding: 0 var(--container-padding-tablet, 30px);
    }

    .hero-brands-scroller-wrapper h6 {
        margin-bottom: 25px;
    }

    .hero-brands-scroller span {
        margin-right: 15px;
    }

    .logos-track {
        animation-duration: 100s;
    }

    .logos-track img {
        width: 80px;
        max-height: 60px;
        opacity: 0.7;
        margin-right: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* MARK: > Desktop 1024px */
@media (min-width: 1024px) {
    .hero-section {
        padding: 60px var(--container-padding-desktop, 40px) 0 var(--container-padding-desktop, 40px);
        min-height: 85vh;
    }

    .hero-text-content {
        max-width: 620px;
        margin-top: 13vh;
    }

    .hero-text-content h1 {
        width: 620px;
    }

    .hero-text-content h2 {
        width: 450px;
        line-height: 1.6;
        margin-bottom: 1.5em;
    }


    .hero-img-people {
        width: 170px;
        top: 3vh;
        left: 10vw;
    }

    .hero-img-mickey {
        width: 200px;
        top: 20vh;
        left: 8vw;
    }

    .hero-img-horses {
        width: 200px;
        top: 45vh;
        left: 10vw;
    }

    .hero-img-smiley {
        width: 210px;
        top: 3vh;
        right: 5vw;
    }

    .hero-img-bluemural {
        width: 180px;
        top: 25vh;
        right: 5vw;
    }

    .hero-img-cyclist {
        width: 120px;
        top: 45vh;
        right: 15vw;
        transform: rotate(-25deg);
    }

    .hero-brands-scroller {
        padding: 0 var(--container-padding-desktop, 40px);
    }
}

/* MARK: > Big Screens 1200px */
@media (min-width: 1200px) {
    .hero-section {
        min-height: 87vh;
    }

    .hero-text-content {
        max-width: 650px;
    }
}