
.video-header {
    position: relative;
    width: 100%;
}

.video-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    
}

.video-no-shrink .video-navbar {
     background-color: var( --background-color-transparent );
}

.video-navbar.scrolled {
    background-color:  var( --background-color);

}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0) 100%
    );
}

.hero-text {
    padding: 2rem;
    margin-top: 4rem;
    color: #333;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-brand {
    position: relative;
    z-index: 2;
}

/* Scrolled State */
.header.scrolled {
    background-color: #ffffff;
    
}

.header.scrolled .navbar-nav .nav-link {
    color: #333;
}

.header.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Anpassungen */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255,255,255,0.9);
        padding: 1rem;
        border-radius: 8px;
    }

    .navbar-nav .nav-link {
        color: #333;
    }
}