/* YouTube Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

#youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Responsive video sizing */
@media (min-aspect-ratio: 16/9) {
    #youtube-player {
        height: 56.25vw; /* 16:9 aspect ratio */
    }
}

@media (max-aspect-ratio: 16/9) {
    #youtube-player {
        width: 177.78vh; /* 16:9 aspect ratio */
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 35, 31, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-wrapper-three {
    position: relative;
    min-height: 100vh;
}

.hero-wrapper-three .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-button {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-button {
        flex-direction: column;
    }
}
