/* ── LOCAL FONTS ─────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ── RESET & ROOT ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green-deep:   #1a3a2a;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --earth:        #8b5e3c;
  --gold:         #c9a84c;
  --cream:        #f5f0e8;
  --text:         #1e1e1e;
  --text-light:   #5a5a5a;
  --nav-h:        70px;
  --pond-img:     url("images/teich.webp");
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── FOCUS VISIBLE ───────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── UTILITY CLASSES ─────────────────────────────── */
.hidden { display: none !important; }

/* ── NAVBAR ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h);
  background: rgba(26, 58, 42, 0.92);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; z-index: 1000;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}
.nav-logo img {
  height: 48px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: rgba(245,240,232,0.85); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.burger span {
  display: block; width: 26px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0;
  width: 100%; background: var(--green-deep);
  flex-direction: column; padding: 1.5rem 2rem 2rem;
  gap: 0; z-index: 999;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--cream); font-size: 1.1rem; font-weight: 600;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.04em;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────────────── */
#home {
  min-height: 100vh;
  background-image:
    linear-gradient(160deg,
      rgba(15,33,24,0.82) 0%,
      rgba(26,58,42,0.65) 40%,
      rgba(45,106,79,0.35) 75%,
      rgba(0,0,0,0.15) 100%),
    var(--pond-img);
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: calc(var(--nav-h) + 3rem) 6vw 4rem;
  position: relative; overflow: hidden;
}
#home::before {
  content: '';
  position: absolute; bottom: -2px; left: 0; width: 100%; height: 120px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-tag {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--cream); max-width: 700px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1.1rem; color: rgba(245,240,232,0.82);
  max-width: 480px; line-height: 1.7; margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold); color: var(--green-deep);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.2s, transform 0.2s;
}
.hero-btn:hover { background: #e0bf6a; transform: translateY(-2px); }

/* ── SECTIONS ALLGEMEIN ─────────────────────────── */
section { padding: 6rem 6vw; }
section:nth-child(even) { background: #fff; }

/* Pond-Bild als dekorativer Trennstreifen zwischen Sektionen */
.pond-divider {
  height: 280px;
  background-image:
    linear-gradient(to bottom, rgba(245,240,232,1) 0%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.35) 70%, rgba(255,255,255,1) 100%),
    var(--pond-img);
  background-size: cover;
  background-position: center 60%;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
}
.pond-divider-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: rgba(245,240,232,0.9);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
  font-weight: 700;
}

.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green-light);
  margin-bottom: 0.6rem;
}
.section-label--gold { color: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; color: var(--green-deep);
  line-height: 1.15; margin-bottom: 1.5rem;
  max-width: 600px;
}
.section-title--cream { color: var(--cream); }

.section-intro {
  font-size: 1.05rem; color: var(--text-light);
  line-height: 1.75; max-width: 640px; margin-bottom: 3rem;
}
.section-intro--muted { color: rgba(245,240,232,0.7); }

.divider {
  width: 48px; height: 3px; background: var(--gold);
  margin-bottom: 2rem; border-radius: 2px;
}

/* ── VEREIN ─────────────────────────────────────── */
#verein .two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.two-col--mb { margin-bottom: 4rem; }

.verein-text p {
  font-size: 1rem; line-height: 1.8; color: var(--text-light); margin-bottom: 1.5rem;
}
.verein-text p:last-child { margin-bottom: 0; }

.info-box {
  background: var(--green-deep); color: var(--cream);
  padding: 2.5rem; border-radius: 4px;
  position: relative; overflow: hidden;
}
.info-box::before {
  content: '';
  position: absolute; bottom: -30px; right: -30px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(201,168,76,0.08);
}
.info-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 1rem;
}
.info-box p { font-size: 0.95rem; line-height: 1.7; color: rgba(245,240,232,0.8); }
.info-box .contact-list { margin-top: 1.2rem; list-style: none; }
.info-box .contact-list li {
  font-size: 0.9rem; padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,240,232,0.85);
}
.info-box .contact-list li:last-child { border-bottom: none; }
.info-box .contact-list strong { color: var(--gold); margin-right: 0.4rem; }
.contact-link { color: var(--green-light); }
.contact-note { font-size: 0.85rem; opacity: 0.7; }

.vereinsleitung-title {
  font-family: 'Playfair Display', serif;
  color: var(--green-deep);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ── FISCHEREIORDNUNG ───────────────────────────── */
#fischereiordnung { background: var(--green-deep) !important; color: var(--cream); }
#fischereiordnung .section-title { color: var(--cream); }
#fischereiordnung .section-label { color: var(--gold); }
#fischereiordnung .section-intro { color: rgba(245,240,232,0.7); }
.rules-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.rule-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; padding: 1.5rem;
  transition: background 0.2s, transform 0.2s;
}
.rule-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
.rule-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.rule-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--gold); margin-bottom: 0.6rem;
}
.rule-card p { font-size: 0.88rem; line-height: 1.65; color: rgba(245,240,232,0.72); }
.pdf-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.2s, color 0.2s;
}
.pdf-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
}
.pdf-btn-wrap {
  margin-top: 3rem;
  text-align: center;
}

/* ── VERANSTALTUNGEN ────────────────────────────── */
.section-veranstaltungen { background: #fff; }

.events-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.events-group {
  background: var(--cream);
  border-radius: 4px; padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.07);
}
.events-group-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--green-deep);
  margin-bottom: 1rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
}
.events-list { display: flex; flex-direction: column; gap: 0.5rem; }
.event-item {
  display: grid;
  grid-template-columns: 90px 80px 1fr;
  gap: 0.5rem; align-items: center;
  padding: 0.55rem 0.7rem;
  background: #fff; border-radius: 3px;
  border-left: 3px solid rgba(82,183,136,0.3);
  font-size: 0.85rem;
}
.event-item.event-highlight {
  border-left-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.event-date { font-weight: 700; color: var(--green-deep); }
.event-time { color: var(--text-light); font-size: 0.78rem; }
.event-desc { color: var(--text); }
@media (max-width: 600px) {
  .event-item { grid-template-columns: 1fr; gap: 0.15rem; }
  .event-time { font-size: 0.75rem; opacity: 0.75; }
}

.events-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.8rem;
}
.events-note-link {
  color: var(--green-mid);
}

/* ── VORSTAND ────────────────────────────────────── */
.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.vorstand-card {
  background: #fff;
  border: 1px solid rgba(26,58,42,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 1rem 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vorstand-card:hover {
  box-shadow: 0 4px 16px rgba(26,58,42,0.1);
  transform: translateY(-2px);
}
.vorstand-wide { grid-column: span 2; }
.vorstand-role {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 0.3rem;
}
.vorstand-name {
  font-size: 0.95rem; font-weight: 600;
  color: var(--green-deep); line-height: 1.4;
}
@media (max-width: 768px) {
  .vorstand-wide { grid-column: span 1; }
}

/* ── JUGENDFISCHEN ──────────────────────────────── */
.termine-list { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.termin-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 1.2rem;
  background: #fff; border-radius: 4px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(26,58,42,0.07);
}
.termin-date {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--green-deep); min-width: 65px;
  text-align: center; line-height: 1.2;
}
.termin-info { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }
.termin-info strong { color: var(--text); }
.anmeldung-box {
  background: var(--green-deep); color: var(--cream);
  padding: 1.8rem; border-radius: 4px; margin-top: 1.5rem;
}
.anmeldung-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 0.6rem;
}
.anmeldung-box p { font-size: 0.92rem; line-height: 1.6; color: rgba(245,240,232,0.85); }

/* ── PLATZ-BADGE ───────────────────────────────────*/
.termin-plaetze { font-size: 0.78rem; margin-top: 0.5rem; font-weight: 600; letter-spacing: 0.04em; }
.termin-plaetze.frei    { color: var(--green-light); }
.termin-plaetze.knapp   { color: #e8a838; }
.termin-plaetze.ausgebucht { color: #e07070; }
.termin-plaetze.vergangen { background: rgba(255,255,255,0.08); color: #888; }
.termin-item.vergangen { opacity: 0.5; filter: grayscale(1); }

/* ── JUGENDFISCHEN: HEADING ─────────────────────── */
.termine-heading {
  font-family: 'Playfair Display', serif;
  color: var(--green-deep);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

/* ── ANMELDEFORMULAR ───────────────────────────── */
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 1.4rem 0 0.8rem; padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  grid-column: 1 / -1;
}
.form-section-title:first-child { margin-top: 0; }
.anmelde-form-section {
  background: var(--green-deep); color: var(--cream);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px; padding: 2rem; margin-top: 1.5rem;
}
.anmelde-form-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 0.3rem;
}
.anmelde-form-section .form-subtitle {
  font-size: 0.82rem; color: rgba(245,240,232,0.55); margin-bottom: 1.6rem;
}
.form-subtitle--top { margin-top: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 0.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: rgba(245,240,232,0.65); }
.form-group label .req { color: var(--gold); margin-left: 2px; }
.form-control { background: rgba(255,255,255,0.07); border: 1px solid rgba(201,168,76,0.2); border-radius: 3px; padding: 0.65rem 0.9rem; color: var(--cream); font-size: 0.9rem; font-family: 'Source Sans 3', sans-serif; transition: border-color 0.2s, background 0.2s; outline: none; width: 100%; box-sizing: border-box; }
.form-control::placeholder { color: rgba(245,240,232,0.28); }
.form-control:focus { border-color: var(--gold); background: rgba(255,255,255,0.11); }
.form-control option { background: #1a3a2a; color: var(--cream); }
.radio-group { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.2rem; }
.radio-label { display: flex; align-items: center; gap: 0.45rem; cursor: pointer; font-size: 0.88rem; color: rgba(245,240,232,0.85); }
.radio-label input[type=radio] { accent-color: var(--gold); width: 15px; height: 15px; cursor: pointer; }
.anmelde-submit { width: 100%; padding: 0.9rem; background: var(--gold); color: var(--green-deep); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.07em; text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 1.4rem; font-family: 'Source Sans 3', sans-serif; }
.anmelde-submit:hover { background: #dbb85a; transform: translateY(-2px); }
.anmelde-toggle { display: flex; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; width: 100%; background: none; border: none; padding: 0; text-align: left; font: inherit; color: inherit; }
.anmelde-toggle h4 { margin: 0; }
.anmelde-toggle-icon { font-size: 1.1rem; color: var(--gold); transition: transform 0.3s; }
.anmelde-toggle-icon.open { transform: rotate(180deg); }
.anmelde-form-body { overflow: hidden; transition: max-height 0.5s ease, opacity 0.3s ease; max-height: 0; opacity: 0; }
.anmelde-form-body.open { max-height: 9999px; opacity: 1; }
.form-msg { display: none; padding: 0.9rem; border-radius: 3px; font-size: 0.88rem; margin-top: 0.9rem; text-align: center; line-height: 1.5; }
.form-msg.success { background: rgba(82,183,136,0.12); border: 1px solid rgba(82,183,136,0.35); color: #7de0b8; display: block; }
.form-msg.error   { background: rgba(220,80,80,0.12);  border: 1px solid rgba(220,80,80,0.35);  color: #f08080; display: block; }
.form-note { font-size: 0.75rem; color: rgba(245,240,232,0.4); text-align: center; margin-top: 0.9rem; line-height: 1.6; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } .anmelde-form-section { padding: 1.4rem; } }
.kind-section { border: 1px solid rgba(201,168,76,0.2); border-radius: 3px; padding: 1rem; margin-top: 0.8rem; position: relative; }
.kind-section-title { font-family: 'Playfair Display', serif; font-size: 0.88rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; display: flex; align-items: center; justify-content: space-between; }
.kind-remove-btn { background: none; border: 1px solid rgba(220,80,80,0.4); color: #f08080; font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 3px; cursor: pointer; font-family: 'Source Sans 3', sans-serif; transition: background 0.2s; }
.kind-remove-btn:hover { background: rgba(220,80,80,0.15); }
.kind-add-btn { width: 100%; padding: 0.7rem; background: transparent; border: 1px dashed rgba(201,168,76,0.4); color: var(--gold); font-size: 0.85rem; border-radius: 3px; cursor: pointer; font-family: 'Source Sans 3', sans-serif; margin-top: 0.8rem; transition: background 0.2s, border-color 0.2s; letter-spacing: 0.05em; }
.kind-add-btn:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.7); }
.kind-add-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.datum-group { display: grid; grid-template-columns: 2fr 3fr 2fr; gap: 0.4rem; }
.datum-group .form-control { padding: 0.65rem 0.4rem; }
.form-grid--no-mb { margin-bottom: 0; }

/* ── TEXTAREA RESIZE ────────────────────────────── */
.textarea-resize-vertical { resize: vertical; }

/* ── JUGENDFISCHEN: KOSTENLOS HIGHLIGHT ─────────── */
.kostenlos-highlight { color: var(--green-mid); font-weight: bold; }

/* ── JUGENDFISCHEN: WHAT-TO-EXPECT HEADING ──────── */
.erwartungen-heading {
  font-family: 'Playfair Display', serif;
  color: var(--green-deep);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

/* ── JUGENDFISCHEN RÜCKBLICK ────────────────────── */
.section-rueckblick { background: #fff; }

.rueckblick-layout {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 3rem; align-items: start;
}
.rueckblick-text p {
  font-size: 1rem; line-height: 1.8; color: var(--text-light);
}
.rueckblick-text p + p { margin-top: 1rem; }
@media (max-width: 768px) {
  .rueckblick-layout { grid-template-columns: 1fr; }
}

.rueckblick-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.rueckblick-photo {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(26,58,42,0.12);
}
.rueckblick-caption {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  text-align: center;
}

/* ── ZUFAHRT ────────────────────────────────────── */
.section-zufahrt { background: #fff; }

#zufahrt .two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.map-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2d6a4f 0%, #1a3a2a 100%);
  border-radius: 4px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--cream); gap: 0.8rem;
  border: 1px solid rgba(201,168,76,0.2);
  font-size: 0.9rem; text-align: center; padding: 2rem;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder p { color: rgba(245,240,232,0.6); font-size: 0.82rem; }
.directions-list { list-style: none; }
.directions-list li {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.95rem; line-height: 1.6; color: var(--text-light);
}
.directions-list li:last-child { border-bottom: none; }
.dir-icon { font-size: 1.3rem; flex-shrink: 0; width: 2.2rem; text-align: center; }
.addr-block {
  margin-top: 2rem; padding: 1.5rem;
  background: var(--green-deep); border-radius: 4px; color: var(--cream);
}
.addr-block--no-mt { margin-top: 0; }
.addr-block h4 {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.addr-block p { font-size: 0.95rem; line-height: 1.6; }
.addr-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.7);
}

/* ── GALERIE ─────────────────────────────────────── */
.section-galerie { background: #fff; }

.album-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.album-card {
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,58,42,0.1);
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s;
  background: var(--green-deep);
}
.album-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(26,58,42,0.2); }
.album-thumb {
  height: 200px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #2d6a4f, #1a3a2a);
  display: flex; align-items: center; justify-content: center;
}
.album-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.album-card:hover .album-thumb img { transform: scale(1.05); }
.album-thumb-placeholder { font-size: 3.5rem; display: none; }
.album-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,0.7) 0%, transparent 60%);
}
.album-count {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: rgba(201,168,76,0.9); color: var(--green-deep);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem; border-radius: 2px;
}
.album-count--new { background: rgba(82,183,136,0.9); }
.album-info { padding: 1.2rem 1.4rem 1.5rem; }
.album-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--gold); margin-bottom: 0.4rem;
}
.album-info p { font-size: 0.85rem; color: rgba(245,240,232,0.65); line-height: 1.5; }
.album-btn {
  display: inline-block; margin-top: 0.8rem;
  padding: 0.5rem 1.2rem; background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4); color: var(--gold);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 2px;
  transition: background 0.2s;
}
.album-card:hover .album-btn { background: rgba(201,168,76,0.3); }

/* album thumb image positions */
.album-thumb-pos-30 { object-position: center 30%; }
.album-thumb-pos-20 { object-position: center 20%; }

/* onerror fallback */
.album-thumb img.img-hidden { display: none; }
.album-thumb-placeholder.placeholder-visible { display: flex; }

/* Lightbox */
.lightbox-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,20,15,0.96); z-index: 2000;
  flex-direction: column; align-items: center; justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-header {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}
.lightbox-title { font-family: 'Playfair Display',serif; color: var(--cream); font-size: 1rem; }
.lightbox-counter { color: rgba(245,240,232,0.5); font-size: 0.85rem; }
.lightbox-close {
  background: none; border: none; color: var(--cream);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
  padding: 0.2rem 0.5rem; transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-img-wrap {
  max-width: 90vw; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 1.5rem;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(201,168,76,0.35); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
@media (max-width: 600px) {
  .lightbox-nav { display: none; }
}
.lightbox-thumbs {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 6px; padding: 1rem 1.5rem;
  overflow-x: auto; justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.lightbox-thumbs img {
  height: 52px; width: 52px; object-fit: cover;
  border-radius: 2px; cursor: pointer; opacity: 0.55;
  transition: opacity 0.2s; border: 2px solid transparent; flex-shrink: 0;
}
.lightbox-thumbs img.active { opacity: 1; border-color: var(--gold); }

/* ── BERICHTE ───────────────────────────────────── */
.posts-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.post-card {
  background: var(--cream); border-radius: 4px;
  overflow: hidden; border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,58,42,0.12); }
.post-card--clickable { cursor: pointer; }
.post-img {
  height: 180px;
  background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.post-body { padding: 1.4rem; }
.post-date {
  font-size: 0.75rem; color: var(--green-light);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.4rem; font-weight: 600;
}
.post-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--green-deep);
  margin-bottom: 0.5rem; line-height: 1.3;
}
.post-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.post-link { color: var(--green-mid); font-weight: 600; }

/* ── KONTAKT ────────────────────────────────────── */
#kontakt {
  background: linear-gradient(135deg, var(--green-deep) 0%, #2d6a4f 100%) !important;
  color: var(--cream);
}
#kontakt .section-title { color: var(--cream); }
#kontakt .section-label { color: var(--gold); }
#kontakt .section-intro { color: rgba(245,240,232,0.7); }
.kontakt-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 1rem;
}
.kontakt-item {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.5rem; background: rgba(255,255,255,0.06);
  border-radius: 4px; border: 1px solid rgba(201,168,76,0.15);
}
.kontakt-item .k-icon { font-size: 1.8rem; }
.kontakt-item h4 {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold); font-weight: 700;
}
.kontakt-item p { font-size: 0.93rem; color: rgba(245,240,232,0.8); line-height: 1.6; }
.kontakt-item a { color: var(--green-light); }
.kontakt-item a:hover { color: var(--gold); }

/* ── GEBÜHREN ────────────────────────────────────── */
.gebuehren-list { display: flex; flex-direction: column; gap: 0.6rem; }
.gebuehr-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 1rem; background: var(--cream);
  border-radius: 3px; border-left: 3px solid rgba(82,183,136,0.3);
}
.gebuehr-item.gebuehr-highlight {
  border-left-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.gebuehr-label { font-size: 0.92rem; color: var(--text); }
.gebuehr-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--green-deep);
}

.gebuehren-heading {
  font-family: 'Playfair Display', serif;
  color: var(--green-deep);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.gebuehren-wrap { margin-top: 2rem; }

/* ── IMPRESSUM ───────────────────────────────────── */
.section-impressum { background: #fff; }
.impressum-note {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  margin-top: 1rem;
}

/* ── LINKS ───────────────────────────────────────── */
.section-links { background: var(--green-deep); }

.links-grid { display: flex; flex-direction: row; gap: 1rem; flex-wrap: wrap; }
.link-card {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; text-decoration: none;
  flex: 1; min-width: 220px;
  transition: background 0.2s, transform 0.2s;
}
.link-card:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.link-icon { font-size: 3.0rem; flex-shrink: 0; }
.link-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--gold); margin-bottom: 0.2rem;
}
.link-card p { font-size: 0.85rem; color: rgba(245,240,232,0.65); }
.link-arrow { margin-left: auto; color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: #0f2118; color: rgba(245,240,232,0.45);
  text-align: center; padding: 2rem 6vw;
  font-size: 0.82rem; line-height: 1.8;
}
footer a { color: var(--gold); }
.footer-meta { margin-top: 0.4rem; }

/* ── WETTER ──────────────────────────────────────── */
.section-wetter { background: var(--green-deep); color: var(--cream); }
.section-wetter .section-title { color: var(--cream); }
.section-wetter .section-label { color: var(--gold); }

.wetter-container { margin-top: 2rem; }

.wetter-loading {
  text-align: center;
  opacity: 0.6;
  padding: 2rem 0;
}



.wetter-current-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.wetter-icon-gross { font-size: 4rem; line-height: 1; }

.wetter-temp-gross {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  line-height: 1;
}

.wetter-beschreibung {
  font-size: 1.1rem;
  margin-top: 0.3rem;
  opacity: 0.9;
}

.wetter-details {
  font-size: 0.88rem;
  margin-top: 0.4rem;
  opacity: 0.65;
}

.wetter-vorschau {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
}

.wetter-karte {
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.2);
}

.wetter-karte-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.wetter-karte-icon { font-size: 2rem; margin: 0.4rem 0; }

.wetter-karte-max {
  font-size: 0.95rem;
  font-weight: 700;
}

.wetter-karte-min {
  font-size: 0.8rem;
  opacity: 0.55;
}

.wetter-karte-regen {
  font-size: 0.72rem;
  opacity: 0.6;
  margin-top: 0.4rem;
}

.wetter-karte-wind {
  font-size: 0.72rem;
  opacity: 0.6;
  margin-top: 0.2rem;
}

.wetter-karte-richtung {
  font-size: 0.72rem;
  opacity: 0.6;
  margin-top: 0.2rem;
}

.wetter-fehler {
  opacity: 0.6;
  text-align: center;
  padding: 2rem 0;
}

.wetter-quelle {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  opacity: 0.4;
  text-align: right;
}

.wetter-quelle a {
  color: inherit;
  text-decoration: underline;
}

/* ── TERMINE: error state ────────────────────────── */
.termine-error {
  color: rgba(245,240,232,0.5);
  font-size: 0.9rem;
}

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  section { padding: 4rem 5vw; }
  #home { padding: calc(var(--nav-h) + 2rem) 5vw 5rem; }
  #verein .two-col, #zufahrt .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  #home, .pond-divider { background-attachment: scroll; }
  .pond-divider { height: 180px; }
}
@media (max-width: 480px) {
  .rules-grid, .kontakt-grid { grid-template-columns: 1fr; }
}

/* ── DATENSCHUTZ ──────────────────────────── */
.section-datenschutz { background: #fff; }
.datenschutz-content {
  max-width: 780px;
}
.datenschutz-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--green-deep);
  margin: 2rem 0 0.5rem;
}
.datenschutz-content h3:first-child { margin-top: 0; }
.datenschutz-content p {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.75; margin-bottom: 0.4rem;
}
.datenschutz-content a { color: var(--green-mid); text-decoration: underline; }
.datenschutz-stand {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.6;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 1rem;
}

/* ── IMPRESSUM: Haftung & Hinweis ────────────── */
.impressum-hinweis {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  margin-top: 0.8rem;
  line-height: 1.6;
}
.impressum-haftung {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* ── FORMULAR: DSGVO-Consent Checkbox ───────── */
.dsgvo-consent {
  margin-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 1rem;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.55;
}
.checkbox-label input[type=checkbox] {
  accent-color: var(--gold);
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-dsgvo-note {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.38);
  line-height: 1.6;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.form-dsgvo-link {
  color: var(--green-light);
  text-decoration: underline;
}

/* Honeypot – für echte User unsichtbar, Bots füllen es aus */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
