/* Video Hero Block Styles */
.video-hero-block {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.video-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-hero-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-hero-content {
    position: absolute;
    bottom: 56px;
    left: 0;
    right: 0;
    z-index: 2;
}

.video-hero-content .container {
    position: relative;
}

.hero-text-overlay {
    background: #03748166;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 2rem 3rem;
    color: white;
    font-weight: 500;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: left;
    max-width: 680px;
}

.hero-text-overlay h1,
.hero-text-overlay h2,
.hero-text-overlay h3,
.hero-text-overlay h4,
.hero-text-overlay h5,
.hero-text-overlay h6,
.hero-text-overlay p {
    color: white;
    font-weight: 500;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-hero-block {
        height: calc(100vh - 100px);
    }

    .video-hero-content {
        bottom: 0;
        left: 0;
        right: 0;
    }

    .video-hero-content .container {
        padding: 0;
    }

    .hero-text-overlay {
        padding: 24px;
        font-weight: 500;
        font-size: 38px;
        line-height: 120%;
        letter-spacing: 0;
        text-align: center;
        text-transform: uppercase;
        max-width: none;
        width: auto;
    }

    .hero-text-overlay h1,
    .hero-text-overlay h2,
    .hero-text-overlay h3,
    .hero-text-overlay h4,
    .hero-text-overlay h5,
    .hero-text-overlay h6,
    .hero-text-overlay p {
        font-weight: 500;
        font-size: 38px;
        line-height: 120%;
        letter-spacing: 0;
        text-align: center;
        text-transform: uppercase;
    }

    .video-hero-caption {
        font-weight: 450;
        font-size: 20px;
        line-height: 120%;
        letter-spacing: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .video-hero-block {
        height: calc(100vh - 108px);
    }

    .video-hero-content {
        bottom: 0;
        left: 0;
        right: 0;
    }

    .video-hero-content .container {
        padding: 0;
    }

    .hero-text-overlay {
        padding: 24px;
        font-weight: 500;
        font-size: 38px;
        line-height: 120%;
        letter-spacing: 0;
        text-align: center;
        text-transform: uppercase;
        max-width: none;
        width: auto;
    }

    .hero-text-overlay h1,
    .hero-text-overlay h2,
    .hero-text-overlay h3,
    .hero-text-overlay h4,
    .hero-text-overlay h5,
    .hero-text-overlay h6,
    .hero-text-overlay p {
        font-weight: 500;
        font-size: 38px;
        line-height: 120%;
        letter-spacing: 0;
        text-align: left;
        text-transform: uppercase;
    }

    .video-hero-caption {
        font-weight: 450;
        font-size: 20px;
        line-height: 120%;
        letter-spacing: 0;
        text-align: center;
    }
}

.video-hero-caption {
    background-color: #037481;
    font-weight: 450;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    padding: 40px 0;
}
