/* site.css — Zustände, die im HTML-Entwurf über das style-hover-Attribut
   der Design-Laufzeit liefen. Alles andere bleibt Inline-Stil wie im
   Original, damit die Optik 1:1 erhalten bleibt. */

/* [hidden] muss gegen die Inline-display-Angaben gewinnen. Suchfeld,
   Newsletter-Hinweis und die Archivzeilen tragen alle ihr display inline;
   ohne diese Regel bliebe das Attribut wirkungslos. */
[hidden] { display: none !important; }

/* Grundfarben der Verweise. */
body { margin: 0; background: #f3f2f2; color: #201f1d; }
a { color: #201f1d; }
a:hover { color: #7d5411; }

/* Rechtstexte (Impressum, Datenschutz) setzen die Verweise im Akzentton —
   aber NUR im Textkörper. Eine Regel auf <body> würde über die Spezifität
   auch Navigation und Fuß einfärben; die Navigation sähe dann aus, als
   wären alle Punkte aktiv. */
.kz-doc-text a { color: #7d5411; }
.kz-doc-text a:hover { color: #5a3b0a; }

/* — Kopf ————————————————————————————————————————————————— */
.kz-topbar-a { color: #67635c; text-decoration: none; }
.kz-topbar-a:hover { color: #7d5411; }

.kz-suche-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1px solid rgba(32, 31, 29, 0.16);
  border-radius: 4px; padding: 4px 10px; font: inherit;
  color: #201f1d; cursor: pointer;
}
.kz-suche-btn:hover { border-color: #7d5411; color: #7d5411; }

.kz-nav-a {
  font: 600 13px 'Lora', serif; letter-spacing: .4px; text-transform: uppercase;
  text-decoration: none; padding: 12px 12px 10px;
  color: #201f1d; border-bottom: 2px solid transparent;
}
.kz-nav-a:hover { color: #7d5411; }
.kz-nav-a.is-aktiv { color: #7d5411; border-bottom-color: #7d5411; }

/* Eilmeldungsband */
.kz-eil { background: #fff3e4; }
.kz-eil:hover { background: #ffe3bf; }

/* — Formularfelder ——————————————————————————————————————— */
.kz-input {
  font-family: 'Lora', serif;
  border: 1px solid rgba(32, 31, 29, 0.28); border-radius: 4px;
  color: #201f1d; outline: none;
}
.kz-input:focus {
  border-color: #b68235;
  box-shadow: 0 0 0 2px rgba(182, 130, 53, 0.2);
}

.kz-btn-akzent {
  font: 600 13px 'Lora', serif; background: transparent; color: #7d5411;
  border: 1px solid #b68235; border-radius: 4px; cursor: pointer;
}
.kz-btn-akzent:hover { background: #fff3e4; }

.kz-btn-still {
  font: 600 13px 'Lora', serif; background: none;
  border: 1px solid rgba(32, 31, 29, 0.28); border-radius: 4px;
  padding: 0 16px; color: #67635c; cursor: pointer;
}
.kz-btn-still:hover { color: #7d5411; border-color: #7d5411; }

/* — Stille Verweise (Archivhinweis, Brotkrume) ————————————— */
.kz-a-still { color: #67635c; text-decoration: none; }
.kz-a-still:hover { color: #7d5411; }
