/* ==========================================================================
   K+K Modellbahnen – gemeinsames Design
   Farbwelt: tiefes Rot (#8a1f1f / #a32d2d) + Anthrazit (#26262b)
   ========================================================================== */

:root {
  --rot: #8a1f1f;
  --rot-hell: #a32d2d;
  --anthrazit: #26262b;
  --anthrazit-hell: #35353c;
  --papier: #f7f5f2;
  --weiss: #ffffff;
  --text: #2b2b2f;
  --text-gedimmt: #6d6d74;
  --linie: #e4e0da;
  --schatten: 0 2px 10px rgba(38, 38, 43, 0.10);
  --schatten-hover: 0 6px 22px rgba(38, 38, 43, 0.18);
  --radius: 10px;
  --inhalt-breite: 1200px;
}

* { box-sizing: border-box; }

/* hidden-Attribut gewinnt auch gegen display:grid/flex der Klassen */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--papier);
}

img { max-width: 100%; }

a { color: var(--rot); }
a:hover { color: var(--rot-hell); }

.inhalt {
  max-width: var(--inhalt-breite);
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.kopf {
  background: var(--anthrazit);
  color: var(--weiss);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.kopf-innen {
  max-width: var(--inhalt-breite);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

/* Wortmarke – Platzhalter, leicht durch echtes Logo ersetzbar */
.wortmarke {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: var(--weiss);
  white-space: nowrap;
}
.wortmarke:hover { color: var(--weiss); }
.wortmarke .kk {
  background: var(--rot);
  color: var(--weiss);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  padding: 4px 9px;
  border-radius: 6px;
}
.wortmarke .name {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.hauptnav { display: flex; align-items: center; gap: 4px; }

.hauptnav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.hauptnav a:hover { background: var(--anthrazit-hell); color: var(--weiss); }
.hauptnav a.aktiv { background: var(--rot); color: var(--weiss); }

.nav-knopf {
  display: none;
  background: none;
  border: 0;
  color: var(--weiss);
  font-size: 1.6rem;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-knopf { display: block; }
  .hauptnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--anthrazit);
    padding: 8px 16px 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  .hauptnav.offen { display: flex; }
  .hauptnav a { padding: 12px 14px; }
}

/* --------------------------------------------------------------------------
   Hero-Slider (Startseite)
   -------------------------------------------------------------------------- */
.slider {
  position: relative;
  overflow: hidden;
  background: var(--anthrazit);
  height: min(62vh, 560px);
  min-height: 320px;
}

.slider-bild {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.slider-bild.aktiv { opacity: 1; }

/* Optionaler Text im Slider-Bild (pro Bild in der Verwaltung pflegbar).
   Liegt im jeweiligen Slide, blendet also mit ihm ein/aus. pointer-events:none
   => Pfeile und Punkte (z-index 3) bleiben klickbar. */
.slider-text {
  position: absolute;
  left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
  z-index: 2;
  max-width: min(88%, 720px);
  margin: 0;
  padding: 12px 22px;
  background: rgba(20, 20, 24, 0.60);
  color: var(--weiss);
  border-radius: 8px;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
@media (max-width: 640px) {
  .slider-text { bottom: 46px; padding: 9px 14px; }
}

.slider-band {
  background: var(--anthrazit);
  color: var(--weiss);
  padding: 26px 24px 30px;
  text-align: center;
  position: relative;
}
.slider-band::before {
  /* dünner roter Strich als oberer Abschluss zum Slider */
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: var(--rot);
}
.slider-band h1 {
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--weiss);
}

.slider-punkte {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.slider-punkte button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s, transform 0.2s;
}
.slider-punkte button.aktiv {
  background: var(--weiss);
  transform: scale(1.25);
}

.slider-pfeil {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(20, 20, 24, 0.35);
  color: var(--weiss);
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-pfeil:hover { background: rgba(20, 20, 24, 0.65); }
.slider-pfeil.links { left: 16px; }
.slider-pfeil.rechts { right: 16px; }

@media (max-width: 640px) {
  .slider-pfeil { display: none; }
}

/* --------------------------------------------------------------------------
   Sektionen / Inhaltsblöcke
   -------------------------------------------------------------------------- */
.sektion { padding: 56px 0; }
.sektion.abgesetzt { background: var(--weiss); }

/* (Karten-Einstieg zum Katalog wurde entfernt – keine Styles mehr nötig) */

.sektion h2 {
  font-size: 1.7rem;
  margin: 0 0 6px;
  color: var(--anthrazit);
}
.sektion .unterzeile {
  color: var(--text-gedimmt);
  margin: 0 0 28px;
}
.sektion h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 10px;
  border-radius: 2px;
  background: var(--rot);
}
/* Sektionen mit dieser Klasse zeigen den roten Strich unter h2 nicht */
.sektion.kein-strich h2::after { display: none; }

/* -------------------------------------------------------------------------
   Bildband zwischen Bereich 1 und Bereich 2 (optional, siehe verwaltung.php
   Tab "Slider-Bilder"). Höhe wird per JS als Inline-Style gesetzt, daher
   hier keine feste Höhe – nur Bilddarstellung.
   background-attachment: fixed = das Bild wirkt am Bildschirm still stehend,
   der Ausschnitt ändert sich erst beim Weiterscrollen (Parallax-Effekt).
   ------------------------------------------------------------------------- */
.bildband {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/* iOS Safari & die meisten Touch-Browser setzen background-attachment:fixed
   nicht zuverlässig um (ruckelt oder wird ignoriert) – dort auf normales
   Scrollen zurückfallen, statt einen kaputten Effekt zu riskieren. */
@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  .bildband { background-attachment: scroll; }
}

.zwei-spalten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 820px) {
  .zwei-spalten { grid-template-columns: 1fr; }
}

/* Karten-Kacheln (z. B. Zusatzleistungen) – Bild füllt die Kachel,
   Text liegt als Overlay am unteren Rand */
.kachel-reihe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.kachel {
  position: relative;
  background: var(--anthrazit);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten);
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  text-align: left;
}
.kachel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.kachel::after {
  /* dunkler Gradient am unteren Rand, damit der Text lesbar bleibt */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 65%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.0) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.kachel strong {
  position: relative;
  z-index: 2;
  color: var(--weiss);
  padding: 18px 20px;
  display: block;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  line-height: 1.35;
}
.kachel .symbol {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}

/* Öffnungszeiten-Block (prominent, leicht editierbar) */
.zeiten-block {
  background: var(--anthrazit);
  color: var(--weiss);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--schatten);
}
/* Variante "eyebrow": h2 ist gleich groß wie das h3 darunter
   (visuell gleichrangige Bereichs-Überschriften). Genutzt auf der Startseite. */
.zeiten-block.eyebrow h2 {
  color: var(--weiss);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.zeiten-block.eyebrow h2::after { display: none; }
.zeiten-block.eyebrow h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--weiss);
  margin: 4px 0 10px;
}
.zeiten-block .hinweis {
  background: var(--rot);
  border-radius: 8px;
  padding: 10px 16px;
  margin: 16px 0;
  font-weight: 500;
}
.zeiten-tabelle { width: 100%; border-collapse: collapse; margin-top: 8px; }
.zeiten-tabelle td { padding: 7px 0; border-bottom: 1px solid var(--anthrazit-hell); }
.zeiten-tabelle td:last-child { text-align: right; }
.zeiten-tabelle tr:last-child td { border-bottom: 0; }

/* --------------------------------------------------------------------------
   Katalog: Werkzeugleiste (Suche, Filter, Ansicht)
   -------------------------------------------------------------------------- */
.werkzeuge {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 18px;
  margin: 24px 0;
  box-shadow: var(--schatten);
}

.suche-zeile {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.suchfeld {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.suchfeld input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  font-size: 1rem;
  border: 1.5px solid var(--linie);
  border-radius: 8px;
  background: var(--papier);
}
.suchfeld input:focus {
  outline: none;
  border-color: var(--rot);
  background: var(--weiss);
}
.suchfeld::before {
  content: "🔍";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  opacity: 0.55;
}

.ansicht-schalter {
  display: flex;
  border: 1.5px solid var(--linie);
  border-radius: 8px;
  overflow: hidden;
}
.ansicht-schalter button {
  border: 0;
  background: var(--weiss);
  padding: 10px 16px;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--text-gedimmt);
}
.ansicht-schalter button.aktiv {
  background: var(--anthrazit);
  color: var(--weiss);
}

.filter-zeile {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.filter-zeile select {
  padding: 9px 12px;
  font-size: 0.95rem;
  border: 1.5px solid var(--linie);
  border-radius: 8px;
  background: var(--weiss);
  color: var(--text);
  cursor: pointer;
  max-width: 100%;
}
.filter-zeile select:focus { outline: none; border-color: var(--rot); }
.filter-zeile .filter-reset {
  border: 0;
  background: none;
  color: var(--rot);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 9px 6px;
  text-decoration: underline;
}

.treffer-zeile {
  margin: 4px 2px 16px;
  color: var(--text-gedimmt);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Kartenansicht
   -------------------------------------------------------------------------- */
.karten-raster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.karte {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--schatten);
  display: flex;
  flex-direction: column;
}
.karte:hover {
  transform: translateY(-3px);
  box-shadow: var(--schatten-hover);
}

.karte-bild {
  aspect-ratio: 4 / 3;
  background: #efece8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.karte-bild img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.bild-platzhalter {
  color: var(--text-gedimmt);
  font-size: 0.9rem;
  text-align: center;
  padding: 12px;
}
.bild-platzhalter .art-nr { display: block; font-weight: 600; margin-top: 4px; }

.karte-inhalt { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.karte-titel {
  font-weight: 600;
  color: var(--anthrazit);
  margin: 0 0 4px;
  font-size: 0.98rem;
  line-height: 1.4;
}
.karte-artnr { color: var(--text-gedimmt); font-size: 0.88rem; margin-bottom: 10px; }

.tag-zeile { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.tag {
  font-size: 0.78rem;
  background: var(--papier);
  border: 1px solid var(--linie);
  color: var(--text);
  border-radius: 20px;
  padding: 2px 10px;
  white-space: nowrap;
}
.tag.rot { background: var(--rot); border-color: var(--rot); color: var(--weiss); }
.tag.dunkel { background: var(--anthrazit); border-color: var(--anthrazit); color: var(--weiss); }

.preis {
  color: var(--rot);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 6px 0 10px;
}

/* --------------------------------------------------------------------------
   Listenansicht
   -------------------------------------------------------------------------- */
.liste { margin-bottom: 48px; }

.liste-zeile {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.liste-zeile:hover { box-shadow: var(--schatten-hover); border-color: var(--rot); }

.liste-bild {
  width: 88px;
  height: 62px;
  background: #efece8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.liste-bild img { width: 100%; height: 100%; object-fit: contain; }
.liste-bild .bild-platzhalter { font-size: 0.62rem; padding: 4px; }

.liste-haupt { min-width: 0; }
.liste-haupt .karte-titel { margin-bottom: 2px; }
.liste-haupt .karte-artnr { margin-bottom: 6px; }
.liste-haupt .tag-zeile { margin-top: 0; }

.liste-rechts { text-align: right; white-space: nowrap; }
.liste-rechts .preis { margin: 0; }

@media (max-width: 560px) {
  .liste-zeile { grid-template-columns: 64px 1fr; }
  .liste-bild { width: 64px; height: 48px; }
  .liste-rechts { grid-column: 2; text-align: left; }
}

/* --------------------------------------------------------------------------
   Detailansicht (Modal)
   -------------------------------------------------------------------------- */
.modal-hintergrund {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 24, 0.65);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-hintergrund[hidden] { display: none; }

.modal {
  background: var(--weiss);
  border-radius: var(--radius);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-schliessen {
  position: sticky;
  top: 0;
  float: right;
  margin: 12px 12px 0 0;
  background: var(--anthrazit);
  color: var(--weiss);
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 2;
}
.modal-schliessen:hover { background: var(--rot); }

.modal-inhalt { padding: 24px 28px 28px; }

.modal-galerie { margin-bottom: 20px; }
.modal-galerie .gross {
  background: #efece8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  max-height: 420px;
  overflow: hidden;
}
.modal-galerie .gross img {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.modal-galerie .mini-reihe {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.modal-galerie .mini-reihe button {
  border: 2px solid var(--linie);
  border-radius: 6px;
  padding: 0;
  width: 76px;
  height: 56px;
  overflow: hidden;
  cursor: pointer;
  background: #efece8;
}
.modal-galerie .mini-reihe button.aktiv { border-color: var(--rot); }
.modal-galerie .mini-reihe img { width: 100%; height: 100%; object-fit: contain; }

.modal h3 {
  margin: 0 0 4px;
  color: var(--anthrazit);
  font-size: 1.3rem;
  line-height: 1.4;
}
.modal .karte-artnr { font-size: 0.95rem; margin-bottom: 14px; }

.detail-tabelle { width: 100%; border-collapse: collapse; margin-top: 12px; }
.detail-tabelle th,
.detail-tabelle td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--linie);
  vertical-align: top;
}
.detail-tabelle th {
  color: var(--text-gedimmt);
  font-weight: 500;
  width: 160px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Hersteller-Galerie
   -------------------------------------------------------------------------- */
.galerie-raster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  margin: 24px 0 48px;
}
.galerie-raster figure {
  margin: 0;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--schatten);
}
.galerie-raster figure:hover {
  transform: translateY(-3px);
  box-shadow: var(--schatten-hover);
}
.galerie-raster img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 24, 0.85);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  background: var(--weiss);
  padding: 12px;
}

/* --------------------------------------------------------------------------
   Kontakt
   -------------------------------------------------------------------------- */
.kontakt-karte {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--schatten);
  margin-bottom: 20px;
}
.kontakt-karte h3 { margin-top: 0; color: var(--anthrazit); }
.kontakt-karte .gross-tel {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rot);
  text-decoration: none;
}

.karte-einbettung {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--schatten);
}

/* Zwei-Klick-Platzhalter: Karte lädt erst nach aktiver Zustimmung */
.karte-consent {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  background: var(--anthrazit);
  color: var(--weiss);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  overflow: hidden;
}
.karte-consent::before {
  content: "🗺️";
  position: absolute;
  font-size: 8rem;
  opacity: 0.10;
  pointer-events: none;
}
.karte-consent-text { position: relative; max-width: 380px; }
.karte-consent-text strong { display: block; font-size: 1.1rem; margin-bottom: 8px; }
.karte-consent-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 18px;
}
.karte-consent-text a { color: var(--weiss); text-decoration: underline; }
.karte-laden {
  background: var(--rot);
  color: var(--weiss);
  border: 0;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.karte-laden:hover { background: var(--rot-hell); }
.karte-merken {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.karte-merken input { cursor: pointer; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.fuss {
  background: var(--anthrazit);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 40px;
  padding: 48px 0 0;
}
.fuss a { color: var(--weiss); text-decoration: none; }
.fuss a:hover { text-decoration: underline; }

.fuss-spalten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  padding-bottom: 36px;
}
.fuss h4 {
  color: var(--weiss);
  margin: 0 0 12px;
  font-size: 1.02rem;
}
.fuss h4::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 8px;
  border-radius: 2px;
  background: var(--rot-hell);
}
.fuss p { margin: 0 0 8px; font-size: 0.95rem; }
.fuss .klein { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }

.fuss-leiste {
  border-top: 1px solid var(--anthrazit-hell);
  padding: 16px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.fuss-leiste a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.fuss-leiste a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Seitenkopf (Unterseiten)
   -------------------------------------------------------------------------- */
.seiten-kopf {
  background: linear-gradient(135deg, var(--anthrazit) 0%, var(--anthrazit-hell) 100%);
  color: var(--weiss);
  padding: 40px 0 36px;
  border-bottom: 4px solid var(--rot);
}
.seiten-kopf h1 { margin: 0 0 6px; font-size: 1.9rem; }
.seiten-kopf p { margin: 0; color: rgba(255, 255, 255, 0.75); }

/* Impressum / Textseiten */
.textseite { max-width: 780px; }
.textseite h2 { font-size: 1.25rem; margin-top: 32px; }
/* Rote Striche unter h2 sind hier zu viel – stören den Lesefluss */
.textseite h2::after { display: none; }
.textseite h3 { margin-top: 24px; }
.textseite address { font-style: normal; line-height: 1.6; }
.textseite ul { padding-left: 20px; line-height: 1.7; }

/* [KLÄREN]-Markierung: kennzeichnet Stellen, die noch zu ergänzen sind */
.klaeren {
  display: inline-block;
  background: #fff8e8;
  border-left: 3px solid var(--rot);
  padding: 1px 8px;
  font-size: 0.85em;
  color: var(--text);
  border-radius: 0 3px 3px 0;
}

/* Kleinigkeiten */
.hinweis-box {
  background: #fdf6e8;
  border: 1px solid #ecd9ad;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
}
.lade-hinweis { text-align: center; color: var(--text-gedimmt); padding: 60px 0; }
