@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --rot:       #c8312a;
  --gold:      #c9a84c;
  --hellgold:  #f0d878;
  --tiefgold:  #8a6820;
  --bg:        #1a4a1a;
  --bg2:       #1e5828;
  --bg3:       #2a6a2e;
  --dunkel:    #143a14;
  --glow-gold: rgba(201,168,76,.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--bg); color: rgba(255,255,255,.88); overflow-x: hidden; }

/* ── SNOW ── */
.snowflakes { position: fixed; top: 0; left: 0; width: 100%; pointer-events: none; z-index: 9999; }
.snowflake  { position: absolute; top: -20px; color: rgba(255,255,255,.65); font-size: 1.2em; animation: fall linear infinite; }
@keyframes fall { to { transform: translateY(105vh) rotate(360deg); opacity: 0; } }

/* ── SIDE DECO ── */
.xmas-side { position: fixed; top: 0; height: 100vh; width: 170px; pointer-events: none; z-index: 88; overflow: hidden; }
.xmas-side-left  { left: 0; }
.xmas-side-right { right: 0; transform: scaleX(-1); }
@media (max-width: 1300px) { .xmas-side { width: 120px; } }
@media (max-width: 1000px) { .xmas-side { width: 80px; } }
@media (max-width:  750px) { .xmas-side { display: none; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(20,58,20,.97); backdrop-filter: blur(10px);
  padding: 14px 40px; display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 30px rgba(0,0,0,.6), 0 1px 0 rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.nav-logo { font-family: 'Playfair Display', serif; color: var(--hellgold); font-size: 1.3rem; letter-spacing: 1px; text-decoration: none; text-shadow: 0 0 20px rgba(201,168,76,.5); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .9rem; letter-spacing: .5px; transition: color .2s, text-shadow .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--hellgold); text-shadow: 0 0 12px rgba(201,168,76,.6); }

/* ── BUTTONS ── */
.btn { padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: all .3s; border: none; letter-spacing: .5px; display: inline-block; }
a.btn-primary, .btn-primary { background: linear-gradient(135deg, var(--hellgold), #e8c040); color: #000 !important; font-weight: 900; box-shadow: 0 6px 30px rgba(201,168,76,.5); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,.65); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── LAYOUT ── */
section { padding: 90px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--hellgold); margin-bottom: 20px; line-height: 1.25; text-shadow: 0 0 40px var(--glow-gold); }
.lead { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.85; max-width: 720px; font-weight: 300; }
.section-divider { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 20px 0 36px; }

/* ── BADGE ── */
.hero-badge {
  background: linear-gradient(135deg, var(--gold), #e8c060);
  color: #1a0a00; font-size: .8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 7px 22px; border-radius: 20px;
  margin-bottom: 28px; display: inline-block;
  box-shadow: 0 4px 20px rgba(201,168,76,.45);
}

/* ── ORNAMENT ── */
.ornament { display: inline-block; filter: drop-shadow(0 0 8px rgba(201,168,76,.8)); animation: glow-pulse 3s ease-in-out infinite alternate; }
@keyframes glow-pulse { from { filter: drop-shadow(0 0 4px rgba(201,168,76,.5)); } to { filter: drop-shadow(0 0 16px rgba(201,168,76,1)); } }

/* ──────────────────────────────────────────
   HOME – HERO
────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 100px 20px 60px;
  background: linear-gradient(160deg, #143a14 0%, #1a4a1a 40%, #1e5828 70%, #2a6a2e 100%);
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(255,150,60,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(50,120,20,.08) 0%, transparent 60%);
}
.stars { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
  position: relative; z-index: 1;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem); color: #fff; line-height: 1.25;
  margin-bottom: 22px; text-shadow: 2px 4px 20px rgba(0,0,0,.8);
}
.hero-text h1 span { color: var(--hellgold); text-shadow: 0 0 40px rgba(201,168,76,.7), 2px 4px 20px rgba(0,0,0,.8); }
.hero-text p { font-size: 1.05rem; color: rgba(255,255,255,.82); max-width: 520px; line-height: 1.85; margin-bottom: 40px; font-weight: 300; }

.hero-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.75), 0 0 60px rgba(201,168,76,.15), 0 0 0 1px rgba(201,168,76,.22);
}
.hero-img-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1; border-radius: 24px; pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(255,160,60,.15) 0%, transparent 55%),
    linear-gradient(0deg, rgba(0,0,0,.5) 0%, transparent 40%);
}
.hero-img-wrap img { width: 100%; display: block; max-height: 620px; object-fit: cover; transition: transform .6s ease; }
.hero-img-wrap:hover img { transform: scale(1.02); }
.hero-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 32px 24px 20px;
  font-family: 'Playfair Display', serif; font-style: italic;
  color: rgba(255,255,255,.85); font-size: .95rem; letter-spacing: .3px;
  background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, transparent 100%);
}

/* ── HOME MISSION STRIP ── */
#mission {
  background: linear-gradient(160deg, #1a4a1a 0%, #1e5828 50%, #1a4a1a 100%);
  text-align: center; padding: 70px 20px;
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
}
#mission blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  color: rgba(255,255,255,.9); max-width: 820px; margin: 0 auto 20px; line-height: 1.75;
}
#mission blockquote span { color: var(--hellgold); }
#mission cite { color: var(--gold); font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; font-style: normal; }

/* ── HOME NAV CARDS ── */
#nav-cards { background: linear-gradient(160deg, #174217 0%, #1c5020 50%, #174217 100%); }
.nav-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 50px; }
.nav-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.15);
  border-radius: 20px; padding: 36px 28px; text-decoration: none; color: inherit;
  transition: transform .3s, box-shadow .3s, border-color .3s, background .3s; display: block;
}
.nav-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.4); background: rgba(255,255,255,.07);
}
.nav-card-icon { font-size: 2.8rem; margin-bottom: 16px; }
.nav-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--hellgold); margin-bottom: 10px; }
.nav-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.nav-card-arrow { margin-top: 20px; color: var(--gold); font-size: 1.2rem; transition: transform .3s; display: inline-block; }
.nav-card:hover .nav-card-arrow { transform: translateX(6px); }

/* ──────────────────────────────────────────
   SUBPAGE – SMALL HERO
────────────────────────────────────────── */
.page-hero {
  min-height: 38vh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 130px 20px 60px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #143a14 0%, #1a4a1a 50%, #1e5828 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,168,76,.07) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); color: #fff;
  text-shadow: 2px 4px 20px rgba(0,0,0,.8); margin-bottom: 16px;
}
.page-hero h1 span { color: var(--hellgold); }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.7); max-width: 600px; line-height: 1.8; margin: 0 auto; font-weight: 300; }

/* ──────────────────────────────────────────
   AKTIONEN
────────────────────────────────────────── */
#aktionen-content { background: var(--bg); }
.aktionen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 50px; }
.aktion-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.5); transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(255,255,255,.06);
}
.aktion-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.6), 0 0 30px rgba(201,168,76,.1); }
.aktion-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.aktion-header { padding: 20px 28px 16px; display: flex; align-items: center; gap: 14px; }
.aktion-header.rot   { background: linear-gradient(135deg, #5a0c0c, #8a1515); }
.aktion-header.gold  { background: linear-gradient(135deg, #4a2e08, #7a5518); }
.aktion-header.gruen { background: linear-gradient(135deg, #1a4a1a, #2a6a2e); }
.aktion-icon { font-size: 2.2rem; }
.aktion-header h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.2rem; }
.aktion-body { padding: 22px 28px 28px; background: rgba(255,255,255,.04); }
.aktion-body p { color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 14px; font-size: .93rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { background: rgba(201,168,76,.1); color: var(--gold); border: 1px solid rgba(201,168,76,.25); font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: .5px; }
.section-cta { text-align: center; margin-top: 60px; }

/* ──────────────────────────────────────────
   VEREIN / EKK
────────────────────────────────────────── */
#ekk-content { background: linear-gradient(160deg, #174217 0%, #1c5020 50%, #174217 100%); }
.ekk-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) { .ekk-inner { grid-template-columns: 1fr; } }
.ekk-img-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 40px rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.15);
}
.ekk-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.ekk-facts { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.ekk-fact {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.04); border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0; padding: 14px 18px; transition: background .2s;
}
.ekk-fact:hover { background: rgba(201,168,76,.07); }
.ekk-fact-icon { font-size: 1.5rem; flex-shrink: 0; }
.ekk-fact-text strong { display: block; font-size: .9rem; color: var(--hellgold); margin-bottom: 3px; }
.ekk-fact-text span { font-size: .85rem; color: rgba(255,255,255,.6); }
#ekk-content a { color: var(--gold); }
#ekk-content p { color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 18px; }

/* ──────────────────────────────────────────
   TEAM
────────────────────────────────────────── */
#team-content { background: var(--bg); }
.team-group { margin: 0 0 50px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.6); border: 1px solid rgba(201,168,76,.12); }
.team-group img { width: 100%; height: 420px; object-fit: cover; object-position: center 30%; display: block; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.team-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.15);
  border-radius: 20px; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s; box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(201,168,76,.1); border-color: rgba(201,168,76,.35); }
.team-photo { width: 100%; height: 280px; object-fit: cover; object-position: top; display: block; }
.team-photo-placeholder {
  width: 100%; height: 280px;
  background: linear-gradient(135deg, rgba(26,74,8,.6), rgba(60,20,5,.4));
  display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 4rem;
}
.team-photo-placeholder span { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 10px; font-style: italic; }
.team-body { padding: 26px 28px; text-align: center; }
.team-body h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--hellgold); margin-bottom: 6px; }
.team-body .role { font-size: .82rem; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.team-body p { font-size: .93rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ──────────────────────────────────────────
   SPENDEN
────────────────────────────────────────── */
#spenden-content {
  background: linear-gradient(160deg, #1a4a1a 0%, #1e5828 40%, #1a4a1a 100%);
  text-align: center;
}
.spenden-ways { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 0 auto 40px; max-width: 800px; }
.spenden-way {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 14px 22px; font-size: .9rem; color: rgba(255,255,255,.82);
  transition: background .2s, border-color .2s;
}
.spenden-way:hover { background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.3); }
.spenden-way strong { display: block; font-size: 1.5rem; margin-bottom: 4px; }
.spenden-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.3);
  border-radius: 24px; padding: 50px 40px; max-width: 700px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.spenden-box h3 { font-family: 'Playfair Display', serif; color: var(--hellgold); font-size: 1.7rem; margin-bottom: 18px; }
.spenden-box p { color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 24px; }
.spenden-btn-wrap { margin: 32px 0; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
footer {
  background: var(--dunkel); color: rgba(255,255,255,.45); text-align: center;
  padding: 50px 20px; font-size: .88rem; line-height: 1.9;
  border-top: 1px solid rgba(201,168,76,.1);
}
footer a { color: var(--hellgold); text-decoration: none; }
footer a:hover { color: #fff; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--hellgold); margin-bottom: 14px; text-shadow: 0 0 25px rgba(201,168,76,.4); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin: 16px 0 20px; }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { max-width: 500px; margin: 0 auto; }
  .hero-text .btn-group { justify-content: center; }
  .hero-text { text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
}
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--hellgold); line-height: 1;
  padding: 4px 8px;
}
@media (max-width: 600px) {
  nav { padding: 12px 20px; position: relative; flex-wrap: wrap; }
  .nav-burger { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    width: 100%; margin-top: 10px;
    background: rgba(20,58,20,.98);
    border-top: 1px solid rgba(201,168,76,.15);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links a { display: block; padding: 14px 20px; font-size: 1rem; }
  .btn-group { flex-direction: column; align-items: center; }
  .spenden-box { padding: 32px 20px; }
  section { padding: 60px 20px; }
  .page-hero { padding: 110px 20px 50px; }
  #mitmachen .container > div { grid-template-columns: 1fr !important; }
}
