/* ---------- Legal pages (Impressum / Datenschutz) ----------
   Gilt für datenschutz.html und impressum.html. Beide Seiten teilen sich
   dasselbe Markup-Muster (.legal-section-Wiederholungen) - die eigentlichen
   Texte kommen dynamisch aus js/translate.js über data-i18n(-html).
*/
.legal {
  position: relative;
  background: var(--color-bg-dark);
  padding: 160px 0 120px;
  width: 100vw;
  min-height: 60vh;
  overflow: hidden;
}

.legal-glow {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--color-purple);
  filter: blur(130px);
  opacity: 0.35;
  z-index: 0;
}

.legal-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.legal-header {
  margin-bottom: 56px;
}

.legal-eyebrow {
  display: inline-block;
  color: var(--color-green);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-header h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  overflow-wrap: break-word;
}

.legal-updated {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.legal-section {
  margin-bottom: 44px;
}

.legal-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-purple);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 20px 0 8px;
}

.legal-section p {
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-section li {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

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

.legal-address {
  color: var(--color-muted);
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 14px;
}

.legal-address strong {
  color: var(--color-white);
}

/* Markiert Platzhalter-Angaben (z. B. Adresse), die vor dem Live-Gang noch
   durch echte Daten ersetzt werden müssen - bewusst auffällig eingefärbt. */
.legal-placeholder {
  color: #ffb454;
  font-weight: 600;
}

.legal-back {
  display: inline-block;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .legal {
    padding: 130px 0 90px;
  }

  .legal-container {
    padding: 0 20px;
  }

  .legal-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 520px) {
  .legal-section h2 {
    font-size: 1.2rem;
  }
}
