@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 */
    }
    body {
        font-size: 14px; /* Adjust font size for smaller screens */
    }

    .navbar {
        width: 100%; /* Make the navigation bar full-width */
        left: 0; /* Position the navigation bar on the left */
        background-color: rgba(19, 19, 19, 0.8); /* Increase the background opacity */
    }

    .menu-btn {
        left: 15px; /* Adjust the position of the menu button */
    }

    .nav-list {
        text-align: center; /* Center-align navigation links */
    }

    .nav-item {
        margin: 5px; /* Reduce the margin between navigation items */
    }


    .video-container {
        object-fit: cover !important; /* Hinzugefügtes Attribut für die Video-Anpassung */
    }

    video {
        width: 100%;
        height: 100%; /* Make the video cover the entire video container */
    }

    footer {
        position: relative; /* Remove fixed positioning for the footer */
    }
  
}



/* 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 */
}

/* 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;
}

.video-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

.video-container video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover; /* Hinzugefügtes Attribut für die Video-Anpassung */
}

/*---Menü---*/



.navbar {
    width: 200px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.8s cubic-bezier(1, 0, 0, 1);
    background-color: rgba(19, 19, 19, 0.521);
    z-index: 2; /* Setze den Z-Index für die Navbar */
}

.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:fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    top:0;
}


header h1{
    color: white;
}

.centered-image {
    max-width: 100%;
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.centered-image img {
    max-width: 100%;
    height: auto;
    display: flex;
}

.impressum{
    text-decoration: none;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    color: white;
    font-weight: 300;
    font-family: "Roboto Mono", monospace;
    padding: 10px 0;
    text-align: center;
}
 


footer {
    max-width: 100%;
    padding: 10px;
    width: 100%;
    position: fixed; /* positioniert am unteren Rand der Ansicht */
    bottom: 0; /* am unteren Rand positionieren */
    text-align:center;

  
}




/* 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;
}




