/**
 * Random Video Banner - CSS
 * For WordPress/Elementor
 */

.video-banner {
    position: relative;
    background-color: #000000;
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    z-index: 10;
}

.video-banner__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-banner__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 2;
    opacity: 0.35;
    pointer-events: none;
}

.video-banner__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    color: #ffffff;
    text-align: center;
}

.video-banner__title {
    font-size: 5.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    max-width: 70rem;
}

.video-banner__subtitle {
    font-size: 1.8rem;
    line-height: 1.4;
    max-width: 50rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-banner {
        min-height: 400px;
    }

    .video-banner__title {
        font-size: 2.5rem;
    }

    .video-banner__subtitle {
        font-size: 1.4rem;
    }
}
