#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.parallax-window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}
.parallax-element {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}
.video-wrapper video {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}
#hero .hero-content-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero .hero-logo {
    max-width: 320px;
    width: 100%;
    opacity: 0;
    animation: heroLogoFadeIn 0.8s ease forwards;
    animation-delay: 0.6s;
}
@keyframes heroLogoFadeIn {
    to { opacity: 1; }
}
@media (min-width: 768px) {
    #hero .hero-logo {
        max-width: 520px;
    }
}
#hero .gradient-bg {
    position: absolute;
    z-index: 3;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, black);
}