 /* ========================================
   Grundstil für Historie-Seite
   ======================================== */
body.historie {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; /* wie andere Seiten */
  font-style: normal;       /* normal, nicht kursiv */
  font-weight: normal;      /* normal, nicht bold */
  font-size: 0.95em;        /* gleich wie andere Seiten */
  line-height: 1.6;         /* angenehmer Zeilenabstand */
  color: #fff;
  background-color: #626262; /* Seitenhintergrund dunkelgrau */
  margin: 0;
  padding: 0;
}

/* ========================================
   Container (.boxed) für dunklen Hintergrund
   ======================================== */
body.historie .boxed {
  background-color: #3a3a3a; /* dunkel */
  padding: 30px;
  border-radius: 15px;
  color: #fff;
  max-width: 1000px;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Fließtext im .boxed Container linksbündig */
body.historie .boxed p,
body.historie .boxed h2 {
  text-align: left;
}

/* Überschriften */
body.historie h1 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 6px rgba(0,0,0,0.5);
}

body.historie h2 {
  font-size: 1.05em;
  font-weight: normal;
  color: #f2f2f2;
}

/* Links */
body.historie a {
  color: #E2D07A;
  text-decoration: none;
}
body.historie a:hover {
  color: #FFF0C0;
}

/* Zentrierte Texte */
body.historie .center {
  text-align: center;
  margin: 1.5rem 0;
}

/* Überschrift im speziellen .center div bleibt zentriert */
body.historie .center h2 {
  text-align: center;
}

/* Flexbox für Bilder nebeneinander */
body.historie .image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;        /* dichter Abstand zwischen Bildern */
  flex-wrap: wrap;  /* mobile Ansicht: untereinander */
  margin-bottom: 1.5rem;
}

/* Bilder */
body.historie img.bordered {
  border: 2px solid #fff;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.historie img.bordered:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* Footer-Hinweis */
body.historie p.footer-note {
  text-align: center;
  color: #ccc;
  font-size: 0.9em;
  margin-top: 2rem;
}
