/* Hamburger */
.nav-toggle {
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  padding: 0.25rem 0.5rem;
  margin: 0;
}

/* Dropdown-Menü */
.main-nav {
  position: absolute;
  top: var(--header-h);
  left: 0.8rem; /* statt right */
  width: 210px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
  z-index: 1200;
}
.main-nav.open { max-height: 500px; padding: 0.5rem 1rem; }

.nav__link {
  text-decoration: none;
  color: var(--fg);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}
.nav__link:hover { background: rgba(0,0,0,.04); border-radius: 6px; }

/* Sprachschalter */
.lang-switch {
  display: flex;
  gap: 6px;
  margin-top: 0.75rem;
}
.lang-switch button {
  border: 1px solid rgba(2,6,23,.12);
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
}


