/* Video Header Styles */
.video-header-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-header-container.scrolled {
    height: 50vh;
}

.video-header-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-header-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.video-header-control {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.video-header-control:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-header-control svg {
    width: 22px;
    height: 22px;
    color: #333;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .video-header-container {
        height: 70vh;
    }

    .video-header-container.scrolled {
        height: 40vh;
    }

    .video-header-controls {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .video-header-control {
        width: 42px;
        height: 42px;
    }

    .video-header-control svg {
        width: 20px;
        height: 20px;
    }
}

/* Berücksichtigung der Navigation */
@media (min-width: 992px) {
    .video-header-container {
        margin-top: -80px;
        padding-top: 80px;
    }
}