* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Cabin', sans-serif;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #000000;
    NONO_background-image: url('preload_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    min-height: 100vh;
    height: auto;
    object-fit: cover;
}

/* Optionaler Inhalt über dem Video */
.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Buttons Container */
.button-container {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.button-row {
    display: flex;
    gap: 20px;
}

/* Button Styles */
.btn {
    width: 155px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-youtube {
    background-color: #FF0000;
    color: white;
}

.btn-youtube:hover {
    background-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.btn-youtube svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.btn-werbefilme {
    background-color: #3B429F;
    color: white;
}

.btn-werbefilme:hover {
    background-color: #2d3380;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 66, 159, 0.4);
}

.btn-kontakt {
    background-color: white;
    color: black;
    width: 330px;
}

.btn-kontakt:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.modal-close:hover {
    color: #000;
}

.modal-content h2 {
    font-family: 'Cabin', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #3B429F;
    margin-bottom: 20px;
}

.modal-content p {
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.modal-content a {
    color: #3B429F;
    text-decoration: none;
    font-weight: 600;
}

.modal-content a:hover {
    text-decoration: underline;
}

/* Copyright */
.copyright {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    text-align: center;
    color: white;
    opacity: 0.5;
    font-family: 'Cabin', sans-serif;
    font-size: 14px;
    z-index: 10;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.language-switcher a {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-family: 'Cabin', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-switcher a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Mobile Anpassungen */
@media (max-width: 770px), (orientation: portrait) and (max-width: 1024px) {
    .button-container {
        width: calc(100% - 40px);
        bottom: 50px;
    }

    .button-row {
        width: 100%;
    }

    .button-row .btn {
        flex: 1;
        min-width: 0;
    }

    .btn-kontakt {
        width: 100%;
        height: 40px;
    }

    .copyright {
        bottom: 15px;
        font-size: 12px;
    }
}
