/* Hero Section */
.hero {
    min-height: calc(100vh - var(--nav-height));
    margin-top: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    background: #000;
    overflow: hidden;
}

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

.hero-video-container iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
        min-height: calc(50vh - var(--nav-height));
    }
}
