/* =====================================
  Responsive Navigation für kleine Bildschirme
   ===================================== */
  
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1em;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 0.5em 0;
    border-top: 1px solid #ccc;
  }
}
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5em;
    margin-top: 0;
  }
}
/* Bis 768px: Mobile-Menü */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    margin-left: 1em;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1em;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 0.6em 1em;
    background: #256f45;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
}
.nav-toggle {
  font-size: 1.1em;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
  align-self: center;  /* Wichtig für vertikale Zentrierung im Flex-Container */
  margin: 10px 20px 10px 20px;
}
/* Anpassungen für Headerbild und breakpoints */

.hero-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-image-impressum {
  background-image: url('../img/headerbild_startseite.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

.hero-text {
  text-align: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  max-width: 90%;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .hero-image-impressum {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-image-impressum {
    height: 300px;
  }
  
  .hero-text {
    font-size: 0.9em;
  }
}
