/* Fullscreen Background Video */
.video-container, .background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* Aspect ratio for 16:9 videos */
    min-height: 100vh;
    min-width: 177.78vh; /* Aspect ratio fix */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Hidden Image to Replace Video */
.background-image {
    display: none;
}

#div1 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    font-size: 2em;
    font-weight: bold;
    color: white;
    width: 100%; 
    display: flex;
    flex-direction: column; /* Ensures h1 and h2 are stacked */
    justify-content: center;
    align-items: center;
    text-align: center;
}

#div1-header {
    text-align: center;
    transform-origin: center; /* Ensures scaling doesn't shift the position */
}

#coming-soon {
    text-align: center;
    margin-top: 10px; /* Adds space between h1 and h2 */
}

