/* ============================================================
   Thueringer Waldverein - variante1
   Design: Natur-gruen, frisch und modern
   Schrift: Raleway (lokal eingebunden)
   ============================================================ */

/* CSS-Variablen */
:root {
  --gruen-dunkel: #2d5a27;
  --gruen-mittel: #4a8c3f;
  --gruen-hell: #6bb56a;
  --gruen-sehr-hell: #e8f5e4;
  --braun: #8b5e3c;
  --creme: #faf7f2;
  --weiss: #ffffff;
  --text-dunkel: #1a2e18;
  --text-mittel: #3d5c39;
  --text-hell: #6b8f66;
  --schatten: rgba(45, 90, 39, 0.15);
  --schatten-stark: rgba(45, 90, 39, 0.3);
  --rand: #c8e4c0;
}

/* Grundeinstellungen */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Raleway', Georgia, serif;
  background-color: var(--creme);
  color: var(--text-dunkel);
  line-height: 1.7;
  font-size: 1rem;
}

/* Bilder responsiv */
img {
  max-width: 100%;
  height: auto;
}

/* Links */
a {
  color: var(--gruen-dunkel);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--gruen-hell);
  text-decoration: underline;
}

/* Fokus fuer Barrierefreiheit */
:focus-visible {
  outline: 3px solid var(--gruen-hell);
  outline-offset: 2px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(45, 90, 39, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--schatten-stark);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--weiss);
}

.site-logo img {
  width: 4rem;
  height: 4rem;
 // border-radius: 50%;
 // border: 2px solid rgba(255,255,255,0.4);
  //object-fit: contain;
 // background: var(--weiss);
  //padding: 3px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--weiss);
}

.logo-claim {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hauptnavigation */
.hauptnavi {
  display: flex;
  align-items: center;
}

.nav-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}

.nav-liste > li {
  position: relative;
}

.nav-liste > li > a {
  display: block;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-liste > li > a:hover,
.nav-liste > li > a:focus {
  background: rgba(255,255,255,0.15);
  color: var(--weiss);
  text-decoration: none;
}

/* Dropdown-Menue */
.hat-dropdown > a::after {
  content: " \25be";
  font-size: 0.75rem;
}

.dropdown-menue {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--weiss);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 8px 32px var(--schatten-stark);
  border: 1px solid var(--rand);
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  z-index: 200;
}

.hat-dropdown:hover > .dropdown-menue,
.hat-dropdown:focus-within > .dropdown-menue {
  display: block;
  animation: einfaden 0.2s ease;
}

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

.dropdown-menue li a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--text-mittel);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.dropdown-menue li a:hover,
.dropdown-menue li a:focus {
  background: var(--gruen-sehr-hell);
  color: var(--gruen-dunkel);
  text-decoration: none;
}

/* Burger-Button (Mobile) */
.burger-btn {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--weiss);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  line-height: 1;
  transition: all 0.2s;
}

.burger-btn:hover,
.burger-btn:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--weiss);
}

/* ============================================================
   HERO-BEREICH
   ============================================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 4.5rem;
}

.hero-bild {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero-inhalt {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--weiss);
}

.hero-badge {
  display: inline-block;
  background: rgba(107, 181, 106, 0.3);
  border: 1px solid rgba(107, 181, 106, 0.6);
  color: #a8d5a2;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  max-width: 780px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-beschreibung {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-aktionen {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primaer {
  background: var(--gruen-hell);
  color: var(--weiss);
  border-color: var(--gruen-hell);
}

.btn-primaer:hover,
.btn-primaer:focus {
  background: var(--gruen-mittel);
  border-color: var(--gruen-mittel);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--schatten);
  text-decoration: none;
  color: var(--weiss);
}

.btn-sekundaer {
  background: transparent;
  color: var(--weiss);
  border-color: rgba(255,255,255,0.6);
}

.btn-sekundaer:hover,
.btn-sekundaer:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--weiss);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--weiss);
}

.btn-dunkel {
  background: var(--gruen-dunkel);
  color: var(--weiss);
  border-color: var(--gruen-dunkel);
}

.btn-dunkel:hover,
.btn-dunkel:focus {
  background: var(--text-dunkel);
  border-color: var(--text-dunkel);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--schatten);
  text-decoration: none;
  color: var(--weiss);
}

/* ============================================================
   HAUPTINHALT - SEKTIONEN
   ============================================================ */

main {
  /* Kein padding-top noetig, hero hat margin-top */
}

.sektion {
  padding: 5rem 1.5rem;
}

.sektion-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Sektion-Hintergruende */
.sektion-weiss  { background: var(--weiss); }
.sektion-creme  { background: var(--creme); }
.sektion-gruen  { background: var(--gruen-sehr-hell); }
.sektion-dunkel { background: var(--gruen-dunkel); color: var(--weiss); }

/* Sektion-Kopf */
.sektion-kopf {
  text-align: center;
  margin-bottom: 3rem;
}

.sektion-badge {
  display: inline-block;
  background: var(--gruen-sehr-hell);
  color: var(--gruen-dunkel);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid var(--rand);
}

.sektion-dunkel .sektion-badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--gruen-dunkel);
}

.sektion-dunkel h2 {
  color: var(--weiss);
}

.sektion-untertitel {
  font-size: 1.05rem;
  color: var(--text-hell);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.sektion-dunkel .sektion-untertitel {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   INTRO-BEREICH (Willkommen)
   ============================================================ */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-bild-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px var(--schatten);
}

.intro-bild-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.intro-bild-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(45,90,39,0.9);
  color: var(--weiss);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.intro-text h2 {
  text-align: left;
  margin-bottom: 1.25rem;
}

.intro-text p {
  color: var(--text-mittel);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.intro-text .btn {
  margin-top: 0.75rem;
}

/* ============================================================
   THEMEN-KARTEN (Wandern, Verein, Haeuser...)
   ============================================================ */

.karten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.karte {
  background: var(--weiss);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--schatten);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.karte:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--schatten-stark);
}

.karte-bild {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.karte-inhalt {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.karte-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gruen-sehr-hell);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gruen-dunkel);
  font-size: 1.1rem;
}

.karte h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gruen-dunkel);
  margin: 0 0 0.75rem;
}

.karte p {
  color: var(--text-mittel);
  font-size: 0.95rem;
  flex: 1;
  margin: 0 0 1.25rem;
}

.karte-link {
  color: var(--gruen-mittel);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: color 0.2s;
}

.karte-link:hover {
  color: var(--gruen-dunkel);
  text-decoration: none;
}

/* ============================================================
   ZITAT-BEREICH
   ============================================================ */

.zitat-bereich {
  text-align: center;
  padding: 5rem 1.5rem;
  background: var(--gruen-dunkel);
  color: var(--weiss);
}

.zitat-inhalt {
  max-width: 800px;
  margin: 0 auto;
}

.zitat-text {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1.5rem;
  color: var(--weiss);
}

.zitat-quelle {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* ============================================================
   AKTUELLES (News-Karten)
   ============================================================ */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-karte {
  background: var(--weiss);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--schatten);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.news-karte:hover {
  transform: translateY(-4px);
}

.news-bild {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.news-inhalt {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-datum {
  font-size: 0.8rem;
  color: var(--text-hell);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.news-titel {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gruen-dunkel);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.news-text {
  font-size: 0.9rem;
  color: var(--text-mittel);
  flex: 1;
  margin: 0 0 1rem;
}

.news-mehr {
  color: var(--gruen-mittel);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.news-mehr:hover {
  color: var(--gruen-dunkel);
}

/* ============================================================
   STATISTIK-LEISTE
   ============================================================ */

.statistik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.statistik-zahl {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gruen-hell);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.statistik-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============================================================
   VERANSTALTUNGSKALENDER (Vorschau)
   ============================================================ */

.veranstaltungen-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.veranstaltung-eintrag {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--weiss);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px var(--schatten);
  transition: transform 0.2s ease;
}

.veranstaltung-eintrag:hover {
  transform: translateX(4px);
}

.veranstaltung-datum {
  min-width: 3.5rem;
  text-align: center;
  background: var(--gruen-dunkel);
  color: var(--weiss);
  border-radius: 10px;
  padding: 0.5rem;
  line-height: 1.2;
}

.datum-tag {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.datum-monat {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
}

.veranstaltung-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gruen-dunkel);
  margin: 0 0 0.35rem;
}

.veranstaltung-info p {
  font-size: 0.88rem;
  color: var(--text-hell);
  margin: 0;
}

/* ============================================================
   VEREINSHAUS-TEASER
   ============================================================ */

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

.haus-karte {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--schatten);
}

.haus-karte img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.haus-karte:hover img {
  transform: scale(1.06);
}

.haus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,24,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--weiss);
}

.haus-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.haus-ort {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   KONTAKT-TEASER
   ============================================================ */

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.kontakt-info h2 {
  text-align: left;
}

.kontakt-info p {
  color: var(--text-mittel);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.kontakt-daten {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.kontakt-daten li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-mittel);
  font-size: 1rem;
}

.kontakt-daten li .fa {
  width: 2rem;
  height: 2rem;
  background: var(--gruen-sehr-hell);
  color: var(--gruen-dunkel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  line-height: 2rem;
  text-align: center;
}

.kontakt-karte {
  background: var(--gruen-sehr-hell);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--rand);
}

.kontakt-karte h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gruen-dunkel);
  margin: 0 0 1.5rem;
}

.formular-gruppe {
  margin-bottom: 1.25rem;
}

.formular-gruppe label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mittel);
  margin-bottom: 0.4rem;
}

.formular-gruppe input,
.formular-gruppe textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--rand);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  background: var(--weiss);
  color: var(--text-dunkel);
  transition: border-color 0.2s;
}

.formular-gruppe input:focus,
.formular-gruppe textarea:focus {
  outline: none;
  border-color: var(--gruen-mittel);
  box-shadow: 0 0 0 3px rgba(74,140,63,0.15);
}

.formular-gruppe textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--text-dunkel);
  color: rgba(255,255,255,0.8);
}

.footer-haupt {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-marke img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  padding: 4px;
  margin-bottom: 1rem;
}

.footer-marke p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 280px;
}

.footer-spalte h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--weiss);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1.25rem;
}

.footer-liste {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-liste li {
  margin-bottom: 0.6rem;
}

.footer-liste a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-liste a:hover,
.footer-liste a:focus {
  color: var(--gruen-hell);
  text-decoration: none;
}

.footer-unter {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   SEITENINHALT (Unterseiten)
   ============================================================ */

.seiten-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--gruen-dunkel);
  color: var(--weiss);
  padding: 8rem 1.5rem 4rem;
  margin-top: 4.5rem;
}

.seiten-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 80, 30, 0.72) 0%, rgba(20, 60, 20, 0.80) 100%);
  z-index: 0;
}

.seiten-hero > * {
  position: relative;
  z-index: 1;
}

.seiten-hero h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.seiten-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  font-size: 1.05rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--weiss);
}

.seiten-inhalt {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.seiten-inhalt h2 {
  margin-top: 2.5rem;
}

.seiten-inhalt p {
  color: var(--text-mittel);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

/* ============================================================
   MOBILE NAVIGATION - Overlay
   ============================================================ */

.mobile-navi {
  display: none;
  position: fixed;
  inset: 4.5rem 0 0 0;
  background: rgba(26, 46, 24, 0.98);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-navi.aktiv {
  display: block;
}

.mobile-nav-liste {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-liste li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-liste a {
  display: block;
  padding: 1rem 0;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav-liste a:hover,
.mobile-nav-liste a:focus {
  color: var(--gruen-hell);
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-haupt {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-marke {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .hauptnavi {
    display: none;
  }

  .burger-btn {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
  }

  .hero-inhalt {
    padding: 3rem 1.5rem;
  }

  /* Grids */
  .intro-grid,
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Karten */
  .karten-grid {
    grid-template-columns: 1fr;
  }

  /* Statistik */
  .statistik-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer-haupt {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-unter {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sektion {
    padding: 3rem 1rem;
  }

  .hero-aktionen {
    flex-direction: column;
  }

  .statistik-grid {
    grid-template-columns: 1fr;
  }

  .haeuser-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}
