 /*
 * ╔══════════════════════════════════════════════════════════════════════════════════════════╗
 * ║                                                                                          ║
 * ║  ████████╗██╗  ██╗███████╗████████╗ █████╗ ██████╗ ██╗   ██╗ ██████╗                     ║
 * ║     ██╔══╝██║  ██║██╔════╝╚══██╔══╝██╔══██╗██╔══██╗██║   ██║██╔════╝                     ║
 * ║     ██║   ███████║█████╗     ██║   ███████║██████╔╝██║   ██║██║  ███╗                    ║
 * ║     ██║   ██╔══██║██╔══╝     ██║   ██╔══██║██╔══██╗██║   ██║██║   ██║                    ║
 * ║     ██║   ██║  ██║███████╗   ██║   ██║  ██║██████╔╝╚██████╔╝╚██████╔╝                    ║
 * ║     ╚═╝   ╚═╝  ╚═╝╚══════╝   ╚═╝   ╚═╝  ╚═╝╚═════╝  ╚═════╝  ╚═════╝                     ║
 * ║                                                                                          ║
 * ║                                      🐛  v2.7.1                                          ║
 * ║                                                                                          ║
 * ║                        CSS crafted with ❤ love, one bug at a time.                      ║
 * ║                                                                                          ║
 * ║                                                                                          ║
 * ╠══════════════════════════════════════════════════════════════════════════════════════════╣
 * ║                                                                                          ║
 * ║  © 2026 THETABUG — All rights reserved.                                                  ║
 * ║                                                                                          ║
 * ║  This stylesheet and its contents are the intellectual property of                       ║
 * ║  THETABUG . Unauthorized reproduction, distribution,                                     ║
 * ║  or modification of this code, in whole or in part, is strictly prohibited               ║
 * ║  without prior written permission from the author.                                       ║
 * ║                                                                                          ║
 * ║  Permitted use: Personal, educational, and authorized security research only.            ║
 * ║                                                                                          ║
 * ╚══════════════════════════════════════════════════════════════════════════════════════════╝
 *
 * Author:  THETABUG
 * Version: 2.7.1
 * License: All Rights Reserved
 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --farbe-wald-dunkel: #1a3a2a;
  --farbe-wald-mittel: #2d5a3d;
  --farbe-wald-hell: #3d7a52;
  --farbe-gold: #c8961a;
  --farbe-gold-hell: #e8b830;
  --farbe-creme: #f9f5ec;
  --farbe-text-dunkel: #111a14;
  --farbe-text: #2c3e30;
  --farbe-text-dezent: #607060;
  --farbe-linie: #e7dfcb;
  --schatten-karte: 0 10px 24px rgba(17, 26, 20, 0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: var(--farbe-creme);
  color: var(--farbe-text);
  line-height: 1.6;
  margin: 0;
}

a {
  color: inherit;
}

/* =========================================
   NAVIGATION
   V71: schlanke Desktop-Navbar als Standard.
   Dropdown startet tiefer an der goldenen Linie; keine Scroll-Shrink-Transition beim Erstladen.
   Mobile Burger-Navigation bleibt eigenstaendig.
========================================= */

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 300;
  overflow: visible;
  background: rgba(10, 18, 12, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

nav::after {
  content: "";
  position: absolute;
  left: 7.25rem;
  right: 1rem;
  bottom: 0;
  z-index: 1;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 150, 26, 0.22) 10%,
    rgba(232, 184, 48, 0.88) 50%,
    rgba(200, 150, 26, 0.22) 90%,
    transparent 100%
  );
  box-shadow: 0 1px 8px rgba(232, 184, 48, 0.22);
}

.hauptnavigation-logo,
.hauptnavigation-linkliste,
.hauptnavigation-menueschalter {
  position: relative;
  z-index: 2;
}

.hauptnavigation-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  white-space: nowrap;
}

.hauptnavigation-logo-bild {
  width: 92px;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  position: relative;
  top: 18px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.hauptnavigation-logo-text {
  font-family: "Playfair Display", serif;
  color: var(--farbe-gold-hell);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-top: -4px;
}

.hauptnavigation-linkliste {
  display: none;
  list-style: none;
  align-items: center;
}

.hauptnavigation-linkliste a,
.mobile-hauptnavigation a {
  position: relative;
  color: var(--farbe-gold-hell);
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(200, 150, 26, 0.08);
  transition: color 0.2s ease, background 0.2s ease, text-shadow 0.2s ease;
}

.hauptnavigation-linkliste a::before,
.mobile-hauptnavigation a::before {
  content: "";
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background-image: var(--ssgh-nav-fadenkreuz-symbol);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 6px rgba(232, 184, 48, 0.28));
}

.hauptnavigation-linkliste a:hover,
.hauptnavigation-linkliste a:focus,
.hauptnavigation-linkliste a:focus-visible,
.hauptnavigation-linkliste a.active:hover,
.hauptnavigation-linkliste a.active:focus,
.hauptnavigation-linkliste a.active:focus-visible,
.mobile-hauptnavigation a:hover,
.mobile-hauptnavigation a:focus,
.mobile-hauptnavigation a:focus-visible,
.mobile-hauptnavigation a.active:hover,
.mobile-hauptnavigation a.active:focus,
.mobile-hauptnavigation a.active:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}

.hauptnavigation-linkliste a:hover::before,
.hauptnavigation-linkliste a:focus::before,
.hauptnavigation-linkliste a:focus-visible::before,
.hauptnavigation-linkliste a.active:hover::before,
.hauptnavigation-linkliste a.active:focus::before,
.hauptnavigation-linkliste a.active:focus-visible::before,
.mobile-hauptnavigation a:hover::before,
.mobile-hauptnavigation a:focus::before,
.mobile-hauptnavigation a:focus-visible::before,
.mobile-hauptnavigation a.active:hover::before,
.mobile-hauptnavigation a.active:focus::before,
.mobile-hauptnavigation a.active:focus-visible::before {
  opacity: 1;
}

.hauptnavigation-menueschalter {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hauptnavigation-menueschalter span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hauptnavigation-menueschalter.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hauptnavigation-menueschalter.active span:nth-child(2) {
  opacity: 0;
}

.hauptnavigation-menueschalter.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-hauptnavigation {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  background: rgba(17, 26, 20, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-hauptnavigation.open {
  display: flex;
}

.mobile-hauptnavigation a {
  padding: 1rem 1.25rem 1rem calc(2.66rem + 10px);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-hauptnavigation a::before {
  left: 1.2rem;
  top: 50%;
  width: 1.46rem;
  height: 1.56rem;
  transform: translateY(-50%) scale(0.82);
}

.mobile-hauptnavigation a:hover,
.mobile-hauptnavigation a:focus,
.mobile-hauptnavigation a:focus-visible,
.mobile-hauptnavigation a.active:hover,
.mobile-hauptnavigation a.active:focus,
.mobile-hauptnavigation a.active:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}

.mobile-hauptnavigation a:hover::before,
.mobile-hauptnavigation a:focus::before,
.mobile-hauptnavigation a:focus-visible::before,
.mobile-hauptnavigation a.active:hover::before,
.mobile-hauptnavigation a.active:focus::before,
.mobile-hauptnavigation a.active:focus-visible::before {
  transform: translateY(-50%) scale(1);
}

.hauptnavigation-dropdown {
  display: none;
}

@media (min-width: 1401px) {
  nav {
    --ssgh-navbar-seitenabstand: clamp(5rem, calc((100vw - 1370px) / 2), 18rem);
    position: fixed;
    min-height: 58px;
    padding-left: var(--ssgh-navbar-seitenabstand);
    padding-right: var(--ssgh-navbar-seitenabstand);
    background: linear-gradient(
      180deg,
      rgba(10, 18, 12, 0.82) 0%,
      rgba(17, 26, 20, 0.74) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }

  nav::after {
    left: calc(var(--ssgh-navbar-seitenabstand) + clamp(9.5rem, 10.5vw, 12.75rem));
    right: var(--ssgh-navbar-seitenabstand);
  }

  .hauptnavigation-logo {
    gap: 0.55rem;
  }

  .hauptnavigation-logo-bild {
    width: 84px;
    top: 6px;
    filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.24));
  }

  .hauptnavigation-logo-text {
    font-size: 0.98rem;
    margin-top: -3px;
  }

  .hauptnavigation-menueschalter,
  .mobile-hauptnavigation {
    display: none;
  }

  .hauptnavigation-linkliste {
    display: flex;
    align-self: stretch;
    gap: clamp(1.7rem, 2.25vw, 3rem);
  }

  .hauptnavigation-linkliste > li {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
    height: 100%;
  }

  .hauptnavigation-linkliste a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s ease, text-shadow 0.2s ease;
  }

  .hauptnavigation-linkliste a::before {
    left: calc(-1.22rem - 5px);
    top: calc(50% - 2px);
    width: 1.22rem;
    height: 1.31rem;
    transform: translateY(-50%) scale(0.82);
  }

  .hauptnavigation-linkliste a:hover::before,
  .hauptnavigation-linkliste a:focus::before,
  .hauptnavigation-linkliste a:focus-visible::before,
  .hauptnavigation-linkliste a.active:hover::before,
  .hauptnavigation-linkliste a.active:focus::before,
  .hauptnavigation-linkliste a.active:focus-visible::before {
    transform: translateY(-50%) scale(1);
  }

  .hauptnavigation-dropdown {
    display: flex;
    z-index: 365;
  }

  .hauptnavigation-dropdown-ausloeser {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
  }

  .hauptnavigation-dropdown-ausloeser::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    margin-left: 0.12rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transform-origin: center;
    opacity: 0.85;
    transition: transform 180ms ease-in-out, opacity 180ms ease-in-out;
  }

  .hauptnavigation-dropdown:hover .hauptnavigation-dropdown-ausloeser,
  .hauptnavigation-dropdown:focus-within .hauptnavigation-dropdown-ausloeser {
    color: #ffffff;
  }

  .hauptnavigation-dropdown:hover .hauptnavigation-dropdown-ausloeser::after,
  .hauptnavigation-dropdown:focus-within .hauptnavigation-dropdown-ausloeser::after {
    opacity: 1;
    transform: rotate(225deg) translateY(-1px);
  }

  .hauptnavigation-untermenue {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 13.5rem;
    list-style: none;
    display: block;
    padding: 0.58rem;
    margin: 0;
    border: 1px solid rgba(200, 150, 26, 0.34);
    border-top: 1px solid rgba(232, 184, 48, 0.62);
    border-radius: 0 0 12px 12px;
    background: linear-gradient(
      180deg,
      rgba(10, 18, 12, 0.96) 0%,
      rgba(17, 26, 20, 0.92) 100%
    );
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 180ms ease-in-out, transform 180ms ease-in-out, visibility 180ms ease-in-out;
    z-index: 370;
  }

  .hauptnavigation-untermenue::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.85rem;
    height: 0.85rem;
  }

  .hauptnavigation-dropdown:hover .hauptnavigation-untermenue,
  .hauptnavigation-dropdown:focus-within .hauptnavigation-untermenue {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .hauptnavigation-linkliste .hauptnavigation-untermenue li {
    display: block;
  }

  .hauptnavigation-linkliste .hauptnavigation-untermenue a {
    position: relative;
    display: block;
    padding: 0.62rem 0.8rem 0.62rem 2.1rem;
    border-radius: 7px;
    color: var(--farbe-gold-hell);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    line-height: 1.25;
    white-space: nowrap;
  }

  .hauptnavigation-linkliste .hauptnavigation-untermenue a::before {
    left: 0.58rem;
    top: 50%;
    width: 1.02rem;
    height: 1.1rem;
    transform: translateY(-50%) scale(0.78);
  }

  .hauptnavigation-linkliste .hauptnavigation-untermenue a:hover,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a:focus,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a:focus-visible,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
  }

  .hauptnavigation-linkliste .hauptnavigation-untermenue a:hover::before,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a:focus::before,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a:focus-visible::before,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a.active::before {
    opacity: 1;
    transform: translateY(-50%) scale(0.92);
  }
}

@media (min-width: 1600px) {
  nav {
    --ssgh-navbar-seitenabstand: clamp(12rem, 14.5vw, 17rem);
  }
}

@media (max-width: 700px) {
  .hauptnavigation-logo-bild {
    width: 86px;
  }

  .mobile-hauptnavigation a {
    padding-left: calc(2.42rem + 10px);
  }

  .mobile-hauptnavigation a::before {
    left: 1.05rem;
    width: 1.37rem;
    height: 1.46rem;
  }
}

/* =========================================
   GOLDENE SEITENTRENNER
========================================= */

body > section + section,
main > section + section {
  position: relative;
}

body > section + section::before,
main > section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  z-index: 5;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 150, 26, 0.18) 8%,
    rgba(232, 184, 48, 0.72) 50%,
    rgba(200, 150, 26, 0.18) 92%,
    transparent 100%
  );
  box-shadow: 0 1px 7px rgba(232, 184, 48, 0.16);
}

@media (max-width: 700px) {
  body > section + section::before,
  main > section + section::before {
    left: 1.2rem;
    right: 1.25rem;
  }
}

.header {
  position: relative;
  min-height: 78vh;
  padding: 9rem 2rem 4.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 26, 20, 0.45), rgba(17, 26, 20, 0.72)),
    url("../../images/hero.jpg") center center / cover no-repeat;
  color: #fff;
}

.header-zielhinweis {
  position: absolute;
  top: 50%;
  right: -70px;
  width: min(42vw, 480px);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.12;
  pointer-events: none;
}

.header-inhalt {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.pfad-navigation {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(232, 184, 48, 0.28);
  background: rgba(17, 26, 20, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  width: fit-content;
}

.pfad-navigation a {
  color: var(--farbe-gold-hell);
  text-decoration: none;
}

.pfad-navigation a:hover {
  text-decoration: underline;
}

.header-hinweisplakette,
.inhaltsbereich-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--farbe-gold-hell);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.header h1,
.inhaltsbereich-titel,
.informationskarte h3,
.logo-karte h3,
.handlungsaufruf-kasten h2 {
  font-family: "Playfair Display", serif;
}

.header h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.header h1 span {
  color: var(--farbe-gold-hell);
}

.header p {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.8;
}

.header-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.schaltflaeche-primaer,
.schaltflaeche-kontur,
.textlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.schaltflaeche-primaer,
.schaltflaeche-kontur {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  border-radius: 3px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.schaltflaeche-primaer {
  background: var(--farbe-gold);
  color: var(--farbe-text-dunkel);
  border: none;
}

.schaltflaeche-primaer:hover {
  background: var(--farbe-gold-hell);
}

.schaltflaeche-kontur {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.schaltflaeche-kontur:hover {
  color: var(--farbe-gold-hell);
  border-color: var(--farbe-gold);
}

.inhaltsbereich-huelle {
  padding: 5rem 2rem;
}

.inhaltsbereich-huelle.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
}

.inhaltsbereich-huelle.tight {
  padding-top: 20;
}

.inhaltsbereich-innen {
  max-width: 1180px;
  margin: 0 auto;
}

.inhaltsbereich-titel {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--farbe-wald-dunkel);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.inhaltsbereich-trenner {
  width: 48px;
  height: 2px;
  background: var(--farbe-gold);
  margin: 1rem 0 1.8rem;
}

.inhaltsbereich-einleitung,
.einleitungstext p,
.informationskarte p,
.logo-karte p,
.handlungsaufruf-kasten p {
  color: var(--farbe-text-dezent);
  font-size: 1.02rem;
  line-height: 1.8;
}

.einleitungsraster {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 3rem;
  align-items: start;
}

.einleitungstext p {
  margin-bottom: 1.15rem;
}

.informationsstapel {
  display: grid;
  gap: 1rem;
}

.informationskarte,
.logo-karte {
  background: #fff;
  border: 1px solid var(--farbe-linie);
  border-radius: 10px;
  box-shadow: var(--schatten-karte);
}

.informationskarte {
  padding: 1.35rem;
}

.informationskarte h3,
.logo-karte h3 {
  color: var(--farbe-wald-dunkel);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.kurzhinweis-plaketten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.kurzhinweis-plaketten span,
.linkressource-markierung {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.kurzhinweis-plaketten span {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(45, 90, 61, 0.12);
  background: rgba(45, 90, 61, 0.05);
  color: var(--farbe-wald-mittel);
}

.logo-laufband-rahmen {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(231, 223, 203, 0.85);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.97));
  box-shadow: var(--schatten-karte);
}

.logo-laufband-rahmen::before,
.logo-laufband-rahmen::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-laufband-rahmen::before {
  left: 0;
  background: linear-gradient(90deg, var(--farbe-creme), rgba(249,245,236,0));
}

.logo-laufband-rahmen::after {
  right: 0;
  background: linear-gradient(270deg, var(--farbe-creme), rgba(249,245,236,0));
}

.logo-laufband-spur {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 1rem;
  animation: marquee 30s linear infinite;
}

.logo-laufband-rahmen:hover .logo-laufband-spur {
  animation-play-state: paused;
}

.logo-laufband-bild {
  width: 188px;
  min-height: 116px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(200, 150, 26, 0.12);
  box-shadow: 0 8px 18px rgba(17, 26, 20, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  flex-shrink: 0;
}

.logo-laufband-bild img {
  max-width: 100%;
  max-height: 82px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-laufband-hinweis {
  color: var(--farbe-text-dezent);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.logo-karten-raster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.logo-karte {
  text-decoration: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.logo-karte:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 150, 26, 0.45);
  box-shadow: 0 16px 30px rgba(17, 26, 20, 0.08);
}

.logo-karte-bild {
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,243,233,0.9));
  border-bottom: 1px solid rgba(231, 223, 203, 0.85);
}

.logo-karte-bild img {
  max-width: 100%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-karte-inhalt {
  padding: 1.3rem;
}

.linkressource-markierung {
  padding: 0.35rem 0.65rem;
  background: rgba(45, 90, 61, 0.08);
  color: var(--farbe-wald-mittel);
  margin-bottom: 0.8rem;
}

.textlink {
  margin-top: 0.85rem;
  color: var(--farbe-wald-dunkel);
  font-weight: 600;
  gap: 0.45rem;
}

.textlink::after {
  content: "→";
  transition: transform 0.2s ease;
}

.logo-karte:hover .textlink::after {
  transform: translateX(3px);
}

.handlungsaufruf-bereich {
  padding: 0 2rem 5rem;
}

.handlungsaufruf-kasten {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--farbe-wald-dunkel);
  color: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 20px 40px rgba(17, 26, 20, 0.12);
}

.handlungsaufruf-kasten h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 0.55rem;
}

.handlungsaufruf-kasten p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
}

footer {
  background: var(--farbe-text-dunkel);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.footer-linkliste {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-linkliste a,
.footer-rechtliches a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-linkliste a:hover,
.footer-linkliste a.active,
.footer-rechtliches a:hover {
  color: var(--farbe-gold-hell);
}

.footer-rechtliches {
  margin-bottom: 1rem;
}

.footer-trenner {
  margin: 0 0.45rem;
}

footer span {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1400px) {
  nav {
    padding: 0 1rem;
    min-height: 72px;
    align-items: center;
    overflow: visible;
  }

  .hauptnavigation-linkliste {
    display: none;
  }

  .hauptnavigation-menueschalter {
    display: inline-flex;
  }

  .hauptnavigation-logo {
    gap: 0.55rem;
  }

  .hauptnavigation-logo-bild {
    width: 92px;
    top: 18px;
  }

  .hauptnavigation-logo-text {
    font-size: 0.95rem;
    margin-top: -4px;
  }

  .mobile-hauptnavigation {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(17, 26, 20, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
    border-radius: 0;
    box-shadow: none;
  }

  .mobile-hauptnavigation.open {
    display: flex;
  }

  .mobile-hauptnavigation a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
  }

  .mobile-hauptnavigation a:hover,
  .mobile-hauptnavigation a.active {
    color: var(--farbe-gold-hell);
    background: rgba(255, 255, 255, 0.03);
  }
}
@media (max-width: 1100px) {
  .einleitungsraster,
  .logo-karten-raster {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .header {
    min-height: auto;
    padding: 8.5rem 1.2rem 3.5rem;
  }

  .header-zielhinweis {
    right: -120px;
    width: 320px;
  }

  .inhaltsbereich-huelle,
  .handlungsaufruf-bereich {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .einleitungsraster,
  .logo-karten-raster {
    grid-template-columns: 1fr;
  }

  .handlungsaufruf-kasten {
    padding: 2rem 1.35rem;
  }

  .logo-laufband-rahmen::before,
  .logo-laufband-rahmen::after {
    width: 45px;
  }

  .logo-laufband-bild {
    width: 160px;
    min-height: 100px;
  }

  .logo-karte-bild {
    min-height: 145px;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 1rem;
    min-height: 72px;
    align-items: center;
    overflow: visible;
  }

  .hauptnavigation-logo {
    gap: 0.55rem;
  }

  .hauptnavigation-logo-bild {
    width: 86px;
    top: 18px;
  }

  .hauptnavigation-logo-text {
    font-size: 0.95rem;
    margin-top: -4px;
  }

  .header h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .header p,
  .inhaltsbereich-einleitung,
  .einleitungstext p,
  .informationskarte p,
  .logo-karte p,
  .handlungsaufruf-kasten p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .schaltflaeche-primaer,
  .schaltflaeche-kontur {
    width: 100%;
  }

  .logo-laufband-spur {
    animation-duration: 36s;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .logo-laufband-spur {
    animation: none;
  }

  .logo-karte,
  .schaltflaeche-primaer,
  .schaltflaeche-kontur,
  .textlink {
    transition: none;
  }
}
