/* =========================================
   BASE
========================================= */
:root{
  --text: rgba(22,25,24,.86);
  --muted: rgba(22,25,24,.65);

  --bg: #fbfaf7;
  --card: rgba(255,255,255,.92);

  --accent: #2f6b5b;       /* ruhiges Grün */
  --accentDark: #245548;

  --shadowSoft: 0 10px 30px rgba(0,0,0,.08);
  --radius: 22px;

  --bandGap: 64px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

a{ color: var(--accentDark); text-underline-offset:3px; }
a:hover{ opacity:.9; }

.container{
  width:min(980px, calc(100% - 48px));
  margin:0 auto;
}

@media (max-width: 640px){
  .container{ width:min(980px, calc(100% - 28px)); }
}

/* =========================================
   HERO + CAROUSEL
========================================= */
.hero{
  position: relative;
  min-height: 72vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  overflow:hidden;
}

.hero__inner{
  position: relative;
  z-index: 2;
  padding: 96px 0 86px;
}

.hero__title{
  text-align:center;
}

.hero__name{
  font-family:"Bebas Neue", sans-serif;
  letter-spacing:2px;
  line-height:1.05;
  font-size: clamp(3rem, 8vw, 6.2rem);
  margin-bottom: 14px;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.hero__line{
  font-weight: 500;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}

/* Background Slides */
.hero__bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: translateX(18px) scale(1.02);
  transition: opacity 1.0s ease, transform 1.2s ease;
  background-position:center;
  background-size:cover;
  filter: blur(4px) saturate(1.08) brightness(.82);
}

/* >>>> HIER DEINE 3 BILDER EINTRAGEN (PNG) <<<< */
.hero__slide:nth-child(1){ background-image:url("/img/hero1.png"); }
.hero__slide:nth-child(2){ background-image:url("/img/hero2.png"); }
.hero__slide:nth-child(3){ background-image:url("/img/hero3.png"); }

.hero__slide.is-active{
  opacity:1;
  transform: translateX(0) scale(1.02);
}

/* dunkles Overlay für Lesbarkeit */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 40%,
    rgba(0,0,0,.62) 100%
  );
  z-index:1;
}

/* =========================================
   SECTIONS (BANDS) + weiche Übergänge
========================================= */
.band{
  position: relative;
  padding: var(--bandGap) 0;
}

/* weiche Übergänge zwischen Abschnitten */
.band::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:-40px;
  height:40px;
  background: linear-gradient(180deg, rgba(251,250,247,0) 0%, rgba(251,250,247,1) 100%);
  pointer-events:none;
}
.band:first-of-type::before{ display:none; }

.band__head h2{
  font-family:"Bebas Neue", sans-serif;
  letter-spacing: 1.4px;
  font-size: 34px;
  margin:0 0 10px;
  color: rgba(22,25,24,.92);
}

.band__head p{
  margin:0;
  color: var(--muted);
  line-height:1.7;
  max-width: 820px;
}

/* Band Varianten */
.band--notice{
  background: linear-gradient(180deg,
    rgba(241,205,176,.62) 0%,
    rgba(241,205,176,.40) 100%
  );
}

.band--tipps{
  background: linear-gradient(180deg,
    rgba(244,231,216,.45) 0%,
    rgba(251,250,247,1) 100%
  );
}

.band--zustimmung{
  background: #ffffff;
}

/* =========================================
   CARDS (Tipps & Hinweise)
========================================= */
.tips{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.tip{
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadowSoft);
}

.tip__title{
  font-weight: 800;
  font-size: 16px;
  color: rgba(22,25,24,.92);
  margin-bottom: 8px;
}

.tip__text{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Hinweise-Karten (Rahmen wie Tip-Karten) */
.noticeCards{
  display:grid;
  gap: 18px;
  margin-top: 26px;
}

.noticeCard{
  background: rgba(255,255,255,.94);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadowSoft);
}

.noticeCard__title{
  font-weight: 900;
  font-size: 16px;
  color: rgba(22,25,24,.92);
  margin-bottom: 8px;
}

.noticeCard__text{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.noticeCard__text ul{
  margin: 12px 0 0 18px;
  padding:0;
}
.noticeCard__text li{ margin: 6px 0; }

/* responsive cards */
@media (max-width: 900px){
  .tips{ grid-template-columns: 1fr; }
}

/* =========================================
   FORM / PANEL / BUTTON
========================================= */
.panel{
  margin-top: 26px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadowSoft);
}

.form{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  line-height:1.5;
  color: rgba(22,25,24,.78);
  font-size: 14px;
}

.check input{
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.btn{
  border:0;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 800;
  cursor:pointer;
  transition: transform .08s ease, opacity .2s ease, filter .2s ease;
}

.btn--wide{ width:100%; }

.btn--primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(47,107,91,.22);
}

.btn--primary:hover{ filter: brightness(1.02); }
.btn--primary:active{ transform: translateY(1px); }

button:disabled{
  opacity:.45;
  cursor:not-allowed;
  filter:saturate(.7);
}

.micro{
  margin: 0;
  color: rgba(22,25,24,.55);
  font-size: 12.5px;
}

/* Footerlinks */
.footerlinks{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  color: rgba(22,25,24,.55);
  font-size: 13px;
}

/* =========================================
   REVEAL (Fade In beim Scrollen)
========================================= */
.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}
