/* ============================================================
   Activities in your Area – Homepage & Rechtstexte
   ============================================================ */
:root {
  --primary: #10a9ba;
  --primary-dark: #0a7a86;
  --secondary: #14b8a6;
  --gradient: linear-gradient(135deg, #22c9de 0%, #0ea5b8 100%);
  --gradient-soft: linear-gradient(135deg, rgba(34,201,222,.12), rgba(14,165,184,.12));
  --bg: #ffffff;
  --bg-alt: #f6f5fb;
  --text: #1e1b2e;
  --text-2: #55506e;
  --text-3: #918bab;
  --border: #e8e5f3;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 6px 24px rgba(30, 27, 46, .09);
  --shadow-lg: 0 20px 60px rgba(124, 58, 237, .22);
  --maxw: 1080px;
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Top-Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -.4px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand .logo { font-size: 26px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gradient); color: #fff !important;
  padding: 10px 20px; border-radius: 100px; font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 16px rgba(124,58,237,.32);
}
.nav-cta:hover { text-decoration: none; transform: translateY(-1px); }
.nav-cta { transition: transform .15s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--gradient);
  color: #fff; text-align: center;
  padding: 80px 22px 96px;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: var(--bg);
  clip-path: ellipse(75% 100% at 50% 100%);
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.18);
  padding: 7px 16px; border-radius: 100px; font-size: 14px; font-weight: 600;
  margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero h1 { font-size: clamp(34px, 6vw, 56px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.08; }
.hero .sub { font-size: clamp(17px, 2.6vw, 21px); opacity: .94; max-width: 620px; margin: 20px auto 0; font-weight: 400; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; position: relative; z-index: 2; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 100px; font-size: 17px; font-weight: 700;
  transition: transform .15s, box-shadow .15s; border: none; cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary-dark) !important; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.btn-glass { background: rgba(255,255,255,.16); color: #fff !important; backdrop-filter: blur(6px); border: 1.5px solid rgba(255,255,255,.4); }
.btn-primary { background: var(--gradient); color: #fff !important; box-shadow: 0 10px 30px rgba(16,169,186,.32); }
.btn-lg { padding: 17px 38px; font-size: 18px; }

/* ---------- Sections ---------- */
section { padding: 68px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.eyebrow { color: var(--primary); font-weight: 800; font-size: 14px; letter-spacing: 1.4px; text-transform: uppercase; }
.section-head h2 { font-size: clamp(28px, 4.5vw, 40px); font-weight: 800; letter-spacing: -.8px; margin: 8px 0 12px; }
.section-head p { color: var(--text-2); font-size: 18px; }
.alt { background: var(--bg-alt); }

/* ---------- Feature-Grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow); transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .ico {
  width: 56px; height: 56px; border-radius: 16px; background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 16px;
}
.card h3 { font-size: 20px; font-weight: 800; letter-spacing: -.3px; margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: 16px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .num {
  counter-increment: step; width: 62px; height: 62px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800;
  box-shadow: 0 8px 22px rgba(16,169,186,.32);
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--text-2); font-size: 16px; }

/* ---------- Regionen ---------- */
.regions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.region-chip {
  background: #fff; border: 1.5px solid var(--border); border-radius: 100px;
  padding: 12px 24px; font-weight: 700; font-size: 17px; box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 8px;
}
/* aktive Stadt (Bayreuth) hervorheben */
.region-chip.active { border-color: var(--primary); border-width: 2px; color: var(--primary-dark); }
/* geplante Städte: sichtbar, aber klar ausgegraut */
.region-chip.soon {
  color: var(--text-3); background: #f1eff6; border-color: transparent;
  box-shadow: none; opacity: .65;
}
.region-chip .tag { font-size: 11px; font-weight: 800; background: var(--gradient-soft); color: var(--primary-dark); padding: 2px 8px; border-radius: 100px; }
.region-chip.soon .tag { background: #e5e2ec; color: var(--text-3); }

/* ---------- Safety Banner ---------- */
.safety { background: var(--gradient); color: #fff; border-radius: var(--radius); padding: 46px 34px; text-align: center; box-shadow: var(--shadow-lg); }
.safety h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; letter-spacing: -.6px; }
.safety p { opacity: .94; max-width: 640px; margin: 12px auto 0; font-size: 17px; }
.safety-points { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin-top: 24px; }
.safety-points span { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(30px, 5vw, 46px); font-weight: 800; letter-spacing: -1px; }
.final-cta p { color: var(--text-2); font-size: 19px; margin: 14px auto 28px; max-width: 560px; }
.hint { color: var(--text-3); font-size: 15px; margin-top: 16px; }

/* ---------- Footer ---------- */
.footer { background: #1a1626; color: #cfc9e3; padding: 52px 0 34px; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 30px 60px; justify-content: space-between; }
.footer .brand { color: #fff; margin-bottom: 12px; }
.footer p { color: #9a93b8; font-size: 15px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer a { color: #cfc9e3; display: block; margin-bottom: 9px; font-size: 15px; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #322b45; margin-top: 34px; padding-top: 22px; text-align: center; color: #7d76a0; font-size: 14px; }

/* ---------- Legal Pages ---------- */
.legal-head { background: var(--gradient); color: #fff; padding: 56px 22px 40px; }
.legal-head .wrap { max-width: 820px; }
.legal-head a.back { color: rgba(255,255,255,.9); font-weight: 600; font-size: 15px; }
.legal-head h1 { font-size: clamp(28px, 5vw, 40px); font-weight: 800; letter-spacing: -.6px; margin-top: 14px; }
.legal-head .stand { opacity: .85; margin-top: 6px; font-size: 15px; }
.legal-body { max-width: 820px; margin: 0 auto; padding: 44px 22px 80px; }
.legal-body h2 { font-size: 23px; font-weight: 800; letter-spacing: -.3px; margin: 36px 0 12px; }
.legal-body h3 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; }
.legal-body p, .legal-body li { color: var(--text-2); font-size: 16.5px; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { padding-left: 24px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 7px; }
.legal-body strong { color: var(--text); }
.legal-body a { text-decoration: underline; }
.legal-body .toc { background: var(--bg-alt); border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 30px; }
.legal-body .toc h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); margin-bottom: 10px; }
.legal-body .toc a { display: block; margin-bottom: 6px; font-size: 15.5px; }
.note {
  background: #fff8e6; border: 1px solid #f5e2a8; border-left: 4px solid #f0b429;
  border-radius: 10px; padding: 14px 18px; margin: 18px 0; font-size: 15px; color: #7a5a00;
}
.note strong { color: #6b4e00; }
.placeholder { background: #fdecef; color: #b3234a; padding: 1px 6px; border-radius: 5px; font-weight: 600; font-size: .95em; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 52px 0; }
  .hero { padding: 62px 20px 80px; }
  .nav-cta { padding: 9px 16px; font-size: 14px; }
}

/* Sprach-Umschalter im Nav */
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-lang {
  background: none; border: 1.5px solid var(--border); color: var(--text);
  border-radius: 100px; padding: 7px 13px; font-weight: 800; font-size: 13px;
  letter-spacing: .3px; cursor: pointer; transition: border-color .15s, color .15s;
}
.nav-lang:hover { border-color: var(--primary); color: var(--primary); }
