/* ===============================================
   legal.css – Datenschutz & Impressum
   Wird zusätzlich zu stylesheet.css geladen
   =============================================== */

/* ---- Logo als Link ---- */
.logo {
  text-decoration: none;
  color: var(--black);
}

/* ---- Page Header ---- */
.legal-hero {
  background: var(--blue);
  padding: 80px 20px 60px;
}

.legal-hero-inner {
  max-width: 800px;
  margin: auto;
}

.legal-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-hero h1 {
  font-family: "forager-overlap", sans-serif;
  font-size: clamp(40px, 7vw, 90px);
  color: white;
  line-height: 0.95;
  font-weight: 700;
}

/* ---- Main Content ---- */
.legal-main {
  padding: 60px 20px 80px;
}

.legal-container {
  max-width: 800px;
  margin: auto;
}

/* ---- Sections ---- */
.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  font-family: "forager-overlap", sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--blue);
  margin-bottom: 16px;
  font-weight: 700;
}

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

.legal-section p {
  color: var(--black);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.legal-section li {
  line-height: 1.8;
  margin-bottom: 4px;
}

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

.legal-section a:hover {
  opacity: 0.75;
}

.legal-section strong {
  font-weight: 700;
}

/* ---- Back Button ---- */
.legal-back {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .legal-hero {
    padding: 60px 20px 40px;
  }

  .legal-main {
    padding: 40px 20px 60px;
  }

  .legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }
}