:root {
    --text: #111;
    --muted: #444;

    /* Hellgrün (so wie es bei dir jetzt passt) */
    --green-1: #dff3e6;
    --green-2: #cfeedd;
    --green-3: #a7d9bd;
    --green-4: #1f6a45;

    /* EINSTELLRAD: Höhe von Kopf- und Fußleiste */
    --bar-height: 110px;   /* <- wenn nötig feinjustieren (z.B. 104px / 116px) */
    --bar-padding-x: 20px;
}

/* Basis */
* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    color: var(--text);
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 17px;
    line-height: 1.55;
    background: #fff;
}

/* Layout: schöner Rand / mittig */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 10px 20px;
}

/* Überschriften */
h1 {
    font-size: 2.1em;
    margin: 0 0 14px 0;
}

h2 {
    font-size: 1.35em;
    margin: 34px 0 10px 0;
}

p { margin: 0 0 12px 0; }

/* Links im Text */
main a {
    color: var(--green-4);
    text-decoration: underline;
}
main a:hover { text-decoration: none; }

/* =========================
   HEADER / NAV (fixe Höhe)
   ========================= */
header {
    background-color: var(--green-1);
    border-bottom: 1px solid var(--green-3);
}

/* Das nav ist die „Leiste“ */
nav {
    max-width: 1100px;
    margin: 0 auto;

    /* EXAKT gleiche Höhe überall */
    min-height: var(--bar-height);

    padding: 0 var(--bar-padding-x);

    display: flex;
    align-items: center;          /* vertikal mittig */
    justify-content: flex-start;
    gap: 22px;

    flex-wrap: wrap;              /* darf umbrechen, Höhe bleibt trotzdem mind. gleich */
}

/* Links im Menü */
nav a {
    color: var(--green-4);
    text-decoration: none;
    font-size: 1.02em;
}
nav a:hover { text-decoration: underline; }

/* =========================
   DROPDOWN "Angebote"
   ========================= */
.dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Damit der Dropdown-Trigger wie normaler Link aussieht */
.dropdown > a {
    display: inline-block;
}

/* Dropdown-Panel */
.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;

    background-color: var(--green-1);
    border: 1px solid var(--green-3);

    min-width: 260px;
    z-index: 1000;

    padding: 10px 0;
}

/* Dropdown-Links */
.dropdown-content a {
    display: block;
    padding: 6px 18px;
    margin: 0;
    color: var(--green-4);
    text-decoration: none;
    white-space: nowrap;
}
.dropdown-content a:hover {
    background: var(--green-2);
    text-decoration: none;
}

/* Hover öffnet */
.dropdown:hover .dropdown-content { display: block; }

/* =========================
   FOOTER (gleiche Höhe)
   ========================= */
footer {
    margin-top: 80px;

    background-color: var(--green-1);
    border-top: 1px solid var(--green-3);

    /* EXAKT gleiche Höhe wie Header */
    min-height: var(--bar-height);

    padding: 0 var(--bar-padding-x);

    display: flex;
    align-items: center;          /* vertikal mittig */
    justify-content: center;      /* horizontal mittig */
    gap: 16px;

    text-align: center;
    font-size: 0.95em;
}

footer a {
    color: var(--green-4);
    text-decoration: none;
    margin: 0 8px;
}
footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
    body { font-size: 16px; }
    nav { gap: 14px; }
    nav a { display: inline-block; }
}

/* ===== Typografie: Überschriften ruhiger ===== */

/* Hauptüberschrift (H1) deutlich kleiner – etwa wie bisherige Zwischenüberschriften */
main h1{
  font-size: 1.35em;          /* ca. „halbe“ Wirkung gegenüber vorher */
  font-weight: 600;
  margin: 0 0 18px 0;
  line-height: 1.2;
  color: #111;
  position: relative;
  padding-bottom: 10px;
}

/* Dezente grüne Akzentlinie unter H1 (seriös, nicht marktschreierisch) */
main h1::after{
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 10px;
  background: #1f6a45;        /* euer Grün */
  border-radius: 999px;
  opacity: 0.55;
}

/* Zwischenüberschriften (H2) leicht zurücknehmen und harmonisieren */
main h2{
  font-size: 1.15em;
  font-weight: 600;
  margin: 26px 0 10px 0;
  line-height: 1.25;
  color: #203a31;             /* dunkles Grün/Grau */
}

/* ===== Typografie: Hauptüberschrift mit ruhiger Akzentlinie ===== */

main h1{
  display: inline-block;     /* wichtig: Linie richtet sich nach Textbreite */
  font-size: 1.35em;
  font-weight: 600;
  margin: 0 0 22px 0;
  line-height: 1.2;
  color: #111;
  position: relative;
  padding-bottom: 8px;
}

/* Akzentlinie unter der gesamten Überschrift */
main h1::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;               /* exakt so breit wie die Überschrift */
  height: 2px;               /* etwas dünner */
  background: #1f6a45;       /* euer Grün */
  opacity: 0.5;              /* ruhiger */
  border-radius: 999px;
}

.auftakt-bild {
    margin: 3rem auto 0 auto;
    max-width: 100%;
}

.auftakt-bild img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}
.auftakt-bild {
    margin: 3rem auto 0 auto;
    max-width: 900px;
    text-align: center;
}

.auftakt-bild img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Auftakt – Bild mit sanftem Abstandsbalken */

.auftakt-bild-wrapper {
    margin-top: 4rem;
    padding: 3rem 0;
    background-color: #eef8f1; /* sanfter Abstandsbalken */
    display: flex;
    justify-content: center;
}

.auftakt-bild {
    max-width: 1100px;
    width: 90%;
    height: auto;
    border-radius: 4px;
}

.content-image {
  max-width: 900px;
  margin: 3rem auto 0 auto;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.image-separator {
  max-width: 900px;
  margin: 1.5rem auto 1.5rem auto;
  border-top: 1px solid #cfe6d7;
}

