/* Standard: Desktop-Navigation sichtbar, Burger unsichtbar */
.nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 0 auto;

}

.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nav li {
  margin: 0;
}

.nav a {
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.6rem  0.8rem;
}

.burger-container {
  display: none;
}

.burger {
  display: none;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  /* Desktop-Navi ausblenden */
  .nav {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: var(--beige);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1.5rem 0;
    z-index: 1000;
  }

  .nav.open {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav li {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
  }

  /* Burger zentriert anzeigen */
  .burger-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .burger span {
    height: 3px;
    width: 100%;
    background-color: var(--green-dark);
    border-radius: 2px;
  }

