/* ════════════════════════════════════════════
   Lisa Wolfgarten — Shared Design System
   Wird von: index.html, about.html, angebote.html,
             impressum.html, datenschutz.html, warteliste-social-impact.html genutzt
   ════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --off-white: #f1f4f0;
  --warm-mid:  #c2d4bb;
  --stone:     #6e9678;
  --ink:       #14201a;
  --accent:    #2d6a4f;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025; mix-blend-mode: multiply;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 3rem;
}

.logo {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 400; letter-spacing: 0.03em;
  color: var(--off-white); text-decoration: none;
}

.nav-links { display: flex; gap: 2.4rem; align-items: center; }

.nav-link {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,240,235,0.65); text-decoration: none;
  transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active { color: var(--off-white); }

/* ── SHARED COMPONENTS ── */
.section-label {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); display: block; margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  padding: 1rem 2.6rem;
  transition: background 0.3s, transform 0.2s;
}
.cta-btn:hover { background: #1e4d38; transform: translateY(-2px); }

.cta-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}
.cta-btn--ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.55);
  color: #fff; transform: translateY(-2px);
}

.cta-btn--dark {
  background: var(--ink); color: var(--off-white);
}
.cta-btn--dark:hover { background: #0a1210; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--ink); padding: 2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
footer > span {
  font-family: var(--serif); font-size: 1rem;
  color: rgba(245,240,235,0.45);
}
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,240,235,0.35); text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--off-white); }

/* ── ANIMATIONS ── */
@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown { from { top: -100%; } to { top: 100%; } }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { gap: 1.4rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .cta-btn { width: 100%; text-align: center; }
}
