/* ---------------- Grundlayout ---------------- */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  background-color: #f7f7f7;
  color: #333;
}

header {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background-color: #ffffff;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  text-align: center; /* Zentriert den Text-Inhalt */
}

.logo-container {
  display: flex;
  flex-direction: column; /* Stapelt Logo und Text untereinander */
  align-items: center;    /* Zentriert beides horizontal */
  justify-content: center;
  gap: 5px;
}

.logo-container img {
  height: 100px; /* Etwas größer für die mittige Ansicht */
  width: auto;
  margin-bottom: 5px;
}

.title h2 {
  margin: 0;
  color: #1f3b73;
  font-size: 1.8em;
}

.title p {
  margin: 5px 0 0 0;
  font-size: 1em;
  color: #555;
}

header h1 { margin: 0; font-size: 2em; }
header p { margin-top: 0.5em; font-size: 1.1em; color: #d0d0d0; }

/* ---------------- Navigation ---------------- */

nav {
  position: sticky;     /* 👈 entscheidend */
  top: 0;
  z-index: 1000;

  background-color: #ffffff;   /* heller Hintergrund */
  text-align: center;
  padding: 0.9em 0;

  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition:
    padding 0.3s ease,
    box-shadow 0.3s ease;
}

/* ---------------- Hero ---------------- */
.hero {
  background: url('https://source.unsplash.com/1600x500/?forest,stag,business') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 1em 1em;   /* vorher 3em → jetzt kompakter */
}

/* Überschrift im Hero */
.hero h1 {
  margin: 0;
  font-size: 2.4em;
  line-height: 1.1;          /* etwas enger */
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 0.3em 0.8em;       /* vorher 0.4 / 0.9 */
  border-radius: 6px;
}


/* ---------------- Main ---------------- */
main {
  max-width: 1000px;
  margin: 1em auto;
  padding: 1em;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1)
