:root {
  --color-bg: #FFECDA;
  --color-green-dark: #284C43;
  --color-green-light: #63A193;
  --color-accent: #FE9128;
  --color-white: #ffffff;
  --color-text: #1e1e1e;

  /* Desktop only: Layout startet ab 1280 und wächst harmonisch */
  --container-min: 1280px;
  --container-max: 1680px;

  /* Seitenabstände skalieren leicht mit */
  --gutter: clamp(28px, 3.5vw, 72px);
  --section-pad-y: clamp(64px, 6vw, 96px);
}

/* =========================
   Reset / Basis
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.6;

  /* Prüfungsanforderung: keine mobile Version */
  min-width: var(--container-min);

  /* verhindert horizontale Scrollbars durch Transform/Offsets */
  overflow-x: clip;
}

/* =========================
   Typografie
========================= */
h1 {
  font-family: 'Anton';
  font-size: 96px;
  text-transform: uppercase;
  color: var(--color-green-dark);
}

h2 {
  font-family: 'Anton';
  font-size: 48px;
  text-transform: uppercase;
  color: var(--color-green-dark);
}

a { text-decoration: none; }
p { margin-bottom: 1rem; }

.fett { font-weight: 700; }
.halbfett { font-weight: 600; }
.besonders{
  color: var(--color-green-dark);
  font-weight: 700;
}

.schwach {
    color: rgb(0 0 0 / 76%);
    font-weight: 500;
}

/* =========================
   Layout / Container
========================= */
section.abstand {
  padding: var(--section-pad-y) 20px;
}

.section-inner {
  width: min(100% - (var(--gutter) * 2), var(--container-max));
  margin: 0 auto;
}

/* =========================
   Header & Navigation
========================= */
.site-header {
  background: var(--color-bg);
  padding: 16px 20px;
}

.header-inner {
  width: min(100% - (var(--gutter) * 2), var(--container-max));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 2.5vw, 48px);
}

.logo img {
  height: 140px;
  display: block;
}

.nav-list {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  list-style: none;
}

.nav-item a {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  white-space: nowrap;
  position: relative;
}

.nav-item a::after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  bottom: -4px;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.2s;
}

.nav-item:hover a::after,
.nav-item a:focus-visible::after {
  width: 100%;
}

.nav-item--member a {
  color: var(--color-green-dark);
}

.nav-item--member {
  display: none;
}

/* =========================
   Loginbereich
========================= */
.login-area {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.login-toggle,
.btn--logout {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .1s ease;
}

.login-toggle:active,
.btn--logout:active {
  transform: scale(.88);
}

.btn--logout {
  display: none;
}

.login-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--color-white);
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  min-width: 260px;
  z-index: 1000;
}

[hidden] { display: none !important; }

.login-panel label {
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.login-panel input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  margin-bottom: 10px;
}

.btn--login {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  margin-top: 60px;
}

.hero-text { min-width: 0; }

.hero-subline {
  font-size: 22px;
  font-weight: 700;
}

p.hero-copy {
  max-width: 680px;
  padding-right: 0;
}

.hero-cta {
  background: var(--color-green-light);
  color: var(--color-white);
  padding: 12px 32px;
  border-radius: 20px;
  display: inline-block;
}
.hero-cta:hover, .cta-button:hover, .download-btn:hover, .md-card__btn:hover {
   background: var(--color-accent);
}

.hero-visual {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.hero-image-wrap {
  width: clamp(520px, 42vw, 760px);
  height: auto;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   TAGUNG-SLIDER (2025)
========================= */
.tagung-slider-section {
  padding-top: clamp(48px, 4vw, 80px);
  padding-bottom: clamp(64px, 6vw, 96px);
}

.tagung-slider-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.tagung-slider {
  --slider-w: clamp(820px, 68vw, 1120px);
  position: relative;
  padding: 24px 0;
}

.slider-track {
  position: relative;
  width: var(--slider-w);
  aspect-ratio: 980 / 517;
  height: auto;
  margin: 0 auto;
}

.slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;

  transform: translateX(-50%) scale(0.8);
  opacity: 0;
  pointer-events: none;
  border-radius: 32px;
  overflow: hidden;

  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    filter 0.45s ease,
    box-shadow 0.45s ease;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide--center {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  filter: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  z-index: 3;
  pointer-events: auto;
}

.slide--left {
  transform: translateX(-70%) scale(0.8);
  opacity: 0.7;
  filter: brightness(0.8) saturate(0.95);
  z-index: 2;
}

.slide--right {
  transform: translateX(-30%) scale(0.8);
  opacity: 0.7;
  filter: brightness(0.8) saturate(0.95);
  z-index: 2;
}

.slide--hidden {
  opacity: 0;
  filter: brightness(0.5) saturate(0.7);
  z-index: 1;
}

.slide-caption {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.6rem 0.85rem;
  cursor: pointer;
  border-radius: 999px;
  font-size: 1.6rem;
  color: #ffffff;
  z-index: 4;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(0, 0, 0, 0.8);
}

.slider-arrow--prev {
  left: calc(50% - (var(--slider-w) / 2) - 56px);
}

.slider-arrow--next {
  right: calc(50% - (var(--slider-w) / 2) - 56px);
}

/* =========================
   CTA – kompakt & kontrolliert
========================= */
.cta-section {
  background: var(--color-green-light);
  padding: clamp(56px, 5vw, 86px) 0;
  overflow: hidden;
}

.cta-inner {
  width: min(100% - (var(--gutter) * 2), var(--container-max));
  margin: 0 auto;
  gap: 15em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-media,
.cta-content {
  flex: 0 0 auto;
}

.cta-media {
  margin-right: clamp(16px, 2vw, 32px);
}

.cta-media img {
  width: clamp(420px, 40vw, 720px);
  height: auto;
  display: block;
  object-fit: contain;
  transform: scaleX(-1);
}

.cta-content {
  text-align: left;
  max-width: 420px;
}

.cta-title {
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.25;
  font-weight: 800;
  color: #000;
  margin-bottom: 18px;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 20px;
  background: var(--color-green-dark);
  color: #ffffff;
  font-weight: 700;
}

/* =========================
   Member Bereiche
========================= */
[data-member-only="true"] { display: none; }

.is-logged-in .nav-item--member { display: flex; }
.is-logged-in [data-member-only="true"] { display: block; }
.is-logged-in .login-toggle { display: none; }
.is-logged-in .btn--logout { display: flex; }
.is-logged-in .anmeldung-info {
  display: none;
}

/* =========================
   Toast
========================= */
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--color-green-dark);
  color: var(--color-white);
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2000;
}

.toast--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast--error {
  background: #b3261e;
}

/* =========================
   TAGUNG – PROGRAMM (2026)
========================= */
li {margin-left: 2rem;}
.mb {
    display: block;
    margin-bottom: 1rem;
}
.tagung-programm {
  padding-top: 7rem;
}

.tagung-programm .tp-header {
  text-align: center;
  margin-bottom: 22px;
}

.tagung-programm .tp-subline {
  margin: 6px auto 0 auto;
  max-width: 820px;
}

.tagung-programm .tp-card {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.08);
  overflow: hidden;
}

.tagung-programm .tp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

/* LEFT */
.tagung-programm .tp-left {
  position: relative;
  padding: 28px 22px;
}

.tagung-programm .tp-scrollbox {
  height: 520px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;

  direction: rtl;
  padding-left: 18px;
  padding-right: 0;
}

/* Scroll-Hinweis */
.tagung-programm .tp-scroll-hint {
  position: absolute;
  left: 6px;
  top: 24px;
  bottom: 24px;
  width: 18px;
  pointer-events: none;
}

.tagung-programm .tp-hint-arrow {
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
  opacity: 0.9;
}

.tagung-programm .tp-hint-arrow--top {
  top: 0;
    left: 115%;
    transform: rotate(225deg);
}

.tagung-programm .tp-hint-arrow--bottom {
    bottom: 0%;
    left: 115%;
    transform: rotate(45deg);
}

.tagung-programm .tp-step {
  min-height: 520px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 18px 0 0;
  direction: ltr;
  cursor: pointer;
}

.tagung-programm .tp-step-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* RIGHT */
.tagung-programm .tp-right {
  position: relative;
  padding: 28px;
  border-left: 1px solid rgba(0,0,0,0.18);
  overflow: hidden;
}

.tagung-programm .tp-media-set {
  position: absolute;
  inset: 28px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.tagung-programm .tp-media-set.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tagung-programm .tp-media-set img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* Scrollbar */
.tagung-programm .tp-scrollbox::-webkit-scrollbar {
  width: 22px;
}

.tagung-programm .tp-scrollbox::-webkit-scrollbar-thumb {
  background: rgba(99, 161, 147, 1);
  border-radius: 999px;
  border: 8px solid transparent;
  background-clip: content-box;
}


/* =========================
   DOWNLOAD – Öffentlicher Bereich
========================= */
.download-public {
  padding: var(--section-pad-y) 20px;
}

.download-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.download-card {
  background: var(--color-white);
  border-radius: 18px;
  padding: 36px 40px;
  max-width: 620px;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.08);
}

.download-icon {
  margin-bottom: 18px;
}

.download-icon img {
  width: 90px;
  height: auto;
  display: block;
  margin: auto;
}

.download-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-text);
}

.download-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.download-btn {
    display: block;
    padding: 15px 40px;
    border-radius: 20px;
    background: var(--color-green-light);
    color: #ffffff;
    font-weight: 700;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: none;
    margin: auto;
    text-align: center;
    width: 30%;
}

.download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.download-visual {
  display: flex;
  justify-content: center;
}

.download-visual img {
  width: clamp(420px, 40vw, 680px);
  height: auto;
  display: block;
}

/* =========================================
   MITGLIEDERBEREICH + MITGLIEDERVERSAMMLUNG
========================================= */
.member-area {
  padding-top: clamp(72px, 7vw, 120px);
  padding-bottom: clamp(92px, 8vw, 140px);
  position: relative;
}

/* Badge */
.member-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: var(--color-green-dark);
  border: 3px solid var(--color-accent);
  color: #fff;

  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  margin-bottom: clamp(18px, 2vw, 26px);
}

.member-badge__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.member-badge__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.member-badge__text {
  font-weight: 800;
  font-size: 12px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}

/* Intro */
.member-intro {
  text-align: center;
  margin-bottom: clamp(56px, 6.5vw, 96px);
}

.member-intro__title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 900;
  text-transform: none;
  color: #000;
  margin-bottom: 10px;
}

.member-intro__mark {
  font-family: Anton;
  color: var(--color-green-dark);
  font-weight: 900;
  letter-spacing: 1px;
}

.member-intro__hello {
  font-weight: 700;
  margin-bottom: 10px;
}

.member-intro__text {
  max-width: 760px;
  margin: 0 auto clamp(18px, 2.2vw, 28px) auto;
}

.member-intro__section-title {
  margin-top: 8px;
  font-family: 'Anton';
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--color-green-dark);
  text-transform: uppercase;
}

/* Wrapper als Bezug */
.mv-wrap {
  position: relative;
  margin-bottom: clamp(72px, 8vw, 124px);
}

/* Deko-Container */
.mv-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Blatt */
.mv-deco img {
    position: absolute;
    right: -13%;
    bottom: -51%;
    transform: rotate(145deg);
    width: clamp(420px, 40vw, 620px);
    height: auto;
}

/* Programm-Karte */
.mv-card {
  position: relative;
  z-index: 2;

  background: var(--color-green-dark);
  border-radius: 18px;
  padding: clamp(22px, 2.6vw, 34px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.18);
  overflow: hidden;
}

.mv-card__head {
  text-align: center;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.mv-card__title {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 4px 0;
}

.mv-card__date {
  color: rgba(255,255,255,0.82);
  margin: 0;
  font-size: 14px;
}

/* Grid */
.mv-card__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

/* Liste */
.mv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
}

.mv-item {
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 18px rgba(0,0,0,0.10);
}

.mv-item__num {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: grid;
  place-items: center;
}

.mv-item__main {
  margin: 0;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
  color: #000;
}

.mv-item__sub {
  margin: 2px 0 0 0;
  font-size: 16px;
  line-height: 1.25;
  color: rgb(0, 0, 0);
}

/* Bild rechts */
.mv-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-visual__img {
  width: clamp(240px, 27vw, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.25));
}

/* =========================================
   MITGLIEDER-DOWNLOAD (Cards, 3 nebeneinander)
========================================= */
.member-download {
  padding-top: clamp(56px, 6vw, 96px);
}

.member-download__head {
  margin-bottom: clamp(32px, 4vw, 52px);
  margin-left: 0;
}

.member-download__title {
  font-family: 'Anton';
  font-size: 34px;
  text-transform: uppercase;
  color: var(--color-green-dark);
  margin: 0;
}

.member-download__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}

/* Card */
.md-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: clamp(22px, 2.2vw, 32px);
  box-shadow: 7px 5px 22px rgb(0 0 0 / 22%);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  min-height: 300px;
}

/* Icon oben */
.md-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: clamp(14px, 1.6vw, 22px);
}

.md-card__icon img {
  width: 140%;
  height: auto;
  display: block;
  margin: auto;
}
.md-card__icon2 img {
    width: 17%;
    height: auto;
    display: block;
    margin: auto;
}
/* Text */
.md-card__title {
  margin: 18px 0 10px 0;
  font-size: 20px;
  font-weight: 900;
  color: #000;
  line-height: 1.2;
  text-align: center;
}

.md-card__text {
  margin: 0;
  font-size: 13px;
  color: rgb(0, 0, 0);
  line-height: 1.45;
  max-width: 34ch;
}

/* Button unten mittig */
.md-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: clamp(18px, 2vw, 26px);
  padding: 10px 18px;
  border-radius: 10px;

  background: var(--color-green-dark);
  color: #fff;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 10px 18px rgba(0,0,0,0.16);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.md-card__btn:hover,
.md-card__btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(0,0,0,0.18);
}

/* =========================
   ANMELDUNG (Formular)
========================= */
.anmeldung-section {
  background: var(--color-green-dark);
  padding: clamp(72px, 7vw, 120px) 0;
  position: relative;
}

.anmeldung-wrap {
  position: relative;
  max-width: 980px;
}

.anmeldung-head {
  margin-bottom: clamp(28px, 3.5vw, 44px);
  color: #fff;
}

.anmeldung-title {
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 2.2px;
}

.anmeldung-lead {
  margin: 0;
  font-weight: 700;
  line-height: 1.55;
}

/* Info Icon + Tooltip */
.anmeldung-info {
  position: absolute;
  right: 0;
  top: 6px;
}

.info-trigger {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
}

.info-trigger img {
  width: 46px;
  height: 46px;
  display: block;
}

/* Tooltip erscheint nur bei Hover oder Fokus innerhalb */
.info-tooltip {
  position: absolute;
  right: 0;
  top: 54px;
  width: 320px;
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.info-tooltip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.info-tooltip p + p {
  margin-top: 8px;
}

.anmeldung-info:hover .info-tooltip,
.anmeldung-info:focus-within .info-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Formular */
.anmeldung-form {
  display: grid;
  gap: clamp(18px, 2.2vw, 26px);
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.2vw, 30px);
}

.form-field label {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.req {
  color: var(--color-accent);
  margin-left: 4px;
  font-weight: 900;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(0,0,0,0.45);
}

/* Gruppen */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.member-only-field {
  display: none;
}

.is-logged-in .member-only-field {
  display: block;
}


.form-fieldset legend {
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.check-list,
.radio-list {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.check-item,
.radio-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.check-item input,
.radio-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.form-hint {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}

/* Button */
.form-actions {
  margin-top: 6px;
}

.form-submit {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 26px;
  font-weight: 900;
  cursor: pointer;
  min-width: 160px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.28);
  background: var(--color-green-light);
}

/* Back to top */
.to-top {
  position: fixed;
  right: clamp(18px, 2.4vw, 28px);
  bottom: clamp(18px, 2.4vw, 28px);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--color-accent);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
    opacity: 0;
  pointer-events: none;
    transition:
    opacity 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.to-top:hover,
.to-top:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  background: var(--color-green-dark);
}



/* =========================
   FOOTER (nach Layout)
========================= */
.site-footer {
  background: var(--color-green-light);
  color: #ffffff;
  padding-top: clamp(44px, 4vw, 64px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px 1.2fr 1fr 1fr;
    gap: clamp(22px, 5vw, 56px);
    align-items: start;
    padding-bottom: clamp(34px, 3.5vw, 54px);
}

.footer-logo img {
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.22));
}

.footer-block {
  min-width: 0;
}

.footer-title {
  font-weight: 500;
  margin: 0 0 0 0;
  color: #ffffff;
}

.footer-title--spaced {
  margin-top: 18px;
}

.footer-address {
  font-style: normal;
  line-height: 1.6;
}

.footer-text {
    margin: 0;
    line-height: 1.6;
    font-weight: 700;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.footer-contact__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
}

.footer-contact__icon {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Subfooter */
.footer-sub {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding: 14px 0;
}

.footer-sub-inner {
  display: flex;
  justify-content: center;
}

.footer-subtext {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.95;
}

.center {
  text-align: center;
}
footer #impressum, footer #datenschutz {
  margin-left: 12px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
}

footer #impressum:hover, footer #datenschutz:hover {
  color: var(--color-accent);
}
/* Optional: große Screens */
@media (min-width: 1700px) {
  .mv-card__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
