/* WICHTIG: Entfernt den Standard-Rand des Browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {

    /* Für Firefox */
    scrollbar-width: none;

    /* Für Internet Explorer und alte Edge-Versionen */
    -ms-overflow-style: none;

    /* Verhindert horizontales Wackeln/Scrollen */
    overflow-x: hidden;
}

/* Für Chrome, Safari, Opera und den neuen Microsoft Edge */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
}







/* Container für die gesamte Seite */
.div-video-start {
    position: relative;
    height: 100vh;
    /* overflow-y: scroll; */
    scroll-snap-type: y mandatory;
    /* Erzwingt das Einrasten beim Scrollen */
}

/* Jede Sektion nimmt genau den Bildschirm ein */
section {
    height: 100%;
    width: 100%;
    scroll-snap-align: start;
    /* Sektion rastet am oberen Rand ein */
}

/* Video füllt den Hintergrund der ersten Sektion aus */
#bg-video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Video wird beschnitten, um den Screen zu füllen */
    display: block;
    /* Entfernt winzige Lücken unter dem Video */
    border: none;
}

.scroll-arrow {
    position: absolute;
    /* Wandert innerhalb von .video-section mit */
    bottom: 50px;
    /* Fixer Abstand zum Ende des Videos */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

#arrow-img {
    width: 40px;
    animation: bounce 2s infinite;
    filter: invert(1);
}

/* Die Animation bleibt gleich */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

.div-video-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1100px;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    padding: 0px;
}

#logo-blue {
    color: rgb(159, 159, 240);
    font-size: 70px;
}

#logo-withe {
    color: white;
    font-size: 70px;
}

.div-video-text1 {
    position: absolute;
    top: 16px;
    width: auto;
    margin-left: 215px;
}

.div-video-text2 {
    position: absolute;
    top: 90px;
    right: 0px;
    color: white;
    font-size: 36px;
}

.div-video-text3 {
    position: absolute;
    bottom: 28px;
    margin-left: 215px;
    color: white;
    font-size: 36px;
}

#video-logo {
    max-width: 220px;
}

@media (max-width: 400px) {
    .div-video-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 350px;
        transform: translate(-50%, -50%);
        display: flex;
        gap: 10px;
        padding: 0px;
    }

    #logo-blue {
        color: rgb(159, 159, 240);
        font-size: 20px;
    }

    #logo-withe {
        color: white;
        font-size: 20px;
    }

    .div-video-text1 {
        position: absolute;
        top: 5px;
        width: auto;
        margin-left: 85px;
    }

    .div-video-text2 {
        position: absolute;
        top: 30px;
        right: 0px;
        color: white;
        font-size: 12px;
    }

    .div-video-text3 {
        position: absolute;
        bottom: 13px;
        margin-left: 85px;
        color: white;
        font-size: 12px;
    }

    #video-logo {
        max-width: 80px;
    }

    .scroll-arrow {
        position: absolute;
        /* Wandert innerhalb von .video-section mit */
        bottom: 400px;
        /* Fixer Abstand zum Ende des Videos */
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    #arrow-img {
        width: 30px;
        animation: bounce 2s infinite;
        filter: invert(1);
    }
}

@media (max-width: 1500px) {
    .div-video-logo {
        position: absolute;
        top: 30%;
        left: 50%;
        width: 700px;
        transform: translate(-50%, -50%);
        display: flex;
        gap: 10px;
        padding: 0px;
    }

    #logo-blue {
        color: rgb(159, 159, 240);
        font-size: 40px;
    }

    #logo-withe {
        color: white;
        font-size: 40px;
    }

    .div-video-text1 {
        position: absolute;
        top: 10px;
        width: auto;
        margin-left: 155px;
    }

    .div-video-text2 {
        position: absolute;
        top: 50px;
        right: 0px;
        color: white;
        font-size: 25px;
    }

    .div-video-text3 {
        position: absolute;
        bottom: 20px;
        margin-left: 155px;
        color: white;
        font-size: 25px;
    }

    #video-logo {
        max-width: 150px;
    }

    .scroll-arrow {
        display: none;
        position: absolute;
        /* Wandert innerhalb von .video-section mit */
        bottom: 150px;
        /* Fixer Abstand zum Ende des Videos */
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    #arrow-img {
        width: 35px;
        animation: bounce 2s infinite;
        filter: invert(1);
    }

    @media (max-width: 700px) {
        .div-video-logo {
            position: absolute;
            top: 30%;
            left: 50%;
            width: 350px;
            transform: translate(-50%, -50%);
            display: flex;
            gap: 10px;
            padding: 0px;
        }

        #logo-blue {
            color: rgb(159, 159, 240);
            font-size: 20px;
        }

        #logo-withe {
            color: white;
            font-size: 20px;
        }

        .div-video-text1 {
            position: absolute;
            top: 5px;
            width: auto;
            margin-left: 85px;
        }

        .div-video-text2 {
            position: absolute;
            top: 30px;
            right: 0px;
            color: white;
            font-size: 12px;
        }

        .div-video-text3 {
            position: absolute;
            bottom: 13px;
            margin-left: 85px;
            color: white;
            font-size: 12px;
        }

        #video-logo {
            max-width: 80px;
        }

        .scroll-arrow {
            position: absolute;
            /* Wandert innerhalb von .video-section mit */
            bottom: 150px;
            /* Fixer Abstand zum Ende des Videos */
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        #arrow-img {
            width: 25px;
            animation: bounce 2s infinite;
            filter: invert(1);
        }
    }


}                           