/**
 * Hero Video Iframe Styles
 * Maintains the same styling as the original Hero Video pattern
 */

.hero-video-iframe-container {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

.hero-video-iframe-container .hero-iframe-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%);
    border: none;
    pointer-events: none; /* Prevent interaction with iframe */
}

.hero-video-iframe-container .hero-iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* 30% opacity - same as original */
    z-index: 2;
}

.hero-video-iframe-container > .wp-block-group {
    position: relative;
    z-index: 3;
}

/* Ensure content is above the video */
.hero-video-iframe-container .container {
    position: relative;
    z-index: 3;
}
