/* ============================================================
   LEGAL PAGES — Impressum & Datenschutzerklärung
   ============================================================ */

/* Navbar auf Legal-Seiten immer weiß (kein Hero darunter) */
#navbar.scrolled .logo-text .logo-sub  { color: var(--textlt); }
#navbar.scrolled .logo-text .logo-name { color: var(--g800); }

/* Hauptbereich */
.legal-page {
  padding-top: 6rem;
  padding-bottom: 5rem;
  min-height: 70vh;
  background: var(--bg);
}

/* Header */
.legal-header {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--warm200);
  margin-bottom: 2.5rem;
}

.legal-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--g800);
  margin-bottom: 0.5rem;
}

.legal-header p {
  font-size: 0.875rem;
  color: var(--textlt);
}

/* Content container */
.legal-content {
  max-width: 760px;
}

/* Einzelne Abschnitte */
.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--warm100);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--g700);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.6rem;
  font-family: var(--sans);
}

.legal-section p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--textmid);
  margin-bottom: 0.85rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section a {
  color: var(--g600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover { color: var(--g500); }

/* Liste */
.legal-list {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-list li {
  font-size: 0.9rem;
  color: var(--textmid);
  padding: 0.4rem 0 0.4rem 1.25rem;
  border-bottom: 1px solid var(--warm100);
  position: relative;
}

.legal-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--g500);
  font-size: 0.8rem;
}

.legal-list li:last-child { border-bottom: none; }
