:root{
  --orange:#F5A623;
  --dark-orange:#D4881A;
  --dark:#1A1A1A;
  --dark-grey:#333333;
  --mid-grey:#666666;
  --light-grey:#F5F5F5;
  --green:#27AE60;
  --blue:#2E86C1;
  --white:#FFFFFF;
  --text:#333333;
  --muted:#AAAAAA;
  --radius:12px;
  --shadow:0 4px 15px rgba(0,0,0,0.08);
  --container:1400px;
  --header-height:90px;
}

*{box-sizing:border-box;font-family:'Nunito',sans-serif}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:#FAFAFA;
}

h1{font-size:clamp(2.2rem,5vw,4rem);font-weight:900;margin:0}
h2{font-size:clamp(1.6rem,3vw,2.6rem);font-weight:800;margin:0}
h3{font-size:clamp(1.1rem,2vw,1.5rem);font-weight:700;margin:0}
p,li,a{font-size:1.05rem;font-weight:400;line-height:1.8}

img{max-width:100%; display:block}

.container{
  width:100%;
  max-width:1400px !important;
  margin-left:auto;
  margin-right:auto;
  padding-left:80px;
  padding-right:80px;
}

@media (max-width:1024px){
  .container{padding-left:40px;padding-right:40px}
}
@media (max-width:768px){
  .container{padding-left:20px;padding-right:20px}
}

/* Header */
header.site-header,
header.site-header nav{
  background-color:#FFFFFF !important;
  border-bottom:2px solid #F0F0F0;
  box-shadow:0 2px 20px rgba(0,0,0,0.08);
}
header.site-header{
  position:sticky;
  top:0;
  /* Deutlich über Leaflet (Controls/Attribution z-index 1000); siehe Mobile-Navigation unten */
  z-index:4000;
  isolation:isolate;
  transition:box-shadow .25s ease;
  min-height:var(--header-height);
}
header.site-header.scrolled{
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
}
header.site-header .header-inner{
  height:var(--header-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  max-width:1400px;
  margin:0 auto;
  padding-left:0;
  padding-right:0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand img,
header img:first-child{
  height:75px !important;
  width:auto;
}
.nav-desktop{
  display:none;
  gap:8px;
  align-items:center;
}
.nav-desktop a.nav-link,
nav a.nav-link{
  color:#1A1A1A !important;
  text-decoration:none;
  font-weight:700;
  font-size:1rem;
  padding:8px 16px;
  transition:color .2s;
  border-bottom:3px solid transparent;
}
.nav-desktop a.nav-link:hover{
  color:var(--orange) !important;
}
.nav-desktop a.nav-link.active{
  color:var(--orange) !important;
  border-bottom-color:var(--orange);
}

.header-cta{
  display:flex;
  align-items:center;
  gap:12px;
}
.header-cta > a.btn,
.header-cta a.btn-book-header{
  background:#F5A623;
  color:#fff !important;
  border-radius:30px;
  padding:12px 28px;
  font-weight:800;
  font-size:1rem;
  border:none;
  box-shadow:0 4px 15px rgba(245,166,35,0.4);
  transition:transform .2s, box-shadow .2s;
}
.header-cta > a.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(245,166,35,0.5);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:25px;
  border:2px solid transparent;
  text-decoration:none;
  font-weight:800;
  letter-spacing:0.5px;
  transition:background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn--primary,
.btn-primary,
.btn-orange,
a.btn[class*="primary"]{
  background:#F5A623;
  color:#fff !important;
  border-radius:50px;
  padding:14px 36px;
  font-weight:800;
  font-size:1rem;
  border:none;
  transition:all .2s ease;
  box-shadow:0 4px 15px rgba(245,166,35,0.35);
  display:inline-flex;
  text-decoration:none;
}
.btn--primary:hover,
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 25px rgba(245,166,35,0.5);
  background:#D4881A;
  color:#fff !important;
}
.btn--outline{
  background:transparent;
  color:var(--white);
  border-color:var(--white);
}
.btn--outline:hover{
  background:rgba(245,166,35,0.12);
  border-color:var(--orange);
  color:var(--white);
}
.btn--ghost{
  background:transparent;
  border-color:var(--orange);
  color:var(--orange);
}
.btn--ghost:hover{
  background:rgba(245,166,35,0.12);
  color:var(--dark-orange);
}
.btn--light{
  background:#fff;
  color:var(--orange);
  border-color:#fff;
}
.btn--light:hover{
  background:rgba(255,255,255,0.95);
  color:var(--dark-orange);
  border-color:var(--orange);
}
.btn--xl{
  padding:12px 22px;
  font-size:16px;
}
.btn--wide{
  width:100%;
  padding:12px 16px;
  border-radius:14px;
}
.btn--disabled,
.btn:disabled{
  opacity:.55;
  cursor:not-allowed;
  transform:none !important;
}

.hamburger{
  width:48px;
  height:48px;
  border-radius:12px;
  border:1px solid #E0E0E0;
  background:#FAFAFA;
  color:#1A1A1A;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hamburger svg{width:24px;height:24px}

/* Hero height helpers (seite-spezifisch) */
.hero--full{min-height:100vh}
.hero--short{min-height:60vh}
.hero--news{min-height:50vh}
.hero--contact{min-height:40vh}

@media (min-width:1024px){
  .nav-desktop{display:flex}
  .hamburger{display:none}
}

.mobile-nav{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(320px, 92vw);
  background:#FFFFFF;
  z-index:4600;
  transform:translateX(105%);
  transition:transform .25s ease;
  padding:20px 16px;
  display:flex;
  flex-direction:column;
  gap:14px;
  box-shadow:-4px 0 24px rgba(0,0,0,0.08);
}
body.nav-open .mobile-nav{
  transform:translateX(0);
}
.mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:4500;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}
body.nav-open .mobile-overlay{
  opacity:1;
  pointer-events:auto;
}
.mobile-nav a{
  color:#1A1A1A !important;
  text-decoration:none;
  font-weight:700;
  padding:12px 14px;
  border-radius:12px;
  background:#F7F7F7;
}
.mobile-nav a:hover{background:rgba(245,166,35,0.12); color:var(--orange) !important}
.mobile-nav .mobile-cta{
  margin-top:auto;
  justify-content:center;
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:70px 0;
}
.hero .hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  background-size:cover;
  background-position:center;
  transition:opacity 1s ease;
}
.hero .hero-bg--1{opacity:1}
.hero .hero-bg--2{opacity:0}
.hero--video .hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}
.hero--video .hero-bg{
  display:none;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.44);
  z-index:1;
}
.hero > .container{
  position:relative;
  z-index:2;
  text-align:center;
}
.hero h1{
  color:var(--white);
  margin:0 0 12px;
}
.hero p{
  color:rgba(255,255,255,0.92);
  margin:0 auto 22px;
  max-width:720px;
  font-weight:600;
}
.hero .hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}

/* ── TOUREN HERO VIDEO ───────────────────────── */
.touren-hero{
  position:relative;
  overflow:hidden;
  background:none !important;
  background-image:none !important;
  background-color:transparent !important;
}
.touren-hero::before{
  display:none;
}
.touren-hero-video{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  min-width:100%;
  min-height:100%;
  width:auto;
  height:auto;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}
.touren-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index:1;
  pointer-events:none;
}
.touren-hero .page-hero-content{
  position:relative;
  z-index:2;
  text-align:center;
}

/* ── AKTUELLES HERO (Foto) ───────────────────── */
.aktuelles-hero{
  position:relative;
  overflow:hidden;
  background:none !important;
  background-image:none !important;
  background-color:transparent !important;
}
.aktuelles-hero::before{
  display:none;
}
.aktuelles-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  background-image:url("../assets/aktuelles-hero-gruppen-fahrradtouren.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.aktuelles-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index:1;
  pointer-events:none;
}
.hero.aktuelles-hero > .container{
  position:relative;
  z-index:2;
}

/* ── BUCHUNG HERO VIDEO ──────────────────────── */

.buchung-hero{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:40vh;
  padding:70px 0;
  background:none !important;
  background-image:none !important;
  background-color:transparent !important;
}
.buchung-hero-video{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  min-width:100%;
  min-height:100%;
  width:auto;
  height:auto;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}
.buchung-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(0, 0, 0, 0.60) 60%,
    rgba(0, 0, 0, 0.70) 100%
  );
  z-index:1;
  pointer-events:none;
}
.buchung-hero .page-hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:900px;
  margin:0 auto;
  padding:0 20px;
}
.buchung-hero .page-hero-content h1{
  color:#fff;
}
.buchung-hero .page-hero-content p{
  color:rgba(255, 255, 255, 0.9);
}

/* ── BUCHUNG: SumUp-Popup (buchungsModal) ─────── */

#buchungsModal.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:50000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  box-sizing:border-box;
}
#buchungsModal .modal-box{
  background:#fff;
  border-radius:20px;
  padding:40px;
  max-width:560px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
}
#buchungsModal .modal-close{
  position:absolute;
  top:16px;
  right:20px;
  background:none;
  border:none;
  font-size:1.4rem;
  cursor:pointer;
  color:#666;
  line-height:1;
}
#buchungsModal .modal-box h2{
  font-size:1.5rem;
  font-weight:900;
  margin-bottom:6px;
  color:#1A1A1A;
}
#buchungsModal .modal-sub{
  color:#666;
  font-size:0.95rem;
  margin-bottom:24px;
}
#buchungsModal .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
#buchungsModal .form-group{
  display:flex;
  flex-direction:column;
  margin-bottom:16px;
}
#buchungsModal .form-group label{
  font-size:0.85rem;
  font-weight:700;
  color:#333;
  margin-bottom:6px;
}
#buchungsModal .form-group input{
  padding:12px 14px;
  border:1.5px solid #DDDDDD;
  border-radius:10px;
  font-size:0.95rem;
  font-family:inherit;
  transition:border-color 0.2s;
  width:100%;
  box-sizing:border-box;
}
#buchungsModal .form-group input:focus{
  outline:none;
  border-color:#F5A623;
}
#buchungsModal .preis-uebersicht{
  background:#FFF8EC;
  border:2px solid #F5A623;
  border-radius:12px;
  padding:16px 20px;
  margin:16px 0 24px;
}
#buchungsModal .preis-zeile{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
#buchungsModal .preis-zeile span:first-child{
  font-weight:700;
  color:#333;
}
#buchungsModal .preis-gesamt{
  font-size:1.5rem;
  font-weight:900;
  color:#D4881A;
}
#buchungsModal .preis-hinweis{
  font-size:0.82rem;
  color:#888;
  margin:4px 0 0;
}
#buchungsModal .modal-buttons{
  display:flex;
  gap:12px;
}
#buchungsModal .btn-secondary{
  flex:1;
  padding:14px;
  border:2px solid #DDDDDD;
  background:#fff;
  border-radius:50px;
  font-weight:700;
  cursor:pointer;
  font-family:inherit;
}
#buchungsModal .modal-buttons .btn-primary{
  flex:2;
  padding:14px;
  background:#F5A623;
  color:#fff;
  border:none;
  border-radius:50px;
  font-weight:900;
  font-size:1rem;
  cursor:pointer;
  font-family:inherit;
}
@media (max-width:480px){
  #buchungsModal .modal-box{padding:24px 20px;}
  #buchungsModal .form-row{grid-template-columns:1fr;}
  #buchungsModal .modal-buttons{flex-direction:column;}
}

/* ── DURCHGESTRICHENER ALTER PREIS (Motorrad) ── */

.preis-alt{
  text-decoration:line-through;
  color:#999999;
  font-size:1rem;
  font-weight:600;
  margin-right:8px;
}
.preis-neu{
  color:#D4881A;
  font-size:1.2rem;
  font-weight:900;
  margin-right:8px;
}
.preis-badge{
  background:#F5A623;
  color:#fff;
  font-size:0.75rem;
  font-weight:800;
  padding:3px 10px;
  border-radius:20px;
  vertical-align:middle;
  text-transform:uppercase;
  letter-spacing:0.3px;
}
tr.motorrad-preis-zeile td{
  background:#FFF8EC;
}
tr.motorrad-preis-zeile td:first-child{
  border-left:4px solid #F5A623;
}
.motorrad-preis-block{
  padding:14px 0 10px;
  border-top:1px solid #EEEEEE;
  margin-bottom:14px;
}
.motorrad-preis-label{
  display:block;
  font-size:0.78rem;
  color:#999999;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.4px;
  margin-bottom:6px;
}
.motorrad-preis-block .motorrad-preis-zeile{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.preis-alt-card{
  text-decoration:line-through;
  color:#AAAAAA;
  font-size:1.1rem;
  font-weight:600;
}
.preis-neu-card{
  color:#D4881A;
  font-size:1.5rem;
  font-weight:900;
}
.preis-badge-card{
  background:#F5A623;
  color:#fff;
  font-size:0.75rem;
  font-weight:800;
  padding:4px 12px;
  border-radius:20px;
  text-transform:uppercase;
  letter-spacing:0.3px;
  white-space:nowrap;
}
.scroll-arrow{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(245,166,35,0.15);
  border:1px solid rgba(245,166,35,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:var(--white);
  z-index:3;
  animation:bounce 1.8s ease-in-out infinite;
}
@keyframes bounce{
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(-6px)}
}
.scroll-arrow svg{width:22px;height:22px}

/* Sections */
.section{
  padding-top:120px !important;
  padding-bottom:120px !important;
}
@media (max-width:1024px){
  .section{padding-top:80px !important;padding-bottom:80px !important}
}

.section-title{
  text-align:left;
  margin:0 0 60px;
  color:var(--dark);
  display:block;
}
.section-title::after,
h2.underline::after{
  content:'';
  display:block;
  width:60px;
  height:4px;
  background:#F5A623;
  border-radius:2px;
  margin-top:12px;
}
.section-title.centered::after{
  margin:12px auto 0;
}

/* Aktuelle Tour Card */
section#aktuelle-tour{
  background:var(--white);
}
.card,
.tour-card,
.blog-card{
  border-radius:16px;
  box-shadow:0 4px 20px rgba(0,0,0,0.07);
  transition:transform .25s, box-shadow .25s;
  overflow:hidden;
  border:none;
}
.card:hover,
.tour-card:hover,
.blog-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 35px rgba(0,0,0,0.13);
}
.tour-card{
  max-width:800px;
  margin:0 auto;
  background:var(--white);
  display:flex;
  flex-direction:column;
}
.tour-card__media{
  width:100%;
  height:220px;
  background:linear-gradient(135deg, rgba(46,134,193,0.45), rgba(245,166,35,0.25));
}
.tour-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.tour-card__body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:12px;
  letter-spacing:0.8px;
  padding:8px 12px;
  border-radius:999px;
  width:max-content;
  text-transform:uppercase;
}
.badge--green{background:rgba(39,174,96,0.18); color:var(--green); border:1px solid rgba(39,174,96,0.35)}
.badge--grey{background:rgba(102,102,102,0.15); color:var(--mid-grey); border:1px solid rgba(102,102,102,0.25)}
.tour-card h2{
  margin:0;
  font-family:'Nunito', sans-serif;
  font-weight:900;
  color:var(--dark);
  font-size:clamp(20px, 2.3vw, 28px);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px 14px;
  margin-top:4px;
}
.stat{
  color:var(--dark-grey);
  font-weight:700;
  display:flex;
  gap:8px;
  align-items:flex-start;
  font-size:14px;
}
.stat .icon{
  color:var(--orange);
  margin-top:2px;
  flex-shrink:0;
}
.stat .icon svg{width:18px;height:18px;stroke:var(--orange)}
.tour-card .btn--wide{
  margin-top:4px;
}

@media (min-width:768px){
  .tour-card{
    flex-direction:row;
    align-items:stretch;
  }
  .tour-card__media{
    width:40%;
    height:auto;
    min-height:320px;
  }
  .tour-card__body{
    width:60%;
  }
}

/* About */
.about-wrap{
  display:grid;
  gap:18px;
}
.bg-light{background:var(--light-grey)}
.about-photo{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  align-self:start;
  width:100%;
  max-width:440px;
  justify-self:end;
}
.about-photo img{
  width:100%;
  height:clamp(320px, 42vw, 520px);
  display:block;
  object-fit:cover;
  object-position:center top;
}
.about-wrap h2{
  font-family:'Nunito', sans-serif;
  font-weight:900;
  color:var(--dark);
  font-size:clamp(22px, 2.3vw, 34px);
  margin:0 0 10px;
}
.about-wrap p{
  color:var(--dark-grey);
  line-height:1.8;
  font-weight:600;
  margin:0 0 18px;
}
.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag{
  background:rgba(39,174,96,0.15);
  border:1px solid rgba(39,174,96,0.25);
  color:rgba(39,174,96,0.98);
  font-weight:900;
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
}

/* Über uns – breiter und luftiger */
#ueber-uns.section{
  padding-top:90px !important;
  padding-bottom:90px !important;
}
#ueber-uns .container{
  max-width:1500px !important;
  margin:0 auto;
  padding-left:40px;
  padding-right:40px;
}
#ueber-uns .about-wrap{
  grid-template-columns:1.15fr 0.85fr;
  gap:72px;
  align-items:center;
}
#ueber-uns .about-wrap p{
  line-height:1.6;
}

/*  Orte – echte Fotos (index) */
.grid-2,
.orte-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:28px;
}

@media (min-width:1024px){
  .about-wrap{grid-template-columns:1.1fr 0.9fr; align-items:center}
}

@media (max-width:1024px){
  #ueber-uns .about-wrap{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
  .about-photo{
    max-width:380px;
  }
}

@media (max-width:768px){
  #ueber-uns .container{
    padding-left:20px;
    padding-right:20px;
  }
  #ueber-uns .about-wrap{
    grid-template-columns:1fr;
    gap:24px;
  }
  .about-photo{
    max-width:100%;
    justify-self:stretch;
  }
  .about-photo img{
    height:auto;
    max-height:520px;
  }
}

/* Hinweis: Hoher Meißner & Werratal – hier als JPG (kein WebP-Export per sips). Dateien: Hoher_Meissner_Tour.jpg, Werratal_Tour.jpg */
.ort-card{
  border-radius:20px;
  overflow:hidden;
  background-color:#1a1a1a;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
  min-height:320px;
  height:320px !important;
  box-shadow:0 8px 30px rgba(0,0,0,0.12);
  position:relative;
  transition:transform .3s ease, box-shadow .3s ease;
  display:flex;
  align-items:flex-end;
  cursor:pointer;
  text-decoration:none;
  color:inherit;
}
.ort-card:hover{
  transform:translateY(-6px) scale(1.01);
  box-shadow:0 16px 40px rgba(0,0,0,0.2);
}

.ort-card--eschwege{
  background-image:url('/assets/Eschwege_Tour.jpg');
  background-position:center 40%;
}
.ort-card--wanfried{
  background-image:url('/assets/Wanfried_Tour.jpg');
  background-position:center center;
}
.ort-card--meissner{
  background-image:url('/assets/Hoher_Meissner_Tour.jpg');
  background-position:center 60%;
}
.ort-card--werratal{
  background-image:url('/assets/Werratal_Tour.jpg');
  background-position:center 30%;
}

.ort-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.05) 100%
  );
  border-radius:inherit;
  pointer-events:none;
  z-index:1;
}

.ort-card .overlay,
.ort-card-content{
  padding:0;
  position:absolute;
  bottom:28px;
  left:28px;
  right:28px;
  z-index:2;
  color:#fff;
  background:none !important;
}
.ort-card h3{
  margin:0 0 6px;
  color:#FFFFFF;
  font-weight:900;
  font-size:1.6rem;
  text-shadow:0 2px 8px rgba(0,0,0,0.4);
}
.ort-card p{
  margin:0;
  color:rgba(255,255,255,0.88);
  font-size:1rem;
  font-weight:600;
  line-height:1.5;
  text-shadow:0 1px 4px rgba(0,0,0,0.4);
}
.map-pin-icon{
  width:20px;
  height:20px;
  color:#F5A623;
  margin-bottom:6px;
}
.map-pin-icon svg{width:20px;height:20px;stroke:#F5A623}
@media (max-width:768px){
  .orte-grid{grid-template-columns:1fr}
  .ort-card{height:260px !important;min-height:260px}
}

/* Touren - alternating sections */
.tour-section{
  display:flex;
  flex-direction:column;
  gap:18px;
  background:var(--white);
}
.tour-section__media{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.tour-section__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  max-height:320px;
}
.tour-section__body{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.tour-section__header{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.stats-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color:var(--dark-grey);
  font-weight:800;
  font-size:14px;
}
.stats-bar span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(245,166,35,0.10);
  border:1px solid rgba(245,166,35,0.22);
  padding:8px 12px;
  border-radius:999px;
}
.tour-section h2{
  margin:0;
  font-family:'Nunito', sans-serif;
  font-weight:1000;
  font-size:clamp(20px, 2.4vw, 32px);
  color:var(--dark);
}
.tour-section p{
  margin:0;
  color:var(--dark-grey);
  line-height:1.8;
  font-weight:600;
}
.highlights{
  margin:0;
  padding:0;
  list-style:none;
  color:var(--dark-grey);
  font-weight:700;
  line-height:1.7;
}
.highlights li.highlight-item{
  margin:8px 0;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.highlights li.highlight-item svg{
  width:20px;
  height:20px;
  flex-shrink:0;
  color:var(--green);
  stroke:var(--green);
}
.tour-section .btn{align-self:flex-start}

@media (min-width:1024px){
  .tour-section{
    flex-direction:row;
    align-items:center;
  }
  .tour-section--reverse{
    flex-direction:row-reverse;
  }
  .tour-section__media, .tour-section__body{flex:1}
  .tour-section__media img{max-height:420px}
  .tour-section__body{padding-right:6px}
  .tour-section--reverse .tour-section__body{padding-right:0; padding-left:6px}
  .tour-image-side,
  .tour-content-side{flex:1}
  .tour-content-side{padding-right:6px}
  .tour-section--reverse .tour-content-side{padding-right:0; padding-left:6px}
}

/* Motorrad-Touren: Bild/Text-Spalten (wie E-Bike-Zweispalter) */
.tour-image-side,
.tour-content-side{
  min-width:0;
}
.tour-content-side{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.tour-img-placeholder{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:280px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.container > section.tour-section + section.tour-section{
  margin-top:26px;
}

/* ── TOUREN KATEGORIE TRENNER ────────────────── */
.touren-trenner{
  text-align:center;
  padding:140px 80px 60px;
  max-width:1400px;
  margin:0 auto;
}
.touren-kategorie-titel{
  font-size:clamp(2rem, 3.5vw, 3rem);
  font-weight:900;
  color:#1A1A1A;
  margin-bottom:16px;
  text-align:center;
}
.touren-kategorie-sub{
  font-size:1.1rem;
  color:#666666;
  max-width:650px;
  margin:0 auto 28px;
  line-height:1.8;
  text-align:center;
}
.touren-kategorie-linie{
  width:80px;
  height:4px;
  background:#F5A623;
  border-radius:2px;
  margin:0 auto;
}

/* ── MOTORRAD / E-BIKE TYP-BADGE ─────────────── */
.tour-typ-badge{
  display:inline-block;
  padding:6px 16px;
  border-radius:30px;
  font-size:0.85rem;
  font-weight:800;
  margin-bottom:14px;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.tour-typ-badge.motorrad{
  background:#1A1A1A;
  color:#F5A623;
  font-size:0.82rem;
  padding:6px 16px;
  border-radius:30px;
  margin-bottom:16px;
}
.tour-typ-badge.ebike{
  background:#27AE60;
  color:white;
}

/* ── TOUR STATS BAR – detailliert ───────────── */
.tour-stats-bar{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  margin:24px 0;
  padding:20px;
  background:#F5F5F5;
  border-radius:12px;
}
.tour-stat{
  display:flex;
  align-items:center;
  gap:12px;
}
.tour-stat svg{
  width:22px;
  height:22px;
  color:#F5A623;
  stroke:#F5A623;
  flex-shrink:0;
}
.tour-stat div{
  display:flex;
  flex-direction:column;
}
.stat-label{
  font-size:0.78rem;
  color:#999999;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.4px;
}
.stat-value{
  font-size:0.95rem;
  color:#1A1A1A;
  font-weight:800;
}

/* ── TOUR BESCHREIBUNG ───────────────────────── */
.tour-section .tour-beschreibung{
  font-size:1.05rem;
  color:#444444;
  line-height:1.9;
  margin:20px 0;
}

/* ── HIGHLIGHT BOX ───────────────────────────── */
.tour-highlight-box{
  background:#F5F5F5;
  border-left:4px solid #F5A623;
  border-radius:0 12px 12px 0;
  padding:20px 24px;
  margin:20px 0;
}
.tour-highlight-box h4{
  font-size:1rem;
  font-weight:800;
  color:#1A1A1A;
  margin-bottom:12px;
}
.tour-highlight-box p{
  margin:0 0 14px;
  font-size:0.95rem;
  color:#444444;
  line-height:1.75;
  font-weight:600;
}
.tour-highlight-box ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.tour-highlight-box li{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.95rem;
  color:#444444;
  font-weight:600;
}
.tour-highlight-box li svg{
  width:16px;
  height:16px;
  color:#F5A623;
  flex-shrink:0;
}

/* ── TOUR CHECKLIST ──────────────────────────── */
.tour-checklist{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:20px 0;
}
.tour-checklist span{
  display:flex;
  align-items:center;
  gap:6px;
  background:white;
  border:1.5px solid #EEEEEE;
  border-radius:30px;
  padding:6px 14px;
  font-size:0.88rem;
  font-weight:700;
  color:#333333;
}
.tour-checklist svg{
  width:15px;
  height:15px;
  color:#27AE60;
}

/* ── PREIS ZEILE ─────────────────────────────── */
.tour-preis-zeile{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:28px;
  padding-top:24px;
  border-top:2px solid #F0F0F0;
}
.tour-preis-label{
  font-size:0.85rem;
  color:#999999;
  font-weight:700;
  text-transform:uppercase;
}
.tour-preis-wert{
  font-size:1.1rem;
  color:#1A1A1A;
  font-weight:900;
  flex:1;
}
.tour-preis-zeile .btn-primary{
  flex-shrink:0;
}

/* ── TOUR BILD-SLIDESHOW (z. B. Südwest) ─────── */
.tour-slideshow{
  position:relative;
  width:100%;
  min-height:400px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#1a1a1a;
}
.tour-slideshow__viewport{
  position:relative;
  width:100%;
  min-height:400px;
  aspect-ratio:16/10;
  max-height:520px;
}
.tour-slideshow__slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:0;
  transition:opacity 0.85s ease;
  z-index:0;
}
.tour-slideshow__slide.is-active{
  opacity:1;
  z-index:1;
}
.tour-slideshow__controls{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px;
}
.tour-slideshow__btn{
  pointer-events:auto;
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.92);
  color:#1A1A1A;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 4px 16px rgba(0,0,0,0.15);
  transition:background 0.2s, transform 0.15s;
}
.tour-slideshow__btn:hover{
  background:#fff;
  transform:scale(1.05);
}
.tour-slideshow__btn svg{
  width:22px;
  height:22px;
}
.tour-slideshow__dots{
  position:absolute;
  bottom:12px;
  left:50%;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(26,26,26,0.35);
  pointer-events:auto;
}
.tour-slideshow__dot{
  width:9px;
  height:9px;
  border-radius:50%;
  border:none;
  padding:0;
  background:rgba(255,255,255,0.5);
  cursor:pointer;
  transition:transform 0.2s, background 0.2s;
}
.tour-slideshow__dot.is-active{
  background:var(--orange);
  transform:scale(1.18);
}
@media (min-width:1024px){
  .tour-slideshow__viewport{max-height:480px}
}
@media (prefers-reduced-motion:reduce){
  .tour-slideshow__slide{transition:none}
}
@media (max-width:768px){
  .tour-slideshow,
  .tour-slideshow__viewport{
    min-height:260px;
    max-height:none;
    aspect-ratio:4/3;
  }
}

/* ── PLATZHALTER BILDER FÜR MOTORRAD TOUREN ─── */
.tour-placeholder-label{
  position:absolute;
  background:rgba(0,0,0,0.5);
  color:white;
  font-size:0.9rem;
  font-weight:700;
  padding:8px 18px;
  border-radius:20px;
}
.tour-sued-west{
  background:linear-gradient(135deg, #2C3E50, #F5A623);
  height:100%;
  min-height:400px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.tour-sued-ost{
  background:linear-gradient(135deg, #1A1A1A, #D4881A);
  height:100%;
  min-height:400px;
  border-radius:16px;
}
.tour-nord-west{
  background:linear-gradient(135deg, #2E86C1, #1A1A1A);
  height:100%;
  min-height:400px;
  border-radius:16px;
}

@media (max-width:1023px){
  .touren-trenner{
    padding:100px 40px 48px;
  }
}
@media (max-width:768px){
  .touren-trenner{
    padding:72px 20px 40px;
  }
  .tour-stats-bar{
    grid-template-columns:1fr 1fr;
  }
  .tour-preis-zeile{
    flex-direction:column;
    align-items:flex-start;
  }
  .tour-preis-zeile .btn-primary{
    width:100%;
    text-align:center;
    box-sizing:border-box;
  }
  .tour-img-placeholder{min-height:240px}
  .tour-sued-west,
  .tour-sued-ost,
  .tour-nord-west{min-height:260px}
}

/* Touren-Upgrade: klare Kartenstruktur + verlinkbare Anker + Routenkarten */
[id^="tour-"]{
  scroll-margin-top:120px;
}
.tour-section--premium{
  border:1px solid rgba(0,0,0,0.06);
  border-radius:16px;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  background:var(--white);
  padding:clamp(14px,2vw,20px);
  transition:transform .24s ease, box-shadow .24s ease;
}
.tour-section--premium:hover{
  /* kein transform: erzeugt sonst eine Composite-Layer; Leaflet-Attribution kann sonst über den sticky Header rutschen */
  box-shadow:0 14px 34px rgba(0,0,0,0.12);
}
.tour-section--premium .tour-section__media img{
  min-height:260px;
}
.tour-route-card{
  margin-top:16px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 5px 16px rgba(0,0,0,0.06);
  overflow:hidden;
  background:#fff;
}
.tour-route-card__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  padding:10px 12px;
  border-bottom:1px solid rgba(0,0,0,0.06);
  background:rgba(245,166,35,0.10);
}
.tour-route-card__head h3{
  margin:0;
  font-size:0.95rem;
  font-weight:900;
  color:var(--dark);
}
.tour-route-card__note{
  margin:0;
  font-size:0.76rem;
  color:var(--mid-grey);
  font-weight:700;
}
.tour-route-map{
  width:100%;
  height:260px;
  position:relative;
  z-index:0;
  overflow:hidden;
  border-radius:0 0 14px 14px;
}
/* Eigener Stacking-Context: interne Leaflet-z-Index-Werte bleiben in der Karte gekapselt */
.tour-route-map .leaflet-container{
  position:relative;
  z-index:0;
  isolation:isolate;
}
/* Sicherheit: Leaflet setzt .leaflet-top/.leaflet-bottom auf z-index 1000 – im Map-Block explizit dämpfen */
.tour-route-map .leaflet-top,
.tour-route-map .leaflet-bottom{
  z-index:800 !important;
}
.tour-route-map .leaflet-control-attribution{
  font-size:8.5px;
  line-height:1.35;
  font-weight:600;
  color:rgba(74,74,74,0.62);
  background:rgba(255,255,255,0.65);
  margin:0 8px 7px 0;
  padding:3px 7px;
  border-radius:4px;
  box-shadow:none;
  border:1px solid rgba(0,0,0,0.06);
}
.tour-route-map .leaflet-control-attribution a{
  color:rgba(74,74,74,0.78);
  text-decoration:none;
}
.tour-route-map .leaflet-control-attribution a:hover{
  color:rgba(26,26,26,0.88);
  text-decoration:underline;
}
@media (max-width:768px){
  .tour-route-map{
    height:220px;
  }
}

/* Blog */
.blog-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
@media (min-width:768px){
  .blog-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (min-width:1024px){
  .blog-grid{grid-template-columns:repeat(3, minmax(0,1fr))}
}
.blog-card{
  background:var(--white);
}
.blog-card .media{
  height:200px;
  width:100%;
  display:block;
  overflow:hidden;
  background-repeat:no-repeat;
  background-size:cover;
  border-radius:16px 16px 0 0;
}
/* Aktuelles – Blog-Karten: Vorschaubilder (Hero-Foto je Beitrag) */
.blog-grid .blog-card:nth-child(1) .media{
  background-image:url('../assets/Wanfried_Tour.jpg');
  background-position:center center;
}
.blog-grid .blog-card:nth-child(2) .media{
  background-image:url('../assets/Werratal_Tour.jpg');
  background-position:center 30%;
}
.blog-grid .blog-card:nth-child(3) .media{
  background-image:url('../assets/E_Bike_Tipps.webp');
  background-position:center 35%;
}
.blog-grid .blog-card:nth-child(4) .media{
  background-image:url('../assets/Fruehjahrsesssion.jpeg');
  background-position:center 55%;
}
.blog-grid .blog-card:nth-child(5) .media{
  background-image:url('../assets/wanfrieder-hafen.jpeg');
  background-position:center center;
}
.blog-grid .blog-card:nth-child(6) .media{
  background-image:url('../assets/Gruppentouren_Familie.jpg');
  background-position:center 45%;
}
.blog-card .content{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.blog-card h3{
  margin:0;
  font-family:'Nunito', sans-serif;
  font-weight:900;
  color:var(--dark);
  font-size:18px;
  line-height:1.3;
}
.blog-card .date{
  color:var(--mid-grey);
  font-weight:800;
  font-size:13px;
}
.blog-card p{
  margin:0;
  color:var(--dark-grey);
  line-height:1.7;
  font-weight:600;
}
.read-more{
  text-decoration:none;
  font-weight:900;
  color:var(--orange);
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.read-more svg{width:18px;height:18px}
.read-more:hover{color:var(--dark-orange)}

/* Booking + forms */
.price-wrap{
  max-width:900px;
  margin:0 auto;
}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.table thead th{
  background:rgba(245,166,35,0.95);
  color:#fff;
  text-align:left;
  font-family:'Nunito', sans-serif;
  font-weight:900;
  padding:16px 14px;
  font-size:14px;
}
.table th, .table td{
  padding:16px 14px;
  border-bottom:1px solid rgba(0,0,0,0.06);
  vertical-align:top;
}
.table tr:last-child td{border-bottom:none}
.table td{
  color:var(--dark-grey);
  font-weight:700;
}
.table td small{
  color:var(--mid-grey);
  font-weight:800;
}

.form-wrap{
  background:var(--light-grey);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
  max-width:900px;
  margin:0 auto;
}
.form-wrap h2{
  font-family:'Nunito', sans-serif;
  font-weight:900;
  color:var(--dark);
  font-size:clamp(20px, 2.3vw, 30px);
  margin:0 0 12px;
}
.trust-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:10px 0 14px;
}
.trust-badge{
  background:rgba(245,166,35,0.12);
  border:1px solid rgba(245,166,35,0.25);
  color:var(--dark-orange);
  font-weight:900;
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
}

form .form-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
@media (min-width:768px){
  form .form-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .span-2{grid-column:1 / -1}
}
.field label{
  display:block;
  font-weight:900;
  color:var(--dark-grey);
  margin-bottom:6px;
  font-size:14px;
}
input, textarea, select{
  width:100%;
  border-radius:12px;
  border:2px solid rgba(245,166,35,0.35);
  background:#fff;
  padding:12px 12px;
  font-family:'Nunito', sans-serif;
  font-weight:700;
  color:var(--dark-grey);
  outline:none;
}
textarea{resize:vertical; min-height:92px}
input:focus, textarea:focus, select:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 4px rgba(245,166,35,0.18);
}
input.invalid, textarea.invalid, select.invalid{
  border-color:#E74C3C !important;
  box-shadow:0 0 0 4px rgba(231,76,60,0.16) !important;
}
input[type="checkbox"].invalid{
  outline:2px solid #E74C3C;
  outline-offset:3px;
}
.form-actions{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:12px;
}
.form-actions .btn{width:100%}
.checkbox-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:6px;
  font-weight:700;
  color:var(--dark-grey);
}
.checkbox-row input{width:auto; margin-top:4px}
.form-success{
  background:rgba(39,174,96,0.12);
  border:1px solid rgba(39,174,96,0.25);
  color:rgba(39,174,96,0.98);
  font-weight:900;
  padding:14px;
  border-radius:12px;
  display:none;
}
.form-success.visible{display:block}
.hidden{display:none}

/* Contact layout */
.contact-wrap{
  display:grid;
  gap:16px;
}
@media (min-width:1024px){
  .contact-wrap{grid-template-columns:1fr 1.1fr; align-items:flex-start}
}
.contact-card{
  background:var(--white);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
  padding:18px;
}
.contact-card h2{
  font-family:'Nunito', sans-serif;
  font-weight:900;
  color:var(--dark);
  margin:0 0 10px;
  font-size:clamp(20px, 2.3vw, 30px);
}
.contact-card p{
  margin:8px 0;
  color:var(--dark-grey);
  font-weight:700;
  line-height:1.7;
}
.contact-card p.contact-line{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.social-links a{
  text-decoration:none;
  font-weight:900;
  color:var(--orange);
  background:rgba(245,166,35,0.10);
  border:1px solid rgba(245,166,35,0.22);
  padding:10px 12px;
  border-radius:999px;
}
.social-links a:hover{color:var(--dark-orange)}

.map-placeholder{
  margin-top:18px;
  width:100%;
  background:var(--blue);
  border-radius:var(--radius);
  min-height:260px;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  font-weight:900;
  padding:18px;
}

/* ─── Kontakt-Seite: wie Buchen-Formular, kompakte Social-Icons, breite Karte ─── */
.section--kontakt .contact-wrap--split{
  display:grid;
  gap:clamp(28px,3.5vw,40px);
  align-items:stretch;
}
@media (min-width:1024px){
  .section--kontakt .contact-wrap--split{
    grid-template-columns:minmax(210px,0.38fr) minmax(0,0.62fr);
    align-items:stretch;
  }
}
.section--kontakt .contact-card--aside{
  padding:20px 22px;
  display:flex;
  flex-direction:column;
  min-height:0;
  height:100%;
  box-sizing:border-box;
}
.section--kontakt .form-wrap--kontakt-main{
  max-width:none;
  margin:0;
  width:100%;
  height:100%;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  min-height:0;
  padding:clamp(26px,3.2vw,40px) clamp(26px,3.5vw,44px);
  background:var(--light-grey);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:none;
}
.section--kontakt .form-wrap--kontakt-main h2{
  font-family:'Nunito', sans-serif;
  font-weight:900;
  color:var(--dark);
  font-size:clamp(20px, 2.3vw, 30px);
  margin:0 0 14px;
}
.section--kontakt .form-grid--kontakt{
  gap:18px;
}
@media (min-width:768px){
  .section--kontakt .form-grid--kontakt{
    gap:22px;
  }
}
.section--kontakt .form-wrap--kontakt-main input,
.section--kontakt .form-wrap--kontakt-main textarea{
  padding:14px 18px;
  font-size:1.06rem;
  min-height:58px;
  box-sizing:border-box;
  border-radius:12px;
  border:2px solid rgba(245,166,35,0.35);
}
.section--kontakt .form-wrap--kontakt-main textarea{
  min-height:260px;
  line-height:1.6;
  resize:vertical;
}
.section--kontakt .form-wrap--kontakt-main .field label{
  display:block;
  font-weight:900;
  color:var(--dark-grey);
  font-size:15px;
  margin-bottom:10px;
}
.section--kontakt .form-actions--kontakt{
  margin-top:22px;
}
.section--kontakt .form-actions--kontakt .btn--wide{
  padding:14px 20px;
  font-size:1.05rem;
  font-weight:900;
  border-radius:14px;
}

.section--kontakt .kontakt-form .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}
@media (max-width:640px){
  .section--kontakt .kontakt-form .form-row{
    grid-template-columns:1fr;
  }
}
.section--kontakt .form-wrap--kontakt-main .form-group label{
  display:block;
  font-weight:900;
  color:var(--dark-grey);
  font-size:15px;
  margin-bottom:10px;
}
.section--kontakt .form-wrap--kontakt-main .form-group{
  margin-bottom:18px;
}
.section--kontakt .form-wrap--kontakt-main .form-row .form-group{
  margin-bottom:0;
}

.section--kontakt .form-erfolg{
  background:#eafaf1;
  border:2px solid #27ae60;
  border-radius:10px;
  padding:16px 20px;
  color:#1e8449;
  font-weight:700;
  margin-bottom:16px;
}
.section--kontakt .form-fehler{
  background:#fdedec;
  border:2px solid #e74c3c;
  border-radius:10px;
  padding:16px 20px;
  color:#c0392b;
  font-weight:700;
  margin-bottom:16px;
}
.section--kontakt .form-fehler a{
  color:inherit;
  font-weight:800;
  text-decoration:underline;
}
.section--kontakt .kontakt-form .btn-submit{
  width:100%;
  padding:16px;
  font-size:1.05rem;
  cursor:pointer;
  transition:background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.section--kontakt .kontakt-form .btn-submit:disabled{
  opacity:0.7;
  cursor:not-allowed;
}
.section--kontakt .kontakt-form textarea{
  width:100%;
  min-height:140px;
  padding:12px 14px;
  border:1.5px solid #ddd;
  border-radius:10px;
  font-size:0.95rem;
  font-family:inherit;
  resize:vertical;
  transition:border-color 0.2s;
  box-sizing:border-box;
}
.section--kontakt .kontakt-form textarea:focus{
  outline:none;
  border-color:#f5a623;
}

/* Social: Feather-Icons, eine Akzentfarbe, keine Liste */
.section--kontakt .social-icon-row{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:center;
  gap:12px;
  margin-top:16px;
  max-width:100%;
}
.section--kontakt .social-icon{
  box-sizing:border-box;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  min-width:42px;
  min-height:42px;
  padding:0;
  border-radius:999px;
  text-decoration:none;
  font-size:0;
  line-height:0;
  color:var(--dark-orange);
  background:var(--white);
  border:1px solid rgba(212,136,26,0.35);
  box-shadow:0 2px 8px rgba(0,0,0,0.06);
  transition:background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.section--kontakt .social-icon:hover{
  background:rgba(245,166,35,0.12);
  border-color:var(--orange);
  color:var(--dark);
  box-shadow:0 4px 16px rgba(0,0,0,0.08);
  transform:translateY(-2px);
}
.section--kontakt .social-icon:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:3px;
}
.section--kontakt .social-icon svg{
  width:22px !important;
  height:22px !important;
  max-width:22px !important;
  max-height:22px !important;
  min-width:22px;
  min-height:22px;
  flex-shrink:0;
  display:block;
  stroke:currentColor;
  fill:none;
  stroke-width:1.85;
  stroke-linecap:round;
  stroke-linejoin:round;
  pointer-events:none;
}

/* ─── Kontakt: Kartenbereich (volle Containerbreite, hohe Desktop-Ansicht) ─── */
.section--kontakt-map{
  padding-top:48px;
  padding-bottom:72px;
  background:#FAFAFA;
  border-top:1px solid rgba(0,0,0,0.06);
}
.section--kontakt-map .container{
  max-width:var(--container);
}
.section--kontakt-map .region-map{
  margin:0;
  width:100%;
  max-width:100%;
}
.section--kontakt-map .region-map__intro{
  margin-bottom:20px;
  max-width:640px;
}
.section--kontakt-map .region-map__title{
  font-family:'Nunito',sans-serif;
  font-weight:900;
  color:var(--dark);
  font-size:clamp(1.2rem,2.1vw,1.6rem);
  margin:0 0 8px;
}
.section--kontakt-map .region-map__lead{
  margin:0;
  color:var(--mid-grey);
  font-weight:700;
  font-size:1.02rem;
  line-height:1.6;
}
.section--kontakt-map .region-map__embed{
  position:relative;
  display:block;
  width:100%;
  max-width:100%;
  margin:0;
  padding:0;
  height:480px;
  min-height:420px;
  max-height:500px;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,0.06);
  background:#cfd6df;
}
@media (max-width:768px){
  .section--kontakt-map .region-map__embed{
    height:auto;
    min-height:340px;
    max-height:none;
    aspect-ratio:16/10;
  }
}
@media (max-width:480px){
  .section--kontakt-map .region-map__embed{
    min-height:300px;
    aspect-ratio:4/3;
  }
}
.section--kontakt-map .region-map__embed iframe{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  min-width:100%;
  min-height:100%;
  border:0;
  display:block;
}
.section--kontakt-map .region-map__attr{
  margin:12px 0 0;
  font-size:0.82rem;
  color:var(--mid-grey);
  font-weight:600;
}
.section--kontakt-map .region-map__attr a{
  color:var(--orange);
  font-weight:800;
}

/* Booking page helpers */
.cta-hero{
  background:var(--orange);
  color:var(--white);
  text-align:center;
  padding:70px 0;
}
.cta-hero h1{
  margin:0 0 10px;
  font-family:'Nunito', sans-serif;
  font-weight:1000;
  font-size:clamp(28px, 3vw, 44px);
}
.cta-hero p{
  margin:0 auto;
  max-width:820px;
  font-weight:700;
  line-height:1.7;
  color:rgba(255,255,255,0.96);
}
.icon-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin:18px auto 12px;
  max-width:900px;
}
.info-box{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.info-box .ico{
  color:var(--orange);
  margin-top:2px;
  flex-shrink:0;
}
.info-box .ico svg{width:22px;height:22px;stroke:var(--orange)}
.info-box b{
  display:block;
  color:var(--dark);
  font-family:'Nunito', sans-serif;
  font-weight:900;
}
.info-box span{
  color:var(--dark-grey);
  font-weight:700;
  line-height:1.6;
}
@media (min-width:768px){
  .icon-grid{grid-template-columns:repeat(3, minmax(0,1fr))}
}

/* Footer */
footer.site-footer{
  background-color:#FFFFFF !important;
  border-top:2px solid #F0F0F0;
  color:#333333 !important;
  padding:60px 0 30px;
}
footer .footer-top{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
}
@media (min-width:1024px){
  footer .footer-top{grid-template-columns:1.2fr 1fr 1fr; align-items:flex-start}
}
.footer-brand{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-brand .brand{
  gap:10px;
}
footer img:first-child,
.footer-brand img{height:70px;width:auto}
.footer-brand .tagline{
  font-weight:600;
  color:#555555 !important;
  line-height:1.6;
}
.social-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.social-row a{
  color:#555555 !important;
  text-decoration:none;
  font-weight:700;
}
.social-row a:hover{color:var(--orange) !important}
/* Footer: Instagram als Feather-Icon (gleiches Erscheinungsbild wie Kontakt-Social, kompakt) */
.site-footer .social-row a.footer-social-icon{
  color:var(--dark-orange) !important;
  font-weight:800;
}
.site-footer .footer-social-icon{
  box-sizing:border-box;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  min-width:42px;
  min-height:42px;
  padding:0;
  border-radius:999px;
  text-decoration:none;
  font-size:0;
  line-height:0;
  color:var(--dark-orange);
  background:var(--white);
  border:1px solid rgba(212,136,26,0.35);
  box-shadow:0 2px 8px rgba(0,0,0,0.06);
  transition:background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.site-footer .social-row a.footer-social-icon:hover{
  color:var(--dark) !important;
}
.site-footer .footer-social-icon:hover{
  background:rgba(245,166,35,0.12);
  border-color:var(--orange);
  color:var(--dark);
  box-shadow:0 4px 16px rgba(0,0,0,0.08);
  transform:translateY(-2px);
}
.site-footer .footer-social-icon:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:3px;
}
.site-footer .footer-social-icon svg{
  width:22px !important;
  height:22px !important;
  max-width:22px !important;
  max-height:22px !important;
  min-width:22px;
  min-height:22px;
  flex-shrink:0;
  display:block;
  stroke:currentColor;
  pointer-events:none;
}

.footer-col h3{
  margin:0 0 12px;
  font-weight:800;
  color:#1A1A1A !important;
  font-size:15px;
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a,
.footer-links p,
.footer-links li{
  color:#555555 !important;
  font-weight:600;
}
.footer-links a{
  text-decoration:none;
}
.footer-links a:hover{color:var(--orange) !important}

.footer-kontakt-link{
  display:flex;
  align-items:center;
  gap:8px;
  color:#555555;
  text-decoration:none;
  font-weight:600;
  font-size:0.95rem;
  transition:color 0.2s ease;
}
.footer-kontakt-link:hover{
  color:#F5A623 !important;
}
.footer-kontakt-link svg{
  width:16px;
  height:16px;
  flex-shrink:0;
  stroke:var(--orange);
}

.contact-line{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#555555 !important;
  font-weight:600;
}
.contact-line svg{
  width:18px;
  height:18px;
  flex-shrink:0;
  stroke:var(--orange);
  margin-top:3px;
}

.footer-bottom{
  margin-top:40px;
  border-top:1px solid #EEEEEE;
  padding:20px 0 0;
  color:#999999 !important;
  background:transparent !important;
}
.footer-bottom .bottom-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  font-weight:600;
  font-size:13px;
}
.footer-bottom a{
  color:#999999 !important;
  text-decoration:none;
  font-weight:700;
}
.footer-bottom a:hover{color:var(--orange) !important}
@media (max-width:768px){
  footer.site-footer{padding:40px 0 20px}
}

/* Page-specific CTA */
.cta-section,
section.cta-section,
#cta{
  background:linear-gradient(135deg, #F5A623 0%, #D4881A 60%, #1A1A1A 100%);
  padding:140px 0 !important;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:'';
  position:absolute;
  top:-80px;
  right:-80px;
  width:400px;
  height:400px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  pointer-events:none;
}
.cta-section::after{
  content:'';
  position:absolute;
  bottom:-100px;
  left:-60px;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(255,255,255,0.04);
  pointer-events:none;
}
.cta-section .container{position:relative;z-index:1}
.cta-section h2{
  font-size:clamp(2rem,4vw,3.5rem);
  font-weight:900;
  color:#fff;
  margin-bottom:20px;
  text-shadow:0 2px 10px rgba(0,0,0,0.15);
}
.cta-section h2::after{display:none}
.cta-section p{
  font-size:1.25rem;
  color:rgba(255,255,255,0.9);
  max-width:600px;
  margin:0 auto 40px;
  font-weight:600;
}
.cta-badges{
  display:flex;
  justify-content:center;
  gap:24px;
  margin-bottom:40px;
  flex-wrap:wrap;
}
.cta-badge{
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.3);
  border-radius:30px;
  padding:10px 22px;
  color:#fff;
  font-weight:700;
  font-size:0.95rem;
  backdrop-filter:blur(4px);
}
.cta-section .btn-cta,
.cta-section a.btn-primary{
  background:#fff;
  color:#F5A623 !important;
  font-size:1.15rem;
  font-weight:900;
  padding:18px 50px;
  border-radius:50px;
  border:none;
  box-shadow:0 8px 30px rgba(0,0,0,0.2);
  transition:transform .2s, box-shadow .2s;
  display:inline-block;
  text-decoration:none;
}
.cta-section .btn-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 40px rgba(0,0,0,0.25);
}
@media (max-width:768px){
  .cta-section{padding:100px 0 !important}
}

/* Small utilities */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

.content-narrow{
  max-width:800px;
  margin:0 auto;
}

.legal-page h1{
  color:var(--dark);
  margin:0 0 18px;
}
.legal-page h2{
  color:var(--dark);
  margin:24px 0 10px;
  font-size:1.15rem;
}
.legal-page h2::after{display:none}
.legal-page p{
  margin:0 0 12px;
  font-weight:700;
  color:var(--dark-grey);
}
.legal-note{
  font-weight:800 !important;
  color:var(--mid-grey) !important;
  margin-bottom:18px !important;
}

/* Buchung: SumUp-Zahlungsschritte (Overlay) */
.zahlungsOverlay__panel{
  background:#fff;
  border-radius:20px;
  padding:40px;
  max-width:500px;
  width:100%;
  max-height:85vh;
  overflow-y:auto;
  box-shadow:0 18px 48px rgba(0,0,0,0.22);
}
.zahlungsOverlay__title{
  font-size:1.4rem;
  font-weight:900;
  margin:0 0 8px;
  color:#1a1a1a;
  font-family:'Nunito',sans-serif;
}
.zahlungsOverlay__lead{
  color:#666;
  font-size:0.9rem;
  margin:0 0 24px;
  line-height:1.5;
}
.zahlungsOverlay__betrag{
  color:#f5a623;
}
.zahlungsOverlay__hint{
  font-size:0.8rem;
  color:#999;
  text-align:center;
  margin:20px 0 0;
  line-height:1.5;
}
.zahlungsOverlay__close{
  width:100%;
  margin-top:16px;
  padding:12px;
  background:#f5f5f5;
  border:none;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  color:#666;
  font-family:inherit;
  font-size:1rem;
}
.zahlungsOverlay__close:hover{
  background:#eaeaea;
}

.zahl-schritt{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border:2px solid #eee;
  border-radius:12px;
  margin-bottom:10px;
  transition:background 0.3s ease, border-color 0.3s ease;
}
.schritt-num{
  width:32px;
  height:32px;
  background:#f5a623;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:0.9rem;
  flex-shrink:0;
}
.schritt-text{
  flex:1;
  font-weight:600;
  font-size:0.95rem;
  color:#333;
}
.schritt-btn{
  background:#f5a623;
  color:#fff !important;
  padding:8px 16px;
  border-radius:20px;
  text-decoration:none;
  font-weight:800;
  font-size:0.85rem;
  white-space:nowrap;
  transition:background 0.2s ease, color 0.2s ease;
}
.schritt-btn:hover{
  background:#d4881a;
  color:#fff !important;
}

/* ── FAHRANFÄNGER SECTION ────────────────────── */

.fahranfaenger-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

/* Dekorativer Hintergrund-Akzent */
.fahranfaenger-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.06);
  pointer-events: none;
}

.fahranfaenger-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Badge Zeile */
.fa-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fa-badge-neu {
  background: #f5a623;
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.fa-badge-typ {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Headline */
.fa-headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}

.fa-headline span {
  color: #f5a623;
}

.fa-subline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Grid */
.fa-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Text Seite */
.fa-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.fa-text strong {
  color: white;
}

.fa-lernziele-titel {
  color: #f5a623;
  font-size: 1rem;
  font-weight: 800;
  margin: 24px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fa-lernziele {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fa-lernziele li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.fa-lernziele svg {
  width: 18px;
  height: 18px;
  color: #f5a623;
  flex-shrink: 0;
}

.fa-hinweis-box {
  background: rgba(245, 166, 35, 0.12);
  border-left: 4px solid #f5a623;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.fa-fazit {
  color: white !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

.fa-zielgruppe {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.92rem !important;
}

.fa-zielgruppe em {
  color: #f5a623;
  font-style: normal;
  font-weight: 700;
}

/* Preis-Box */
.fa-preis-box {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 110px;
}

.fa-preis-header {
  background: #f5a623;
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 16px 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fa-preis-betrag {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  padding: 24px 24px 4px;
  line-height: 1;
}

.fa-preis-sub {
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
  font-weight: 600;
  padding-bottom: 20px;
}

.fa-inkl {
  padding: 0 24px 20px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

.fa-inkl h4 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #999999;
  letter-spacing: 0.5px;
  margin: 16px 0 12px;
}

.fa-inkl ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fa-inkl li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.5;
}

.fa-inkl svg {
  width: 16px;
  height: 16px;
  color: #27ae60;
  flex-shrink: 0;
  margin-top: 2px;
}

.fa-btn {
  display: block;
  margin: 0 24px 12px;
  text-align: center;
  padding: 16px;
  font-size: 1rem;
}

.fa-kontakt-hinweis {
  text-align: center;
  font-size: 0.8rem;
  color: #999999;
  padding: 0 24px 16px;
  margin: 0;
}

.fa-kontakt-hinweis a {
  color: #f5a623;
  text-decoration: none;
  font-weight: 700;
}

.fa-slogan {
  background: #f5f5f5;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #555555;
  line-height: 1.5;
}

/* ── FAHRANFÄNGER ANIMATIONEN ────────────────── */

/* Scroll-Reveal Basis */
.fa-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Verzögerungen für gestaffeltes Einblenden */
.fa-reveal-delay-1 { transition-delay: 0.1s; }
.fa-reveal-delay-2 { transition-delay: 0.2s; }
.fa-reveal-delay-3 { transition-delay: 0.35s; }
.fa-reveal-delay-4 { transition-delay: 0.5s; }
.fa-reveal-delay-5 { transition-delay: 0.65s; }

/* Scheinwerfer-Licht Effekt im Hintergrund */
.fahranfaenger-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: scheinwerfer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes scheinwerfer {
  0%   { transform: translate(-80%, -60%) scale(1); }
  25%  { transform: translate(-20%, -40%) scale(1.2); }
  50%  { transform: translate(-60%, -50%) scale(0.9); }
  75%  { transform: translate(-30%, -65%) scale(1.1); }
  100% { transform: translate(-80%, -60%) scale(1); }
}

/* NEU Badge Puls verbessern */
.fa-badge-neu {
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 166, 35, 0);
  }
}

/* Preis-Box: sanftes Aufleuchten */
.fa-preis-box {
  animation: preis-glow 4s ease-in-out infinite;
}

@keyframes preis-glow {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 20px 60px rgba(245, 166, 35, 0.25), 0 0 40px rgba(245, 166, 35, 0.1);
  }
}

/* Lernziele: Icon Rotation beim Hover */
.fa-lernziele li:hover svg {
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}

/* Inklusiv Liste: Checkmark Bounce */
.fa-inkl li svg {
  transition: transform 0.3s ease;
}

.fa-inkl li:hover svg {
  transform: scale(1.3);
}

/* Button: Shimmer Effekt */
.fa-btn {
  position: relative;
  overflow: hidden;
}

.fa-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { left: -75%; }
  100% { left: 125%; }
}

/* Headline: Wort für Wort einblenden */
.fa-headline {
  overflow: hidden;
}

.fa-headline-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fa-headline-word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .fahranfaenger-section {
    padding: 80px 40px;
  }
  .fa-grid {
    grid-template-columns: 1fr;
  }
  .fa-preis-box {
    position: static;
  }
}

@media (max-width: 768px) {
  .fahranfaenger-section {
    padding: 60px 20px;
  }
}

/* ── GPX DANKE SEITE ─────────────────────────── */
.gpx-danke {
  padding-top: 120px;
  padding-bottom: 80px;
}

.gpx-danke__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #ececec;
  max-width: 980px;
  margin: 0 auto;
}

.gpx-danke__eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  color: #f5a623;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 14px;
}

.gpx-danke__title {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: #1f1f1f;
  line-height: 1.2;
}

.gpx-danke__subtitle {
  margin: 0 0 24px;
  color: #666;
  font-size: 1rem;
}

.gpx-danke__grid {
  display: grid;
  gap: 12px;
}

.gpx-danke__download {
  width: 100%;
  text-align: left;
}

.gpx-danke__hint {
  margin: 18px 0 0;
  color: #777;
  font-size: 0.92rem;
}

.gpx-danke__hint a {
  color: #f5a623;
  font-weight: 800;
}

.gpx-danke__actions {
  margin-top: 24px;
}

.gpx-danke__no-selection {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff5e6;
  color: #8a5a00;
  font-weight: 700;
}

@media (max-width: 768px) {
  .gpx-danke {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .gpx-danke__card {
    padding: 24px 18px;
  }
}
