/* ── Fotomar Impressum ── */

:root {
  --indigo: #4f46e5;
  --indigo-dark: #4338ca;
  --indigo-soft: rgba(79, 70, 229, 0.10);
  --ink: #1f2937;
  --ink-mid: #4b5563;
  --ink-soft: #6b7280;
  --line: rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 600px at 80% -5%, rgba(99, 102, 241, 0.08), transparent 60%),
    radial-gradient(800px 600px at 0% 30%, rgba(79, 70, 229, 0.05), transparent 55%),
    #fbfbfd;
  -webkit-font-smoothing: antialiased;
}

/* Content sits below the fixed 56px header */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 24px 80px;
}

.legal h1 {
  margin: 0 0 40px;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.8px;
}

.legal .lead {
  margin: 0 0 36px;
  color: var(--ink-mid);
  font-size: 1rem;
  line-height: 1.6;
}

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

.legal h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
}

.legal p {
  margin: 0 0 8px;
  color: var(--ink-mid);
  font-size: 0.97rem;
  line-height: 1.65;
}

.legal a {
  color: var(--indigo);
  text-decoration: none;
  transition: color 0.15s ease;
}
.legal a:hover {
  color: var(--indigo-dark);
  text-decoration: underline;
}

.legal .placeholder {
  color: var(--ink-soft);
  font-style: italic;
}

/* Header-Button (wie #loginBtn auf der Karte) */
.header-cta {
  padding: 7px 16px;
  border-radius: 10px;
  border: none;
  background: #4f46e5;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.header-cta:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--indigo);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.back-link:hover {
  background: var(--indigo-dark);
  transform: translateY(-1px);
  text-decoration: none !important;
}
