@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oi&display=swap');


/* Kleine Bildschirme */
@media only screen and (max-width: 700px) {
    /* Hier passt du deine Stile für kleine Bildschirme an */

    .neat {
        display: none; /* Verstecke das "neat"-Zeichen bei kleinen Bildschirmen */
    }

    
.centered-image {
    width:  100%;
}

 body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-container,
    .content-container-two,
    .content-container-three,
    .content-container-four,
    .content-container-five,
    .content-container-six {
        flex-direction: column !important;
        align-items: center !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
.video-container {
    flex:1 !important;
}

    .text-container,
    .text-container-two,
    .text-container-three,
    .text-container-four,
    .text-container-five,
    .text-container-six {
        padding-left: 0px !important;
        text-align: center;
        width: 100%; /* Setze die Breite auf 100%, um die Texte vollständig zu machen */
        box-sizing: border-box; /* Berücksichtige Padding und Border in der Gesamtbreite */
    }

    .text-container h2,
    .text-container-two h2,
    .text-container-three h2,
    .text-container-four h2,
    .text-container-five h2,
    .text-container-six h2 {
        font-size: 40px !important;
    }

    .text-container-three {
        padding-bottom: 10%;
    }
  

    .video-container,
    .video-container-two,
    .video-container-three,
    .video-container-four,
    .video-container-five,
    .video-container-six {
        width: 100%; /* Mache die Videos vollständig breit */

    }

    .text-container-two p {
        text-align: center !important;

}
}

/* Mittelgroße Bildschirme */
@media only screen and (min-width: 701px) and (max-width: 1024px) {
    /* Hier passt du deine Stile für mittelgroße Bildschirme an */
    .centered-image {
        width:  100%;
    }
    
     body {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    
        .content-container,
        .content-container-two,
        .content-container-three,
        .content-container-four,
        .content-container-five,
        .content-container-six {
            flex-direction: column !important;
            align-items: center !important;
            max-width: 100% !important;
            padding: 0 !important;
        }




    .video-container {
        flex:1 !important;
    }
        .text-container,
        .text-container-two,
        .text-container-three,
        .text-container-four,
        .text-container-five,
        .text-container-six {
            padding-left: 0px !important;
            text-align: center;
            width: 80%; /* Setze die Breite auf 100%, um die Texte vollständig zu machen */
            box-sizing: border-box; /* Berücksichtige Padding und Border in der Gesamtbreite */
        }
    
        .text-container h2,
        .text-container-two h2,
        .text-container-three h2,
        .text-container-four h2,
        .text-container-five h2,
        .text-container-six h2 {
            font-size: 50px !important;
        }
    
        .text-container-three {
            padding-bottom: 10%;
        }
    
        .video-container,
        .video-container-two,
        .video-container-three,
        .video-container-four,
        .video-container-six {
            width: 100%; /* Mache die Videos vollständig breit */
    
        }
    
        .text-container-two p {
            text-align: center !important;
            font-size: 20px !important;
    
    }
}

/* Große Bildschirme */
@media only screen and (min-width: 1025px) {
    /* Hier passt du deine Stile für große Bildschirme an */
}

/* CSS Document */
body {
    margin: 0;
    padding: 0;
    background-color: rgba(196, 154, 252, 0.76);
    position: relative;
}



/*---Menü---*/
.container {

    height: 50vh;
}
.navbar {
    width: 200px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -200px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.8s cubic-bezier(1, 0, 0, 1);
    background-color:rgba(19, 19, 19, 0.552);
    z-index:2;
}

.change {
    left: 0;
}

.menu-btn {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 25px;
    left: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index:3;
}


.line {
    width: 100%;
    height: 8px;
    background-color: black;
    transition: all 0.8s;
}

.change .line-1 {
    transform: rotateZ(-405deg) translate(-19px, 5px);
}

.change .line-2 {
    opacity: 0;
}

.change .line-3 {
    transform: rotateZ(405deg)  translate(-19px, -5px);
}


.nav-list {
    text-align: left;
}

.nav-item {
    list-style: none;
    margin: 10px;
}

.nav-link {
    text-decoration: none;
    font-size: 19px;
    color: white;
    font-weight: 300;
    font-family: "Roboto Mono", monospace;
    letter-spacing: 1px;
    position: relative;
    padding: 3px 0;
}

.nav-link::before,
.nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: yellow;
    position: absolute;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.5s;
}

.nav-link::after {
    bottom: 0;
    transform-origin: right;
}


.nav-link::before {
    top: 0;
    transform-origin: left;
}

.nav-link:hover::before,
.nav-link:hover::after {
    transform: scaleX(1);

}



.menu-btn:hover {
    opacity: 0.5;
}



/* Social Media */


.media-header {
    position: absolute;
    top:60%;
    right: 2%;
    transform: translate(-50%, -50%);
}

/* Stil für das Social Media Symbol */
.media-header i {
    font-size: 50px; /* Passe die Größe nach Bedarf an */
    cursor: pointer;
}


#insta {
    color:black;
    background-color: transparent;
    cursor: pointer;
}

#insta:hover {
    color: yellow;
    transition: 0.5s;
}




header {

    font-family: "Roboto Mono", monospace;
    position:absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    top:0;
}



.centered-image {
    max-width: 100%;
    text-align: center;
    position: absolute;
    left: 52%;
    top: 5%;
    transform: translate(-50%, -50%);
}

.centered-image img {
    max-width: 99%;
    height: auto;
    display: flex;
}


.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 85%; /* Optional: Begrenze die Breite der Container */
    margin: 10% auto; /* Optional: Zentriere die Container horizontal */
    padding-left: 12%; /* Optional: Füge Innenabstand hinzu */
    flex-direction: row;
    flex-wrap: wrap; /* Neu hinzugefügt für Umbruch bei Bedarf */
    left:5%;
}

.video-container {

    flex: 2; /* Der Video-Container ist jetzt breiter als der Text-Container */
}


.text-container {
    flex: 1; /* Der Text-Container dehnt sich aus, um verfügbaren Platz zu füllen */
    padding-left: 20px; /* Optional: Füge linken Innenabstand hinzu */
}

.text-container h2 {
    font-size: 70px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color:  #0F0A03;
    margin-bottom: 10px;
    line-height: 110%;

}

.content-container-two {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 85%; /* Optional: Begrenze die Breite der Container */
    margin: 10% auto; /* Optional: Zentriere die Container horizontal */
    padding-left: 12%; /* Optional: Füge Innenabstand hinzu */
    flex-direction: row;
    flex-wrap: wrap; /* Neu hinzugefügt für Umbruch bei Bedarf */
    left:5%;

}

.video-container-two {

    flex: 2; /* Der Video-Container ist jetzt breiter als der Text-Container */
}


.text-container-two {
    flex: 1; /* Der Text-Container dehnt sich aus, um verfügbaren Platz zu füllen */
    padding-left: 20px; /* Optional: Füge linken Innenabstand hinzu */
}

.text-container-two h2 {
    font-size: 70px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color:  #0F0A03;
    margin-bottom: 10px;
    line-height: 110%;

}

.text-container-two p { 
    font-size: 13px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color:  #0F0A03;
    text-align:justify;


}



.content-container-three {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 71%;
    padding: 30px; /* Optional: Füge Innenabstand hinzu */
    margin: 0 auto;
   
}

.image-container-three {
    flex: 2; /* Nutze den verfügbaren Platz, aber nicht breiter als der Text-Container */
    max-width: 100%; /* Du kannst dies anpassen, um die gewünschte Breite des Bildes festzulegen */
}

.image-container-three img {
    max-width: 100%;
    height: auto;
}

.text-container-three {
    flex: 1;
    padding-left: 40px; /* Optional: Füge linken Innenabstand hinzu */

}

.text-container-three h2 {
    font-size: 70px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color: #0F0A03;
    line-height: 110%;
}

.text-container-three h3 {
    font-size: 22px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color: #0F0A03;
}

.text-container-three p {
    font-size: 15px;
    font-family: "joly-display", sans-serif;
    color: #0F0A03;
    text-decoration: none;

}



.content-container-four {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 71%;
    margin: 0 auto;
   
}

.image-container-four {
    flex: 2; /* Nutze den verfügbaren Platz, aber nicht breiter als der Text-Container */
    max-width: 100%; /* Du kannst dies anpassen, um die gewünschte Breite des Bildes festzulegen */
}

.image-container-four img {
    max-width: 100%;
    height: auto;
}

.text-container-four {
    flex: 2;
    padding-left: 10px; /* Optional: Füge linken Innenabstand hinzu */

}

.text-container-four h2 {
    font-size: 70px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color: #0F0A03;
    line-height: 110%;
}

.text-container-four h3 {
    font-size: 22px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color: #0F0A03;
}

.text-container-four p {
    font-size: 15px;
    font-family: "joly-display", sans-serif;
    color: #0F0A03;
    text-decoration: none;

}



.content-container-five {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 71%; /* Optional: Begrenze die Breite der Container */
    margin: 0 auto; /* Optional: Zentriere die Container horizontal */
    padding: 40px; /* Optional: Füge Innenabstand hinzu */

}

.content-container-six {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 85%; /* Optional: Begrenze die Breite der Container */
    margin: 10% auto; /* Optional: Zentriere die Container horizontal */
    padding-left: 12%; /* Optional: Füge Innenabstand hinzu */
    flex-direction: row;
    flex-wrap: wrap; /* Neu hinzugefügt für Umbruch bei Bedarf */
    left:5%;
}

.video-container-six {

    flex: 2; /* Der Video-Container ist jetzt breiter als der Text-Container */
}


.text-container-six {
    flex: 1; /* Der Text-Container dehnt sich aus, um verfügbaren Platz zu füllen */
    padding-left: 20px; /* Optional: Füge linken Innenabstand hinzu */
}

.text-container-six h2 {
    font-size: 70px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color:  #0F0A03;
    margin-bottom: 10px;
    line-height: 110%;

}

.text-container-six p { 
    font-size: 13px;
    font-family: "joly-display", sans-serif;
    font-style: italic;
    color:  #0F0A03;
    text-align:justify;


}



/* CSS für den Footer und das Impressum mit Flexbox */

footer {
    display: flex;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    max-height: 50px; /* Beispielhafte Höhenbegrenzung */
    position: absolute;
    bottom: 0;
}

.impressum {
    position: absolute;
    text-decoration: none;
    font-size: 19px;
    color: black;
    font-weight: 300;
    font-family: "Roboto Mono", monospace;
    padding: 10px;
    text-align: center;
    margin: auto; /* Hinzugefügte Zeile, um den Text horizontal zu zentrieren */
}



/* style neat */

.neat {
    height:93px;
    justify-content: center;
    align-items: center;
    position: fixed;
    font-family:"Roboto Mono" , monospace;
    font-size: 70px;
    color: black;
    top: 1px;
    left: 97px;
    text-decoration:none;
}



