/*
  ============================================================
  DC Gipsy Ebern Website
  Datei: legal.css
  Speicherort: assets/css/pages/
  Zweck: Gemeinsame Styles für Impressum und Datenschutz.
         Fokus auf Lesbarkeit, ruhiges Layout und saubere
         Darstellung längerer rechtlicher Texte.
  Stand: Version 1.0 – Impressum & Datenschutz Layout.
  ============================================================
*/

/* ============================================================
   LEGAL SECTION
   Container für rechtliche Inhalte
   ============================================================ */

.legal-section {
  padding: 120px 0;
}

.legal-container {
  max-width: 950px;
  margin: 0 auto;
}

/* ============================================================
   LEGAL CARD
   Hauptcontainer für Impressum / Datenschutz
   ============================================================ */

.legal-card {
  padding: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius);

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

/* ============================================================
   HEADINGS
   Überschriften innerhalb des Rechtstextes
   ============================================================ */

.legal-card h2 {
  margin-bottom: 35px;
}

.legal-card h3 {
  margin-top: 38px;
  margin-bottom: 14px;

  font-size: 1.15rem;
}

/* ============================================================
   TEXT STYLING
   Lesbarkeit bei langen Inhalten
   ============================================================ */

.legal-card p {
  margin-bottom: 18px;

  line-height: 1.8;
  opacity: 0.82;
}

.legal-card strong {
  color: #ffffff;
}

.legal-card a {
  color: var(--primary);
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

/* ============================================================
   LISTEN (falls später Datenschutz erweitert wird)
   ============================================================ */

.legal-card ul {
  margin: 18px 0 18px 22px;
}

.legal-card li {
  margin-bottom: 8px;
  line-height: 1.7;
  opacity: 0.82;
}

/* ============================================================
   TRENNLINIEN
   Optional für spätere Strukturierung
   ============================================================ */

.legal-divider {
  height: 1px;
  margin: 35px 0;

  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   Kleine Hinweise / Zusatztexte
   ============================================================ */

.legal-note {
  margin-top: 28px;
  font-size: 0.9rem;
  opacity: 0.6;
}
