/* Stil fuer die Rechtsseiten (Impressum, Datenschutz, AGB).
   Uebernimmt Farben und Schriften des Haupt-Designs. Schriften kommen aus
   /fonts/fonts.css (lokal gehostet). */
:root {
  --creme: #FDFAF7;
  --leine: #FAF6F0;
  --malve: #A870A4;
  --malve-hell: #F4ECF6;
  --malve-dunkel: #7A4A80;
  --text-dunkel: #221C14;
  --text-mittel: #3D3528;
  --text-hell: #9A8E80;
  --linie: #DDD0C8;
  --radius: 12px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-dunkel);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,250,247,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linie);
  padding: 0 3rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 400; font-style: italic;
  color: var(--text-dunkel); text-decoration: none;
  display: inline-flex; align-items: center;
}
/* Logo (vollstaendig, mit Subline; wenn build_legal.py LOGO=True). Bei LOGO=False nur Text. */
.nav-logo-img { height: 38px; width: auto; display: block; }
.nav-back { font-size: 0.85rem; color: var(--malve); text-decoration: none; letter-spacing: 0.03em; }
.nav-back:hover { text-decoration: underline; }

/* INHALT */
main {
  max-width: 820px; margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}
main h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1.15;
  color: var(--text-dunkel); margin-bottom: 2.5rem;
}
main h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.6rem; color: var(--text-dunkel);
  margin: 2.75rem 0 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--linie);
}
main h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.2rem; color: var(--text-dunkel); margin: 1.75rem 0 0.5rem;
}
main p, main li { color: var(--text-mittel); margin-bottom: 0.9rem; }
main ul { padding-left: 1.4rem; margin-bottom: 0.9rem; }
main li { margin-bottom: 0.3rem; }
main a { color: var(--malve); text-decoration: none; }
main a:hover { text-decoration: underline; }
main strong { color: var(--text-dunkel); font-weight: 500; }
.lead { color: var(--text-hell); font-size: 0.95rem; margin-bottom: 2rem; }
/* Platzhalter, die die Auftraggeberin noch fuellen muss */
.platzhalter {
  background: #FBF6E0; color: #7A6200;
  padding: 0.05em 0.4em; border-radius: 4px; font-style: normal;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--linie); background: var(--leine);
  padding: 2.5rem 1.5rem;
  font-size: 0.85rem; color: var(--text-hell);
  text-align: center;
}
footer a { color: var(--malve); text-decoration: none; margin: 0 0.6rem; }
footer a:hover { text-decoration: underline; }
.footer-copy { margin-top: 1rem; font-size: 0.75rem; }
