/* ===========================
   LEGAL.CSS – Pia Vinici
   Für impressum + datenschutz
=========================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .back-btn {
  position: static;
  background: none;
  backdrop-filter: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 2px;
  padding: 8px 18px;
}
.header .back-btn:hover {
  background: var(--accent);
  color: #0d0d0d;
}
.header-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

main {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.page-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 8px;
}
.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 24px 0 48px;
}

.section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 20px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.section p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}
.section p:last-child { margin-bottom: 0; }
.section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.section ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
}
.section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.section a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
.section a:hover { color: var(--accent-hover); }

.address-box {
  background: var(--surface-2);
  border-left: 2px solid var(--accent);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.9;
}
.address-box span { color: var(--accent); }

.info-section {
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.15);
}
.warning-section {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.25);
}
.warning-section h3 { color: var(--accent); }

@media (max-width: 600px) {
  .header { padding: 14px 20px; }
  main { padding: 40px 20px 60px; }
  .section { padding: 24px 20px; }
}