:root {
  --green: #354742;
  --sand: #f6f3ee;
  --accent-green: #4f6f52;
  --accent-yellow: #e8b92e;
  --bg-light: #f4f6f4;
  --bg-soft: #e9eee9;
  --overlay-green: #2f3e3692;
  --glass-bg: rgba(255, 255, 255, 0.44);
  --glass-blur: 10px;

  --text-main: #333;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  
  --title-xl: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.2rem;

  --text-md: 1rem;
  --text-sm: 0.9rem;
  --text-xs: 0.75rem;

}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Andika", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: var(--sand);
  color: #222;
}

a {
  color: #222;
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
/* a:focus, button:focus {
  outline: 1px solid #f2c94c; 
  outline-offset: 4px;
} */

section:target h2 {
  animation: focusIn 0.6s ease;
}

.section-subtitle {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--text-xs);
  color: var(--accent-yellow);
}

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


.top-bar {
  display: none;
  background: var(--green);
  color: #f7f6f2;
  padding: 6px 20px;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 1001;
  top: 0;
  font-size: var(--text-sm);
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #f7f6f2;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s, backdrop-filter 0.3s;
}

@media (min-width: 768px) {
  .top-bar { display: flex; }
    .navbar { top: 22px; }
}

.navbar.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
}

.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-link { padding-top: 6px;}
.logo-area img { height: 60px; border-radius: 50%; }
.logo-text strong { display: block; font-size: 1.3rem; }
.logo-text small { font-size: 0.7rem; }

nav { display: flex; gap: 20px; align-items: center; }
nav a,
.dropbtn {
  position: relative;
  padding-bottom: 6px;
}

nav a.active,
.dropbtn.active {
  color: var(--green);
  font-weight: 600;
}

nav a.active::after,
.dropbtn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-yellow);
  border-radius: 2px;
}


.dropdown { position: relative; }
.dropbtn { background: none; border: none; font-size: var(--text-md); }
.dropdown-content {
  display: none;
  position: absolute;
  background: #f7f6f2;
  top: 120%;
  left: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 500;
  transition: all 0.3s ease;
}
.dropdown-content a { display: block; padding: 10px 15px; white-space: nowrap; }
.dropdown.open .dropdown-content { display: block; }

.burger { display: none; font-size: var(--title-lg); background: none; border: none;}

@media (max-width: 780px) {
  nav { position: absolute; top: 100%; left: 0; right: 0; background: rgb(247, 246, 242);; flex-direction: column; display: none; padding: 20px; }
  nav.active { display: flex; }
  .burger { display: block; }
  .dropdown-content { position: static; box-shadow: none; background: transparent;}
}


/* =====================
   HERO SECTION
===================== */
.hero-bg {
  position: relative;
  background-image: url(heroBG.jfif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-green);
}

.hero-inner {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.hero-title {
  font-family: "Racing Sans One", sans-serif;
  font-weight: 100;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.3;
}

.hero-text {
  margin-top: 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-btn {
  display: inline-block;
  margin-top: 2.5rem;
  border: 1px solid var(--accent-yellow);
  padding: 0.8rem 2.2rem;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: var(--accent-yellow);
  color: #000;
}


/* =====================
   TRANSITION TEXT
===================== */
.transition-text {
  background: var(--bg-soft);
  padding: 3rem 2rem;
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
}


/* =====================
   CONTACT LAYOUT
===================== */
.contact-section-soft {
  background: var(--bg-light);
  padding: 6rem 2rem;
  color: var(--text-dark);
}

.contact-form-wrapper {
  background: white;
  padding: 3.5rem;
  border-left: 4px solid var(--accent-green);
}

.contact-title {
  font-size: var(--text-md);
  margin-bottom: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-green);
}

.contact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================
   FORM
===================== */
.contact-form span {
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  border-bottom: 1px solid #ccc;
  color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--accent-green);
}

.contact-form label {
  display: block;
  margin-bottom: 1.5rem;
}

.contact-form span {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--accent-green);
  padding: 0.6rem 0;
  color: var(--text-main);
  font-size: var(--text-md);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-green);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-btn {
  margin-top: 2rem;
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--accent-yellow);
  padding: 0.8rem 2.5rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--accent-yellow);
  color: #000;
}


/* Success Message */
.success-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(40px);
  opacity: 0;

  background: #e7eeee;

  padding: 2.2rem 2rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

  width: 320px;
  z-index: 10;
  text-align: center;

  /* transition for fade & rise */
  transition: transform 0.6s ease, opacity 0.6s ease;

  pointer-events: none;
  position: relative;
}

/* show state */
.success-message.show {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* subtle icon animation */
.success-message .icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: var(--accent-green);
  opacity: 0.95;
  animation: floatIcon 2s ease-in-out infinite alternate;
}

/* subtle float animation */
@keyframes floatIcon {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.success-message p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--green);
  margin: 0;
  font-weight: 600;
}

/* subtle bottom accent line */
.success-message::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: var(--accent-yellow);
  border-radius: 2px;
  opacity: 0.8;
}


@media (max-width: 480px) {
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 0.95rem;
    padding: 0.8rem;
  }

  .success-message {
    width: 100%;
    padding: 1.8rem 1rem;
  }
}


/* =====================
   VISUAL SIDE
===================== */
.contact-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.4);
}



/* =========================
   Footer Base
========================= */
.site-footer {
  position: relative;
  background-image: url("footerBG.png"); /* your image */
  background-size: cover;
  background-position: center;
  color: #f4f4f4;
  font-family: inherit;
  overflow: hidden;
}

/* Dark elegant overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(77 76 66 / 55%),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

/* Content wrapper */
.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 20px;
}

/* =========================
   Main Footer Content
========================= */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* =========================
   Elegant footer motion
========================= */
.footer-block {
  opacity: 0;
  transform: translateY(20px);
  animation: footerFadeUp 0.9s ease forwards;
}

.footer-block:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-block:nth-child(2) {
  animation-delay: 0.25s;
}
.footer-block:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes footerFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-block h4 {
  font-size: var(--title-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: #e6e6e6;
}

.footer-block p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #dcdcdc;
}

.footer-divider {
  margin: 30px 0 10px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
}

.footer-bottom a,
.footer-bottom p {
  color: #eaeaea;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 0.7;
}

/* Instagram icon */
.footer-left i {
  font-size: 1.3rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.footer-left a:hover i {
  transform: translateY(-3px) scale(1.05);
  opacity: 0.85;
}


@media (max-width: 800px) {
  .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .footer-block {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}




/* =========================
 MANIFESTO SECTION
========================= */
.manifesto {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url("manifestoBG.jpg") center / cover no-repeat,
    #354742;
  color: white;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.manifesto-overlay {
  position: absolute;
  inset: 0;
  background: #010f0bc7;
  backdrop-filter: blur(1px);
  z-index: 1;
}
/* .manifesto-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(200, 164, 74, 0.1),
    transparent 60%
  );
  pointer-events: none;
} */

.manifesto-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

@media (max-width: 768px) {
  .manifesto-text {
    text-align: center;
  }
}

.manifesto-text p {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 300;
  opacity: 0;
  transform: translateY(24px);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.manifesto-text p.visible {
  animation: fadeInUp 1s forwards;
}
.manifesto-text p.visible {
  animation: fadeInUp 0.9s ease forwards;
}

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


/* =========================
 AVS – Narrative Flow Sections
========================= */

.avs-flow {
  max-width: 900px;
  margin: 120px auto;
  padding: 0 20px;
}

/* -------- Vision -------- */
.avs-vision {
  border-left: 4px solid var(--accent-green);
  padding-left: 30px;
  margin-bottom: 100px;
}

.avs-vision h2 {
  font-size: var(--title-xl);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.avs-vision p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.avs-vision p.highlight {
  font-weight: 600;
  color: #4f6f52;
}

/* -------- Zweck -------- */
.avs-zweck {
  background: var(--green);
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 14px;
  margin-bottom: 100px;
}

.avs-zweck h2 {
  font-size: var(--title-xl);
  margin-bottom: 25px;
  text-transform: uppercase;
}

.avs-zweck ul {
  list-style: none;
  padding: 0;
}

.avs-zweck li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.avs-zweck li::before {
  content: "—";
  position: absolute;
  left: 0;
  opacity: 0.7;
}

/* -------- Was wir machen -------- */
.avs-action h2 {
  font-size: var(--title-xl);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.avs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.avs-grid div {
  padding: 25px;
  background: #f0f4f1;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 1px solid #d4e0d8;
}

.avs-grid div:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


@media (max-width: 768px) {
  .avs-vision {
    padding-left: 20px;
  }

  .avs-zweck {
    padding: 40px 25px;
  }
}


/* =========================
 VORSTAND SECTION
========================= */
.vorstand-section {
  padding: 6rem 2rem;
  background: linear-gradient(145deg, #fefcfb, #f7f7f3);
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* subtle background pattern animated */
.vorstand-section::before {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background-image: radial-gradient(circle, rgba(79,111,82,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  animation: movePattern 60s linear infinite;
}

@keyframes movePattern {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

.vorstand-section h2 {
  font-family: 'Racing Sans One', serif;
  font-weight: 100;
  font-size: 2.5rem;
  color: #4f6f52;
  margin-bottom: 1rem;
}

.vorstand-intro {
  font-size: var(--title-sm);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.vorstand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.vorstand-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  width: 290px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.vorstand-card::before {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background-image: radial-gradient(circle, rgba(79,111,82,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
  transition: transform 0.6s ease;
}

.vorstand-card:hover::before {
  transform: translateY(-10px) translateX(10px);
}

.vorstand-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.vorstand-card h3 {
  margin: 10px 0 5px;
  font-size: var(--title-sm);
  color: #4f6f52;
  position: relative;
  z-index: 1;
}

.vorstand-card p {
  font-size: var(--text-md);
  color: var(--text-muted);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.vorstand-card a {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.vorstand-card i {
  font-size: 1.3rem;
  color: #f2c94c;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.vorstand-card:hover i {
  transform: rotate(-5deg) scale(1.3) translateY(-3px);
  color: #e0b839;
}

.vorstand-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}


@media(max-width:768px) {
  .vorstand-grid {
    flex-direction: column;
    align-items: center;
  }
}


#vision,
#zweck,
#was-wir-machen,
#vorstand {
  scroll-margin-top: 120px;
}

/* WHY */
.why {
  position: relative;
  min-height: 33vh;
  background: url("manifestoBG.jpg") center / cover no-repeat;
  color: white;
  padding: 6rem 2rem;
  overflow: hidden;
}
.why-overlay {
  position: absolute;
  inset: 0; /* top:0 right:0 bottom:0 left:0 */
  background: #010f0bc7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
/* .why-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(200, 164, 74, 0.08),
    transparent 60%
  );
  pointer-events: none;
} */

.why-overlay h2 {
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.why-overlay p {
  max-width: 800px;
  font-size: var(--title-sm);
  line-height: 1.6;
  opacity: 0.9;
}



/* =====================
   FADE ON SCROLL
===================== */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
 PROGRAMM CARD GRID
========================= */

.programm {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  color: var(--text-main);
  position: relative;
}

/* Subtle pattern overlay */
.programm::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  animation: movePattern 120s linear infinite;
}

/* Intro */
.programm-intro {
  position: relative;
  z-index: 1;
  text-align: center;
}
.programm-intro h1 {
  font-family: "Racing Sans One", sans-serif;
  font-weight: 100;
  font-size: 3rem;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}
.programm-intro .intro-text {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 4rem auto;
  line-height: 1.7;
}

/* Stations */
.stations {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.station {
  display: flex;
  gap: 2rem;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 2rem;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.27,1.55);
}

.station-icon {
  width: 80px; height: 80px;
  background: #fcf7dc;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--accent-green);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.station:hover .station-icon {
  transform: scale(1.2) rotate(-5deg);
  background: #fff4d1;
}

.station-content h2 {
  margin: 0 0 0.5rem 0;
  font-family: "Andika", sans-serif;
  font-size: 1.7rem;
  color: var(--accent-green);
}
.station-content p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Ziel section */
.ziel-section {
  margin-top: 5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ziel-section h2 {
  font-size: var(--title-xl);
  color: var(--accent-green);
  margin-bottom: 3rem;
}
.ziel-wave {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.ziel-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  width: 220px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ziel-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.216);
}
.ziel-card:nth-child(2) { top: 15px; }
.ziel-card i {
  color: var(--accent-yellow);
  font-size: var(--title-xl);
  margin-bottom: 15px;
}
.ziel-card p {
  font-size: var(--title-sm);
  font-weight: 600;
  color: var(--text-muted);
}


@keyframes movePattern {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

@media(max-width:768px) {
  .station { flex-direction: column; text-align: center; }
  .station-icon { margin-bottom: 15px; }
  .ziel-wave { flex-direction: column; align-items: center; }
  .ziel-card:nth-child(2) { top: 0; }
}




/* =========================
 MITGLIEDSCHAFT CARD DESIGN
========================= */

.mitglied-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  background: #f5f1e8;
}

.mitglied-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  padding: 60px 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mitglied-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.mitglied-card h1 {
  font-family: 'Racing Sans One', sans-serif;
  font-weight: 100;
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: var(--accent-green);
}

.mitglied-card p {
  font-size: var(--title-sm);
  line-height: 1.8;
  margin-bottom: 20px;
  color: #3a3a3a;
}

.mitglied-card strong {
  color: var(--accent-yellow);
}

.cta-button {
  display: inline-block;
  background: var(--accent-green);
  color: #fff;
  font-size: var(--title-sm);
  font-weight: bold;
  padding: 18px 40px;
  border-radius: 12px;
  transition: all 0.35s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  background: #3e5e4f;
}

/* Fade-in effect */
.mitglied-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.mitglied-card.show {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .mitglied-card {
    padding: 50px 25px;
  }

  .cta-button {
    width: 100%;
    padding: 16px 0;
  }
}



/* =========================
 CALL TO ACTION SECTION
========================= */
.cta-section {
  background: var(--green);
  color: white;
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
}
.cta-title {
  font-size: var(--title-xl);
  margin-bottom: 15px;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.cta-btn {
  margin-top: 2rem;
  background: transparent;
  color: white;
  border: 1px solid var(--accent-yellow);
  padding: 0.8rem 2.5rem;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--accent-yellow);
  color: #000;
}


/* Datenschutz Pages */
.legal-page {
  max-width: 900px;
  margin: 100px auto 80px;
  padding: 0 20px;
  font-family: 'Lato', sans-serif;
  color: #2f2f2f;
  line-height: 1.7;
}

.legal-page h1 {
  font-size: 2.2rem;
  color: #4f6f52;
  margin-bottom: 2.5rem;
  text-align: center;
}

.legal-page h2 {
  font-size: 1.3rem;
  color: #4f6f52;
  margin: 2rem 0 0.5rem;
}

.legal-page p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.2rem;
  padding: 0;
}

.legal-page hr {
  border: none;
  border-top: 1px solid #d8d8d8;
  margin: 2.5rem 0 1.5rem;
}



