/* MODULE: HOMEPAGE HERO V2 STYLES */
.module-homepage-hero-v2 {
    position: relative;
    display: flex;
    align-items: center;
    height: 850px;
    margin-top: calc(var(--header-heights, 112px) * -1);
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

/* Dark scrim over the video/image so the overlay text stays legible */
.module-homepage-hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;   
    background: linear-gradient(180deg, rgba(6, 21, 42, 0.55) 0%, rgba(6, 21, 42, 0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

.module-homepage-hero-v2 .hero-video-background,
.module-homepage-hero-v2 .hero-overlay-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.module-homepage-hero-v2 .hero-video-background video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-homepage-hero-v2 .hero-video-background iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    pointer-events: none;
}

.module-homepage-hero-v2 .hero-overlay-image {
    background-size: cover;
    background-position: center;
}

.module-homepage-hero-v2 .row {
    position: relative;
    z-index: 1;
    width: 100%;
}

.module-homepage-hero-v2 .hero-inner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: var(--py-section);
    padding-bottom: var(--py-section);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.module-homepage-hero-v2 .hero-eyebrow {
    display: inline-block;
    font-family: var(--font-family-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.module-homepage-hero-v2 .hero-heading {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-h1);
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 20px;
}

.module-homepage-hero-v2 .hero-description {
    font-family: var(--font-family-body);
    font-size: 1.10rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 35px;
}

.module-homepage-hero-v2 .hero-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.module-homepage-hero-v2 .hero-cta-wrapper .btn {
    display: inline-block;
    background-color: var(--color-red, #a70f16);
    color: var(--color-white);
    font-family: var(--font-family-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.module-homepage-hero-v2 .hero-cta-wrapper .btn:hover {
    background-color: var(--color-secondary-light, #b72f00);
}

@media (min-width: 1025px) {
    .module-homepage-hero-v2 .hero-inner {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}