/* ===========================
   Farbdefinitionen (falls nicht global vorhanden)
   =========================== */
:root {
  --bg-light: #f5f5f5;      /* heller, neutraler Hintergrund */
  --text: #111;             /* fast schwarz für gute Lesbarkeit */
}

/* ===========================
   Grundlayout für leere Seite
   =========================== */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg-light);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

/* ===========================
   Hauptbereich – Bildfolge
   =========================== */
.bildfolge {
  flex-grow: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: transparent;   /* kein abweichender Hintergrund */
  box-shadow: none;
}

/* ===========================
   Typografie – Überschriften
   =========================== */
h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #222;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #09439e; /* Emder Blau */
}

h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: #333;
}

h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #444;
}

h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #555;
}

/* ===========================
   Bild in Portraitbereich
   =========================== */
.portrait {
  text-align: center;
  margin-bottom: 1.5rem;
}

.portrait img {
  max-width: 200px;
  height: auto;
  box-shadow: none; /* Kein Schatten */
}

/* ===========================
   Zeitstrahl (timeline)
   =========================== */
.timeline {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
}

.timeline h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.timeline ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline ul::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #999;
}

.timeline li {
  margin-bottom: 2rem;
  padding-left: 60px;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #09439e;
  border-radius: 50%;
}

.timeline .year {
  font-weight: bold;
  color: #09439e;
  display: block;
  margin-bottom: 0.3rem;
}

/* ===========================
   Optional: Header auf kleinen Screens
   =========================== */
@media (max-width: 600px) {
  .header {
    background-size: auto 80%;
    padding: 0.5rem 1.5rem;
    min-height: 120px;
  }
}
