        /* VOLLBILD LANDING PAGE */
        .landing {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: black;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            transition: opacity 1s ease-in-out;
        }

        /* GESCHLOSSENE AUGEN */
        .closed-eye {
            width: 80px;
            height: auto;
            margin: 10px;
        }

        /* MITTLERES AUGE */
        #center-eye {
            width: 100px;
            height: auto;
            position: absolute;
        }

        /* ANIMATION FÜR DAS ÖFFNEN */
        .hidden {
            display: none;
        }

        .fade-out {
            opacity: 0;
            pointer-events: none;
        }


body {
    font-family: sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
  }
  
  header {
    text-align: left;
    margin-bottom: 2rem;
    margin-left: 2rem;
  }

  nav {
    padding: 0px;
    height: 70vh;
}
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;  
}
.nav-links li {
    margin: 0 100px 20px 0; /* Abstand zwischen den Links */
}
.nav-links a {
    writing-mode: vertical-rl;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    text-align: center;
    
}
.nav-links a:hover {
    text-decoration: underline;
}

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
 /* @keyframes atmen {
    0%, 100% {
        gap: 1rem; 
    }
    50% {
        gap: 1.2rem;  
    }
    } */

  .container {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    animation: atmen 7s infinite ease-in-out;
    margin-left: 2rem;
  }
  

  .box {
    all: unset; /* Reset alle Standardstile */
    display: block;
    border-radius: 13px;
    width: 10vw;
    height: 70vh;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    border: 2px solid #fff;
    text-decoration: none;
    color: #fff;
  }
  
  .box:hover {
    width: 82vh; /* hier breite verändern ------------- */
    background-color: #fff;
    border: 2px solid #fff;
    color: #000;
  }
  
  /* In der lilanen Box: Logo oben und Titel unten */
  .box-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Erstes Element oben, letztes unten */
    align-items: flex-start;
    padding-left: 20px;
    width: 100%;
    height: 70vh;
  }
  
  .box-icon {
    width: 30px;
    height: 30px;
    display: block;    
  }
  
  .box-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  
  /* Hover-Overlay: p-Text am unteren Rand */
  .box-hover {
    position: absolute;
    top: 0;
    left: 80px;
    width: 70vh;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Absatz unten */
    align-items: flex-start;
    color: #000;
  }

  .box:hover .box-hover {
    opacity: 1; /* <- fehlt aktuell in deinem CSS */
}

  #countdown {
    text-orientation: mixed;
    writing-mode: vertical-rl;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 150%;
    color: #000; /* Achte darauf, dass hier der Farbcode mit # beginnt */
  }

  #box-content-countdown {
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center;     /* Zentriert vertikal */
    width: 100%;
    height: 100%;
    /* ggf. andere bereits vorhandene Eigenschaften */
  }

  #box-countdown {
    border-radius: 56px;
    border: 2px solid #fff;
    width: 10vw;
    height: 70vh;
    background-color: #fff;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
  }

  .auge-container {
    position: fixed;
    top: 40px;
    right: 2rem;
}
.auge-container img {
    width: auto;
    height: 4rem;
    object-fit: contain; /* Sorgt dafür, dass das Bild nicht verzerrt wird */
}

.preview{
    display: block;
    width: auto; /* Maximale Breite */
    height: 100%; /* Automatische Höhe */
    object-fit: contain; /* Falls das Bild zugeschnitten werden soll */
}

.auge-container a{
    display: none;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    margin-top: 7px;
}



/* Styling für das Formular */
.email-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 250px;
    border-bottom: 2px solid #fff; /* Nur ein Unterstrich */
}

/* Eingabefeld */
.email-input {
    flex: 1;
    padding-bottom: 4px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #fff;
    background-color: #000;
}

/* Icon-Button */
.submit-icon {
    margin: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}


.email-input::placeholder {
    color: white; /* Macht den Platzhalter weiß */
    opacity: 1; /* Stellt sicher, dass er sichtbar bleibt */
}

p{
    padding: 0;
    margin: 0;
    margin-bottom: 0.1rem;
    }

::selection {
  background: #000 !important; /* Hintergrundfarbe */
  color: #000 !important; /* Textfarbe */
}

/*
@media only screen and (max-width: 800px) {
  #disable.closed-eye {
    display: none !important;
  }

  .box:hover {
    width: 10vw !important;
    background-color: inherit !important;
    border: 2px solid #fff !important;
    color: #fff !important;
  }

  .box:hover .box-hover {
    opacity: 0 !important;
  }
}
*/

@media only screen and (max-width: 1100px) {
  #disable.closed-eye {
    display: none !important;
  }

}



@media only screen and (max-width: 700px) {
  /* Closed-eye ausblenden */
  #disable-mini .closed-eye {
    display: none !important;
  }

  .container {
    height: 90vh;
  }

  /* Hover-Verhalten deaktivieren */
  .box:hover {
    width: 25vw !important; /* keine Vergrößerung */
    background-color: inherit !important;
    border: 2px solid #fff !important;
    color: #fff !important;
  }

  .box:hover .box-hover {
    opacity: 0 !important;
  }

  .box {
    border-radius: 13px;
    width: 25vw;
    height: 70vh;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    border: 2px solid #fff;
  }

  #box-countdown {
    border-radius: 56px;
    border: 2px solid #fff;
    width: 25vw;
    height: 70vh;
    background-color: #fff;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
  }

  #disable-mini {
    display: none !important;
  }

  .auge-container {
    display: none;
  }
}