/* ============================================================
   DHV Beckrath – Gemeinsames Stylesheet
   Farbe: #047f12 (Vereinsgrün)
   Schriften: Playfair Display (Überschriften) + Source Sans 3
   ============================================================ */
:root {
  --gruen:        #047f12;
  --gruen-hell:   #06a818;
  --gruen-dunkel: #035a0d;
  --gruen-bg:     #f0faf1;
  --gruen-line:   #c8eecb;
  --creme:        #f9f7f2;
  --text:         #1a1a1a;
  --text-mid:     #444;
  --text-light:   #777;
  --white:        #ffffff;
  --shadow:       0 4px 24px rgba(4,127,18,0.10);
  --radius:       12px;
  --nav-h:        72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--creme);
  min-height: 100vh;
}

/* ── NAVIGATION ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--gruen-dunkel);
  display: flex; align-items: center;
  padding: 0 3rem;
  z-index: 1000;
  box-shadow: 0 2px 14px rgba(0,0,0,.16);
}
.nav-logo {
  display: flex; align-items: center;
  height: 100%; width: 150px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img {
  display: block;
  max-width: 138px;
  max-height: 64px;
  width: auto; height: auto;
  object-fit: contain;
}
.nav-links {
  display: flex; align-items: center; gap: .75rem;
  margin-left: auto; list-style: none;
}
.nav-links a {
  display: block;
  padding: .55rem .85rem;
  text-decoration: none;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: .98rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, opacity .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: rgba(255,255,255,.9);
}
.nav-links .nav-contact {
  margin-left: .7rem;
  padding: .5rem 1.35rem;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
}
.nav-links .nav-contact:hover {
  background: rgba(255,255,255,.12);
  border-bottom-color: rgba(255,255,255,.9);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; margin-left: auto;
  background: transparent; border: 0;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: white; border-radius: 2px;
}
@media (max-width: 820px) {
  nav.site-nav { padding: 0 1rem; }
  .nav-logo { width: 120px; }
  .nav-logo img { max-width: 112px; max-height: 58px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--gruen-dunkel);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem 1rem 1rem; display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem 1rem; }
  .nav-links .nav-contact { margin: .5rem 0 0; text-align: center; }
}

/* ── SEITENINHALT ── */
.page-content {
  padding-top: var(--nav-h);
  min-height: 100vh;
  animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  color: var(--gruen-dunkel);
  padding: 5.2rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -2;
  background: url("Bilder/BeckratherMuehle.jpg") center center / cover no-repeat;
  filter: grayscale(100%) contrast(1.42) brightness(.90);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 45%,
      rgba(249,247,242,.48) 0%,
      rgba(249,247,242,.36) 31%,
      rgba(249,247,242,.14) 59%,
      rgba(249,247,242,.04) 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(3,90,13,.55);
  background: rgba(249,247,242,.68);
  border-radius: 50px; padding: .45rem 1.7rem;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(2px);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 700; line-height: 1.02;
  margin-bottom: 1.4rem;
  color: var(--gruen-dunkel);
  text-shadow: 0 1px 2px rgba(255,255,255,.8);
}
.hero p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #17382d;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 1px 2px rgba(255,255,255,.9);
}
.hero-stats {
  display: flex; justify-content: center; gap: 0;
  flex-wrap: wrap; margin-top: 2.3rem;
  background: rgba(249,247,242,.52);
  border-radius: 3px;
  box-shadow: 0 1px 8px rgba(255,255,255,.12);
  backdrop-filter: blur(1px);
}
.hero-stat {
  text-align: center;
  min-width: 210px;
  padding: .15rem 2rem;
}
.hero-stat + .hero-stat {
  border-left: 1px solid rgba(3,90,13,.45);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.35rem; font-weight: 800;
  color: #004b0a;
  text-shadow: 0 1px 1px rgba(255,255,255,.7);
}
.hero-stat-lbl {
  font-size: .86rem;
  color: #004b0a;
  text-transform: uppercase;
  letter-spacing: .075em;
  font-weight: 800;
  text-shadow: 0 1px 1px rgba(255,255,255,.75);
}
@media (max-width: 700px) {
  .hero { min-height: auto; padding: 4rem 1.2rem 3.5rem; }
  .hero::before { background-position: 62% center; }
  .hero::after {
    background: radial-gradient(ellipse at 50% 42%,
      rgba(249,247,242,.62) 0%,
      rgba(249,247,242,.50) 42%,
      rgba(249,247,242,.30) 100%);
  }
  .hero-stat { min-width: 100%; padding: .7rem 1rem; }
  .hero-stat + .hero-stat { border-left: 0; border-top: 1px solid rgba(3,90,13,.3); }
}

/* ── ABSCHNITTE ── */
.section {
  padding: 4rem 2rem;
  max-width: 1100px; margin: 0 auto;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--gruen-dunkel);
  margin-bottom: 0.5rem;
}
.section-title::after {
  content: ''; display: block;
  width: 48px; height: 3px;
  background: var(--gruen); border-radius: 3px;
  margin-top: 0.5rem;
}
.section-sub {
  color: var(--text-light); font-size: 1rem;
  margin-bottom: 2.5rem; margin-top: 0.5rem;
}
.section-green {
  background: var(--gruen-bg);
  padding: 4rem 2rem;
}
.section-green .section { padding-top: 0; padding-bottom: 0; }

/* ── INFO-KARTEN ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: white; border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--gruen-line);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(4,127,18,0.15);
}
.info-card-icon {
  width: 48px; height: 48px; background: var(--gruen-bg);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 1rem;
}
.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--gruen-dunkel); margin-bottom: 0.5rem;
}
.info-card p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.6; }

/* ── FOTO-LEISTE ── */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem; margin: 3rem 0;
}
@media (max-width: 640px) { .photo-strip { grid-template-columns: 1fr; } }
.photo-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--gruen); position: relative; min-height: 200px;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: white; font-size: 0.85rem; font-weight: 600;
}

/* ── VERANSTALTUNGEN ── */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-row {
  display: flex; align-items: center; gap: 1.5rem;
  background: white; border-radius: var(--radius);
  padding: 1.25rem 1.5rem; border: 1px solid var(--gruen-line);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}
.event-row:hover { border-color: var(--gruen); transform: translateX(4px); }
.event-date {
  min-width: 70px; text-align: center;
  background: var(--gruen-bg); border-radius: 8px;
  padding: 0.6rem 0.5rem; border: 1px solid var(--gruen-line);
}
.event-date-month {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gruen); font-weight: 700;
}
.event-date-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--gruen-dunkel); line-height: 1;
}
.event-info h3 { font-size: 1rem; font-weight: 600; color: var(--text); }
.event-info p { font-size: 0.85rem; color: var(--text-light); margin-top: 0.2rem; }
.event-tag {
  margin-left: auto; background: var(--gruen); color: white;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem; border-radius: 50px; white-space: nowrap;
}

/* ── KONTAKT ── */
.contact-bar {
  background: var(--gruen); color: white;
  padding: 3.5rem 2rem; text-align: center;
}
.contact-bar h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; margin-bottom: 0.5rem;
}
.contact-bar p { opacity: 0.85; font-size: 1rem; margin-bottom: 2rem; }
.contact-btn {
  display: inline-block; background: white; color: var(--gruen);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.contact-btn-green {
  background: var(--gruen); color: white;
  display: inline-block; padding: 0.75rem 1.75rem; border-radius: 8px;
  font-weight: 700; text-decoration: none; font-size: 0.9rem;
  transition: background 0.2s;
}
.contact-btn-green:hover { background: var(--gruen-hell); }

/* ── SOCIAL / QR ── */
.social-row {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  padding: 2.5rem 2rem; background: white;
  border-top: 1px solid var(--gruen-line);
}
.social-card {
  text-align: center; display: flex;
  flex-direction: column; align-items: center; gap: 0.75rem;
}
.qr-box {
  width: 120px; height: 120px; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--gruen-line); background: var(--gruen-bg);
  display: flex; align-items: center; justify-content: center;
}
.qr-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; width: 100%; height: 100%;
  gap: 0.4rem; color: var(--gruen);
  font-size: 0.7rem; font-weight: 600; text-align: center; padding: 0.5rem;
}
.social-card span { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); }
.social-card a { font-size: 0.75rem; color: var(--gruen); text-decoration: none; }

/* ── VEREINE ── */
.vereins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.vereins-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--gruen-line); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.2s;
}
.vereins-card:hover { transform: translateY(-3px); }
.vereins-header {
  background: var(--gruen); color: white;
  padding: 1.1rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
}
.vereins-body { padding: 1.25rem 1.5rem; }
.vereins-body p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 0.4rem; line-height: 1.5; }
.contact-line { display: flex; align-items: baseline; gap: 0.4rem; }
.contact-label {
  font-size: 0.78rem; font-weight: 700; color: var(--gruen);
  text-transform: uppercase; letter-spacing: 0.05em; min-width: 60px;
}

/* ── TIMELINE (Historisches) ── */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 0.6rem; top: 0; bottom: 0;
  width: 2px; background: var(--gruen-line);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
  position: absolute; left: -2.0rem; top: 0.3rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gruen); border: 3px solid white;
  box-shadow: 0 0 0 2px var(--gruen);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--gruen); margin-bottom: 0.3rem;
}
.timeline-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* ── RÜCKBLICK ── */
.rück-note {
  background: var(--gruen-bg); border: 1px solid var(--gruen-line);
  border-radius: var(--radius); padding: 2rem;
  text-align: center; color: var(--text-mid);
  font-size: 0.95rem; line-height: 1.7;
}
.rück-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.rück-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--gruen-line); overflow: hidden;
  box-shadow: var(--shadow);
}
.rück-img {
  height: 160px; background: var(--gruen-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--gruen-line);
}
.rück-body { padding: 1rem; }
.rück-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--gruen-dunkel); margin-bottom: 0.25rem;
}
.rück-body p { font-size: 0.83rem; color: var(--text-light); }

/* ── DHV / VORSTAND ── */
.dhv-text {
  font-size: 0.97rem; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 1.5rem;
}
.dhv-text strong { color: var(--gruen-dunkel); }
.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin: 2rem 0;
}
.person-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--gruen-line);
  padding: 1.25rem; display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow);
}
.person-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gruen); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; flex-shrink: 0;
}
.person-info { min-width: 0; }
.person-name { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.person-role { font-size: 0.78rem; color: var(--gruen); font-weight: 600; margin-top: 0.1rem; }
.person-tel { font-size: 0.78rem; color: var(--text-light); }
.beisitzer-box {
  background: var(--gruen-bg); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--gruen-line); margin-top: 1rem;
}
.beisitzer-box p { font-size: 0.9rem; color: var(--text-mid); }
.beisitzer-box strong { color: var(--gruen); }

/* ── SATZUNG ── */
.satzung-box {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--gruen-line); padding: 2rem;
  margin-top: 2.5rem; box-shadow: var(--shadow);
}
.satzung-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gruen-dunkel); margin-bottom: 1rem;
}
.satzung-box h4 {
  font-size: 0.9rem; font-weight: 700; color: var(--gruen);
  margin-top: 1.25rem; margin-bottom: 0.35rem;
}
.satzung-box p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }

/* ── HILFSELEMENTE ── */
.divider {
  height: 1px; background: var(--gruen-line); margin: 2.5rem 0;
}
.history-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: start;
}
@media (max-width: 680px) {
  .history-layout { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer {
  background: var(--gruen-dunkel); color: white;
  text-align: center; padding: 1.5rem 2rem;
  font-size: 0.82rem; opacity: 0.85;
}
footer a { color: rgba(255,255,255,0.7); }


/* ── STARTSEITE: DORF-INFOS ── */
.info-card-icon { display: none !important; }

.info-card {
  position: relative;
  overflow: hidden;
}

.info-card-map {
  min-height: 230px;
  isolation: isolate;
}

.location-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: -2;
  filter: grayscale(100%) contrast(.9);
  opacity: .34;
  pointer-events: none;
}

.info-card-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(249,247,242,.58);
  z-index: -1;
}

.info-card-content {
  position: relative;
  z-index: 1;
}

/* ── FOOTER / COMMUNITY ── */
.site-footer {
  background: #004b0a;
  color: #fff;
  padding: 3.2rem 2rem 0;
}

.community-invite {
  max-width: 1040px;
  margin: 0 auto 2.8rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}

.footer-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: rgba(255,255,255,.78);
}

.community-invite h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin: 0 0 .65rem;
  color: #fff;
}

.community-invite p {
  max-width: 680px;
  line-height: 1.6;
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,.88);
}

.community-btn {
  display: inline-block;
  padding: .75rem 1.25rem;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.community-btn:hover { background: rgba(255,255,255,.12); }

.community-qr img {
  width: 150px;
  height: 150px;
  display: block;
  background: #fff;
  padding: 8px;
  border-radius: 10px;
}

.footer-social {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding-bottom: 2.5rem;
}

.footer-social-card {
  text-align: center;
  padding: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.22);
}

.footer-social-card img {
  width: 112px;
  height: 112px;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
  margin-bottom: .7rem;
}

.footer-social-card strong {
  display: block;
  margin-bottom: .35rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}

.footer-social-card a {
  color: #fff;
  text-decoration: none;
}

.footer-social-card > a:last-child {
  font-size: .88rem;
  color: rgba(255,255,255,.78);
}

.footer-bottom {
  margin: 0 -2rem;
  padding: 1.1rem 2rem;
  text-align: center;
  background: rgba(0,0,0,.16);
  color: rgba(255,255,255,.78);
  font-size: .84rem;
}

.footer-bottom a { color: #fff; }

@media (max-width: 720px) {
  .community-invite {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }
  .community-qr { justify-self: center; }
  .footer-social { grid-template-columns: 1fr; }
}

/* Abschluss Startseite: statische Lagekarte statt WebGL */
.location-map { display: none !important; }
.location-map-static {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: .42;
  filter: grayscale(100%) contrast(.92);
  pointer-events: none;
}
.info-card-map::after {
  background: rgba(249,247,242,.50);
}

/* Neues DHV-Logo ohne Unterzeile */
.site-logo img {
  object-fit: contain;
}


/* ============================================================
   UNTERSEITEN – gemeinsamer grüner Seitenheader
   ============================================================ */
.subpage-hero {
  position: relative;
  min-height: 258px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #035a0d;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("Bilder/BeckratherMuehle.jpg") center 52% / cover no-repeat;
  filter: grayscale(100%) contrast(1.15);
}
.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(3,90,13,.96) 0%,
      rgba(3,90,13,.88) 42%,
      rgba(3,90,13,.70) 72%,
      rgba(3,90,13,.58) 100%);
}
.subpage-hero-inner {
  width: min(1180px, calc(100% - 4rem));
  margin: 0 auto;
  padding: 2.7rem 0 2.9rem;
}
.subpage-kicker {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  color: rgba(255,255,255,.90);
}
.subpage-hero h1 {
  margin: 0;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: .98;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.16);
}
.subpage-hero p {
  margin: .8rem 0 0;
  color: rgba(255,255,255,.95);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
}

.vereine-intro {
  max-width: 950px;
  font-size: 1.08rem;
  line-height: 1.65;
}

/* Startseite: Lagekarte bewusst deutlich sichtbar */
.location-map-static {
  opacity: .82 !important;
  filter: grayscale(100%) contrast(1.35) brightness(.88) !important;
}
.info-card-map::after {
  background: rgba(249,247,242,.22) !important;
}
.info-card-map .info-card-content {
  background: rgba(249,247,242,.72);
  padding: 1rem 1.15rem;
  border-radius: 10px;
  backdrop-filter: blur(1px);
}

@media (max-width: 720px) {
  .subpage-hero { min-height: 220px; }
  .subpage-hero-inner {
    width: calc(100% - 2.4rem);
    padding: 2.2rem 0;
  }
  .subpage-hero::after {
    background: rgba(3,90,13,.82);
  }
}


/* ============================================================
   STARTSEITE – Lagekarte als Hintergrund des gesamten Infobereichs
   ============================================================ */
.village-info-map-bg {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 1.15rem;
  isolation: isolate;
}
.village-map-background {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  z-index: -2;
  opacity: .72;
  filter: grayscale(100%) contrast(1.35) brightness(.90);
}
.village-info-map-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(249,247,242,.24);
}
.village-info-map-bg .info-grid {
  margin: 0;
}
.village-info-map-bg .info-card {
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(1px);
}
.village-info-map-bg .info-card-map {
  min-height: initial;
}
.village-info-map-bg .info-card-map::after {
  display: none !important;
}
.village-info-map-bg .info-card-map .info-card-content {
  background: transparent;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
}

/* ============================================================
   VEREINE – alle Karten im gleichen Raster
   ============================================================ */
.vereins-grid {
  align-items: stretch;
}
.vereins-card {
  width: auto !important;
  grid-column: auto !important;
}

/* ============================================================
   DHV – Mitgliedschaft
   ============================================================ */
.membership-section {
  scroll-margin-top: 95px;
  margin: 2.7rem 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--gruen-line);
  border-radius: 18px;
  background: #f8faf5;
}
.membership-heading {
  max-width: 800px;
  margin-bottom: 1.6rem;
}
.membership-kicker {
  display: block;
  margin-bottom: .4rem;
  color: var(--gruen);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.membership-heading .section-title {
  margin-bottom: .45rem;
}
.membership-heading p {
  color: var(--text-mid);
  line-height: 1.6;
}
.membership-type {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.membership-option {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--gruen-line);
  border-radius: 12px;
  cursor: pointer;
}
.membership-option input {
  margin-top: .25rem;
  accent-color: #006b12;
}
.membership-option strong,
.membership-option small {
  display: block;
}
.membership-option strong {
  color: var(--gruen-dunkel);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}
.membership-option small {
  margin-top: .2rem;
  color: var(--text-mid);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.2rem;
}
.form-grid label span {
  display: block;
  margin-bottom: .35rem;
  color: var(--gruen-dunkel);
  font-weight: 700;
  font-size: .9rem;
}
.form-grid input {
  width: 100%;
  box-sizing: border-box;
  padding: .78rem .85rem;
  border: 1px solid #b8cfb9;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  color: var(--text);
}
.form-grid input:focus {
  outline: 2px solid rgba(0,107,18,.16);
  border-color: #006b12;
}
.form-full {
  grid-column: 1 / -1;
}
.family-fields {
  margin: 1.5rem 0 0;
  padding: 1.25rem;
  border: 1px solid var(--gruen-line);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
}
.family-fields legend {
  padding: 0 .5rem;
  color: var(--gruen-dunkel);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.form-note {
  margin: 1.2rem 0 .9rem;
  color: var(--text-mid);
  font-size: .84rem;
  line-height: 1.5;
}
.membership-submit {
  border: 0;
  border-radius: 999px;
  padding: .82rem 1.35rem;
  background: #006b12;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.membership-submit:hover {
  background: #004b0a;
}
@media (max-width: 700px) {
  .membership-type,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-full { grid-column: auto; }
  .village-info-map-bg { padding: .7rem; }
}


/* ============================================================
   V7 – gezielte Abschlusskorrekturen auf Basis des intakten V2
   ============================================================ */

/* Keine externe Schriftverbindung. V2-Größen und Abstände bleiben erhalten. */
body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}
.nav-links a,
.hero h1,
.hero p,
.hero-stat-num,
.section-title,
.info-card h3,
.event-date-day,
.contact-bar h2,
.vereins-header,
.timeline-year,
.rück-body h4,
.person-avatar,
.satzung-box h3,
.community-invite h2,
.footer-social-card strong,
.subpage-hero h1,
.subpage-hero p,
.membership-option strong,
.family-fields legend {
  font-family: Georgia, "Times New Roman", serif;
}

/* Kartenversuch auf der Startseite vollständig deaktiviert. */
.village-info-map-bg,
.village-map-background,
.location-map-static {
  display: none !important;
}
.info-card-map::before,
.info-card-map::after {
  display: none !important;
}
.info-card-map .info-card-content {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
}
.info-card,
.info-card-map {
  background: #fff !important;
}

/* Alle Vereinskarten und ihre grünen Köpfe identisch. */
.vereins-grid {
  align-items: stretch;
}
.vereins-card {
  width: auto !important;
  grid-column: auto !important;
  display: flex;
  flex-direction: column;
}
.vereins-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.vereins-body {
  flex: 1;
}

/* Rechtliche Links im Footer */
.legal-links {
  display: inline-flex;
  gap: .85rem;
  margin-left: .85rem;
}
.legal-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Impressum / Datenschutz im gleichen Stil wie die übrigen Unterseiten */
.legal-hero {
  min-height: 220px;
}
.legal-page {
  max-width: 980px;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--gruen-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.7;
}
.legal-card h2 {
  margin: 1.8rem 0 .45rem;
  color: var(--gruen-dunkel);
  font-family: Georgia, "Times New Roman", serif;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card h3 {
  margin: 1.4rem 0 .35rem;
  color: var(--gruen-dunkel);
  font-family: Georgia, "Times New Roman", serif;
}
.legal-card a {
  color: var(--gruen-dunkel);
}
.legal-page-footer {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  text-align: center;
  background: var(--gruen-dunkel);
  color: #fff;
}
.legal-page-footer a {
  color: #fff;
}

@media (max-width: 700px) {
  .legal-links {
    display: flex;
    justify-content: center;
    margin: .65rem 0 0;
  }
}
