/**
 * Video Banner Block Styles
 */

/* Editor specific styles - we still need these for the editor */
.vh-video-banner-editor {
    min-height: 400px;
}

.main-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.main-hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: clamp(5rem, 14vw, 14rem);
    font-weight: 400;
    line-height: 1;
    margin: 0;
    color: #fff;
    font-family: "Panama", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: clamp(1rem, 4vw, 5rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
    font-family: "Panama", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.main-hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 960px) {
    .main-hero-background video {
        width: 100%;
        height: 100%;
    }
}