/* --- 1. BASIS & MOBIL (Ganz oben in der Datei) --- */
header {
  width: 100%;
  /* Stellschraube: Von 60px/80px auf 110px erhöhen */
  height: 110px;

  position: relative;
  background: url("../images/header/header-bg.svg") no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.header-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.zettelhuhn-logo {
  width: 200px;
  height: auto;
  display: block;
}

.menu-button {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
}

.menu-button span {
  display: block;
  height: 3px;
  background: white;
}

/* Strichlängen Mobil */
.menu-button span:nth-child(1) {
  width: 28px;
}
.menu-button span:nth-child(2) {
  width: 20px;
  margin-left: 4px;
  align-self: center;
}
.menu-button span:nth-child(3) {
  width: 25px;
}

/* --- 2. MONITOR (Desktop ab 1024px) --- */
@media screen and (min-width: 1024px) {
  header {
    height: 200px; /* Mehr Platz für das große 380px Logo */
  }

  .header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .zettelhuhn-logo {
    width: 380px;
  }

  .menu-button {
    width: 65px; /* Etwas kleiner als 75px, damit er nicht den Header sprengt */
    height: 65px;
    gap: 10px;
  }

  /* Strichlängen Desktop */
  .menu-button span:nth-child(1) {
    width: 40px;
  }
  .menu-button span:nth-child(2) {
    width: 30px;
  }
  .menu-button span:nth-child(3) {
    width: 35px;
  }
}
