@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: 800px) {
    /* Hier passt du deine Stile für kleine Bildschirme an */
    .neat {
        display: none; /* Verstecke das "neat"-Zeichen bei kleinen Bildschirmen */
    }

    .gallery {
        margin-top: 200px !important; /* Ändere den oberen Außenabstand der Bildergalerie nach Bedarf */
    }
    .centered-image img {
        width: 90% !important;
        padding-top: 40% !important;
    }
}

/* Mittelgroße Bildschirme */
@media only screen and (min-width: 801px) and (max-width: 1024px) {
    /* Hier passt du deine Stile für mittelgroße Bildschirme an */
}

/* 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: #FFCAFF;
    position:relative;

}



/*---Menü---*/



.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:1;
}

.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: white;
    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 */
    color: white;
    cursor: pointer;
}


#insta {
    color: white;
    background-color: transparent;
    cursor: pointer;
}

#insta:hover {
    color: yellow;
    transition: 0.5s;
}




header {

    font-family: "Roboto Mono", monospace;
    position:relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    top:0;
}


header h1{
    color: white;
}

.centered-image {
    width: 100%;
    text-align: center;
    position: absolute;
    transform: translateY(-50%);
}

.centered-image img {
    width: 50%;
    margin: 0 auto;
    padding-top: 30%;
}



/* CSS für Bildergalerie */
.gallery {
    display: grid;
    grid-template-columns: 1fr; /* Nur eine Spalte */
    gap: 16px; /* Standard-Abstand zwischen den Bildern */
    margin: 0 auto; /* Zentrierung der Bildergalerie horizontal */
    max-width: 900px; /* Maximale Breite der Bildergalerie */
    margin-top: 500px; /* Anpassen des oberen Außenabstands der Bildergalerie */
    margin-bottom: 10px; /* Anpassen des unteren Außenabstands der Bildergalerie */
}

/* Bilder mit spezifischem Abstand */
.gallery-item:nth-child(2n) {
    gap: 24px; /* Größerer Abstand für jedes zweite Bild */
}

.gallery-item:nth-child(3n) {
    gap: 40px; /* Kleinerer Abstand für jedes dritte Bild */
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional: abgerundete Ecken für die Bilder */
}

.gallery-item video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional: abgerundete Ecken für das Video */
}




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: 16px;
    color: white;
    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: white;
    top: 1px;
    left: 97px;
    text-decoration:none;
}




