.hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0; /* remove default section padding for full-width video */
    }
.hero-video-container {
    position: relative;
    width: 100vw;  
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
    }
.hero-video {
    /* 16:9 aspect ratio to keep the video responsive */
    aspect-ratio: 20.1 / 9;
    width: 100%;
    position: relative;
    background: #000;
    }
.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    }
/* Transparent overlay to disable hovering/clicking on the iframe */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: transparent;
    /* 
        This blocks pointer events to the iframe, 
        so no YouTube overlays on hover.
    */
    }
.hero-tagline {
    position: absolute;
    bottom: 20px; 
    left: 20px; 
    color: #fff;
    text-align: left;
    z-index: 1; 
    background-color: rgba(0, 0, 0, 0);
    padding: 20px; 
  }
.hero-tagline h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    }

@media (max-width: 768px) {
    .hero {
        min-height: unset !important;
        height: unset !important;
    }
}

