/* ===== Basis ===== */
* {
  box-sizing: border-box;
}

/* ===== Desktop ===== */
#menue {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #ab2524;
}

#menue li {
  padding: 14px 16px;
}

#menue a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* Logo */
.logo img {
  height: 50px;
  width: auto;
}

/* Hamburger */
#menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

  #menue {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  /* Hamburger anzeigen */
  #menu-toggle {
    display: block;
    margin-left: auto;
  }

  /* Menüeinträge standardmäßig VERSTECKT */
  .menu-item {
    width: 100%;
    text-align: center;
    background-color: #b30000;

    display: none;   /* 🔥 wichtig */
  }

  /* Wenn aktiv → anzeigen */
  #menue.active .menu-item {
    display: block;
  }
}