:root {
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #1565a6; /* Ägäis-Blau */
  --border: #e6e6e6;
  --maxw: 720px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 1.25rem 1.25rem 2rem; }

header.site { border-bottom: 1px solid var(--border); }
header.site .container { padding-top: 1rem; padding-bottom: 1rem; }

.brand {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em;
  text-decoration: none; color: var(--fg);
}
.brand span { color: var(--accent); }
/* Negative left margin compensates the logo's internal left padding (artwork
   starts at x=166 in the 3311x1040 viewBox) so the visible heart aligns flush
   with the page text below. Recompute if the logo/height changes: x/vbHeight*height. */
.brand img { height: 72px; width: auto; display: block; margin-left: -12px; }

h1 { font-size: 1.6rem; line-height: 1.25; margin: 0 0 1.25rem; }
h2 { font-size: 1.15rem; margin: 2rem 0 0.5rem; }
h3 { font-size: 1rem; margin: 1.25rem 0 0.4rem; }

p, li { color: var(--fg); }
a { color: var(--accent); }
.muted { color: var(--muted); }
.lead { font-size: 1.05rem; color: var(--muted); }

address { font-style: normal; }

.links { list-style: none; padding: 0; margin: 2rem 0; }
.links li { margin: 0 0 0.75rem; }
.links a {
  display: block; padding: 0.9rem 1rem; border: 1px solid var(--border);
  border-radius: 10px; text-decoration: none; color: var(--fg); font-weight: 600;
}
.links a:hover { border-color: var(--accent); }

/* Macht offene Platzhalter unübersehbar – vor dem Live-Gang ersetzen. */
.placeholder {
  background: #fff8e1; border: 1px solid #f0d98a;
  padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.9em;
}

footer.site { border-top: 1px solid var(--border); margin-top: 3rem; }
footer.site .container { padding-top: 1rem; padding-bottom: 1.5rem; font-size: 0.9rem; color: var(--muted); }
footer.site .legal-nav a { color: var(--muted); text-decoration: underline; }

/* --- Startseite: Vollbild-Hero mit Coverbild --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem 4rem;
  color: #fff;
  background-color: #0c2733;
  /* Layered scrim: radial vignette darkens the CENTER (behind the logo + the photo's
     bright sun-glare) so the 2-tone logo reads cleanly; vertical gradient adds top mood
     and a darker base for the legal links — the sunset stays visible at the edges. */
  background-image:
    radial-gradient(ellipse at 50% 43%, rgba(6,20,28,.32) 0%, rgba(6,20,28,.08) 46%, rgba(6,20,28,0) 72%),
    linear-gradient(180deg, rgba(6,20,28,.12) 0%, rgba(6,20,28,.05) 44%, rgba(6,20,28,.44) 100%),
    url('cover.jpg');
  background-size: cover;
  /* Content sits in the upper, calmer, darker sky; framing shows more sky so the bright
     sun/horizon band falls BELOW the logo + teaser — bright photo, legible white text. */
  background-position: center 25%;
}
/* Centered, then nudged up ~10vh = midway between dead-center and top-anchored,
   so the logo+teaser sit just above the middle and the sun falls just below them. */
.hero__inner { max-width: 40rem; transform: translateY(-10vh); }
.hero__logo { margin: 0; }
.hero__logo img {
  width: min(78vw, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.55));
  /* The SVG artwork center sits at ~51.45% of the viewBox (asymmetric padding),
     so the visible logo reads ~1.45% right of the centered teaser. Nudge it back
     (responsive: % of the img's own width). */
  transform: translateX(-1.45%);
}
.hero__tagline {
  margin: 1.25rem auto 0;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75), 0 1px 18px rgba(0, 0, 0, 0.9);
}
.hero__legal {
  position: absolute;
  left: 0; right: 0; bottom: 1.5rem;
  font-size: 0.9rem;
}
.hero__legal a { color: rgba(255, 255, 255, 0.9); text-decoration: underline; text-underline-offset: 2px; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75); }
.hero__legal a:hover { color: #fff; }
