/* Grundlayout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5fff5;
  color: #333;
}

/* Kopfbereich */
header {
  display: flex;
  justify-content: space-between; /* Logo links, Navigation rechts */
  align-items: center;
  background: #2e7d32;
  color: white;
  padding: 25px 20px;
}

/* Logo-Bereich */
.logo {
  display: flex;
  flex-direction: row;            /* Logo und Schrift nebeneinander */
  align-items: center;
  gap: 10px;
  margin-left: 25px; /* Logo rückt nach rechts */
}

.logo img {
  max-width: 60px;
  height: auto;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
}

/* Navigation */
nav {
  position: relative;
}

.menu-toggle {
  display: none;                  /* Standard: Desktop unsichtbar */
  background: none;
  border: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;                  /* Desktop: sichtbar nebeneinander */
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Info-Box */
.info-box {
  display: block;              /* block statt inline-block */
  background: #e8f5e9;
  border: 3px solid #2e7d32;
  border-radius: 12px;
  padding: 30px;
  max-width: 600px;
  margin: 20px auto;           /* auto sorgt für horizontale Zentrierung */
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;          /* Inhalt mittig */
}

.info-box h2 {
  color: #2e7d32;
  margin-top: 0;
}

/* Abschnitt Qualität & Nachhaltigkeit */
section {
  width: 80%;
  margin: 40px auto;
  padding: 20px;
  text-align: left;
  line-height: 1.6;
  font-size: 1em;
  color: #333;
  box-sizing: border-box;
}

section h2 {
  color: #2e7d32;
  font-size: 1.6em;
  margin-bottom: 20px;
  text-align: center;
}

section p {
  margin-bottom: 15px;
}

section strong {
  color: #2e7d32;
  font-weight: bold;
}

/* Footer */
footer {
  background: #f0f0f0;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9em;
  text-align: center;
}
footer img {
  height: 40px;
  vertical-align: middle;
  margin-right: 10px;
}
footer a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: bold;
}
footer a:hover {
  text-decoration: underline;
}

/* Sticky Footer Layout */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: 40px 20px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  header {
    flex-direction: column;       /* Logo und Menü untereinander */
    align-items: center;
  }

  .logo img {
    max-width: 40px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: block;               /* Burger-Button sichtbar */
  }

  .nav-links {
    display: none;                /* Menü ausgeblendet */
    flex-direction: column;
    background: #2e7d32;
    padding: 10px;
    gap: 10px;
  }

  .nav-links.show {
    display: flex;                /* Menü sichtbar, wenn per JS geöffnet */
  }
}

@media (max-width: 600px) {
  section {
    width: 95%;
    padding: 15px;
    font-size: 0.95em;
  }
  section h2 {
    font-size: 1.4em;
  }
}

/* Container zentriert den gesamten Bereich */
.container {
  max-width: 800px;      /* begrenzt die Breite */
  margin: 0 auto;        /* zentriert horizontal */
  padding: 1em;
}

/* Person-Block: Bild und Text nebeneinander */
.person {
  display: flex;
  flex-direction: row-reverse; /* Bild rechts, Text links */
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 2em;
}

/* Bild */
.person img {
  width: 150px;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Textbereich */
.info {
  flex: 1;               /* nimmt restlichen Platz ein */
  min-width: 200px;
}

.willkommen {
  text-align: center;          /* Text zentrieren */
  color: #c62828;              /* Rotton (Material Red 800) */
  font-weight: bold;           /* etwas kräftiger */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* leichte Hervorhebung */
  margin: 20px 0;              /* Abstand oben/unten */
}

.willkommen + p {
  text-align: center;          /* auch den Absatz zentrieren */
  color: #b71c1c;              /* etwas dunklerer Rotton */
}
