:root {
  --green: #8b9a6d;
  --green-dark: #75855c;
  --green-deep: #5f6f4a;
  --cream: #f2ead3;
  --cream-soft: #e9e0c6;
  --shadow: rgba(46, 54, 32, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--green);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

/* ── Navigation ──────────────────────────── */
nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 6vw, 56px);
  padding: 26px 16px 0;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

nav a {
  color: var(--cream);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, opacity 0.15s ease;
  opacity: 0.85;
}

nav a:hover { opacity: 1; border-bottom-color: rgba(242, 234, 211, 0.5); }

nav a.active {
  opacity: 1;
  border-bottom-color: var(--cream);
}

/* ── Kopfbereich ─────────────────────────── */
header {
  text-align: center;
  padding: 44px 16px 8px;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: clamp(3.2rem, 10vw, 6rem);
  line-height: 1.1;
  text-shadow: 0 2px 8px var(--shadow);
}

.subtitle {
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.flourish {
  display: block;
  margin: 22px auto 0;
  width: 220px;
  opacity: 0.85;
}

/* ── Bild ────────────────────────────────── */
.hero {
  position: relative;
  margin-top: 34px;
}

.hero img {
  display: block;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 30px var(--shadow);
}

.hero-fallback {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  box-shadow: 0 10px 30px var(--shadow);
  background: linear-gradient(160deg, #7f9160 0%, #66754d 55%, #55633f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--cream-soft);
}

.claim {
  position: relative;
  z-index: 2;
  margin: -26px auto 0;
  width: fit-content;
  max-width: 92%;
  background: var(--green-deep);
  border: 1px solid rgba(242, 234, 211, 0.35);
  border-radius: 999px;
  padding: 10px 34px;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  letter-spacing: 0.05em;
  text-align: center;
  box-shadow: 0 6px 18px var(--shadow);
}

/* ── Infos (Startseite) ──────────────────── */
.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}

.info section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.info section h2 .icon { font-size: 1.5rem; }

.when p {
  text-align: center;
  font-size: 1.25rem;
}

.when h2 { justify-content: center; }

.needs ul {
  list-style: none;
  display: grid;
  gap: 14px;
  font-size: 1.25rem;
}

.needs li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.needs li .emoji { font-size: 1.35rem; width: 1.8rem; text-align: center; }

@media (max-width: 700px) {
  .info { grid-template-columns: 1fr; gap: 40px; }
  .info section h2 { justify-content: center; }
  .needs ul { width: fit-content; margin: 0 auto; }
}

.divider {
  border: none;
  border-top: 1px solid rgba(242, 234, 211, 0.4);
  margin: 52px auto 0;
  width: min(560px, 90%);
}

/* ── Textseiten ──────────────────────────── */
.prose {
  max-width: 680px;
  margin: 48px auto 0;
  font-size: 1.2rem;
}

.prose h2 {
  font-weight: 600;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  margin: 44px 0 14px;
  text-align: center;
}

.prose h2:first-child { margin-top: 0; }

.prose p + p { margin-top: 16px; }

.prose ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.prose ul li {
  position: relative;
  padding-left: 2.1rem;
}

.prose ul li::before {
  content: '🌿';
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 0.95rem;
}

.prose em { color: var(--cream-soft); }

.portrait {
  display: block;
  width: min(320px, 70%);
  margin: 40px auto 0;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 10px 30px var(--shadow);
}

.portrait-fallback {
  width: min(320px, 70%);
  margin: 40px auto 0;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(160deg, #7f9160 0%, #66754d 55%, #55633f 100%);
  box-shadow: 0 10px 30px var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--cream-soft);
  text-align: center;
  padding: 20px;
}

/* ── Anmeldung / Kontakt ─────────────────── */
.signup {
  text-align: center;
  margin-top: 36px;
  font-size: 1.3rem;
}

.signup a.button {
  display: inline-block;
  margin-top: 16px;
  background: var(--cream);
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 36px;
  border-radius: 999px;
  box-shadow: 0 6px 18px var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.signup a.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px var(--shadow);
}

.signup .mail {
  display: block;
  margin-top: 12px;
  font-size: 1.1rem;
  opacity: 0.9;
}

footer {
  text-align: center;
  margin-top: 64px;
  font-size: 0.95rem;
  opacity: 0.75;
}

/* ── Spielplatz (gehört nicht zur Website) ── */
nav {
  flex-wrap: wrap;
  align-items: center;
}

nav a.playground {
  background: #b4432f;
  color: #fdf4ec;
  opacity: 1;
  border: 2px solid #e8674a;
  border-radius: 999px;
  padding: 3px 16px;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 3px 10px var(--shadow);
}

nav a.playground:hover,
nav a.playground.active {
  background: #c64e39;
  border-color: #ffb4a0;
}

/* roter Rahmen rund um die Spielplatz-Seite */
.playground-page .page {
  border: 4px solid #b4432f;
  border-radius: 12px;
  margin-top: 14px;
  margin-bottom: 14px;
  padding-top: 4px;
}

.playground-note {
  margin: 18px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: #fdf4ec;
  background: rgba(180, 67, 47, 0.85);
  border-radius: 8px;
  padding: 10px 18px;
}

.beispiel {
  max-width: 680px;
  margin: 48px auto 0;
}

.beispiel h2 {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.beispiel p {
  margin-top: 8px;
  font-size: 1.2rem;
}

.beispiel img {
  display: block;
  width: 100%;
  margin-top: 18px;
  border-radius: 8px;
  box-shadow: 0 10px 30px var(--shadow);
}
