@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&display=swap');

:root {
  /* Grundfarben */
  --farbe-text: #222222;
  --farbe-hintergrund: #ffffff;
  --farbe-akzent: #4a7c2d;           /* Akzentgrün für Buttons etc. */
  --farbe-akzent-dunkel: #2f4e16;
  --farbe-link: #2f4e16;
  --farbe-link-hover: ##210FF3;
  --farbe-fokus: #ffbf47;

  /* Layout */
  --header-h: 72px;
  --shadow: 0 2px 10px rgba(0,0,0,.06);
  --radius: 14px;
  --wrap: min(1100px, 96%);
}

/* -----------------------------------------
   Grundlegende Body-Einstellungen
----------------------------------------- */
body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 1.4rem);
  line-height: 1.7;
  color: var(--farbe-text);

  /* Aquarell-Hintergrund */
  background-image: url("/images/hintergrund-bild.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  body { 
    background-image: none; 
    font-size: clamp(1.2rem, 4.5vw, 1.3rem);
    line-height: 1.7;  
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 1px 1px);
  white-space: nowrap; border: 0;
}
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  position: static !important;
  width: auto; height: auto;
  margin: 0; overflow: visible; clip: auto; white-space: normal;
}

/* -----------------------------------------
   Typografie & Standard-Elemente
----------------------------------------- */
a {
  color: var(--farbe-link);
  text-decoration: underline;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--farbe-link-hover);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-weight: 700;
  color: var(--farbe-akzent-dunkel);
  line-height: 1.3;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}
h1, h2 {
  text-align:center;
  
  hyphens: none;
  }
h1{
  font-size: clamp(1.9rem, 4.5vw, 2rem);
}
h2{
  font-size: clamp(1.5rem, 4.5vw, 1.7rem);
}
h3{
  font-size: clamp(1.3rem, 4.5vw, 1.5rem);
}

/* -----------------------------------------
   Hero / Logo-Bereich
----------------------------------------- */

/* ===========================
   HERO – Seelenhunde
   Variante: Leicht getönte Teal-Karte
=========================== */

:root {
  --wrap: min(1100px, 96%);
  --radius: 20px;
  --shadow: 0 10px 26px rgba(0,0,0,.12);
  --farbe-text: #222;
  --teal-light: #7FB9B6;      /* heller Verlaufston */
  --teal-dark: #5C9E9B;       /* dunkler Verlaufston */
}

/* Hero-Container */
.hero {
  width: var(--wrap);
  margin: 32px auto 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}

.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 32px;
  max-width: 640px;
  background: #ffffff;
  border: 1px solid #ABABAB;
  border-radius: clamp(16px, 2vw, 24px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px); /* Glas- bzw. Tiefenwirkung */
  margin-top: 3rem;
}


/* Passepartout fürs Logo */
.logo-card img {
  display: block;
  width: clamp(150px, 18vw, 190px);
  height: auto;
  padding: 8px;
  background: #222222;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
}

/* Haupttitel */
.hero h1 {
  margin: 6px 0 2px;
  line-height: 1.15;
  font-weight: 700;
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 2.8rem);
  color: #103C3B; /* etwas dunkler als Kartenfarbe, für Kontrast */
  letter-spacing: 0.2px;
}

/* Untertitel */
.hero .subtitle {
  margin: 0;
  line-height: 1.35;
  font-size: clamp(1.2rem, 1rem + 0.4vw, 1.28rem);
  color: #222222; 
  opacity: 0.95;
}

/* Mehr Luft zur nächsten Sektion */
.hero + .section {
  margin-top: 10px;
}

/* ============ Responsive Feinschliff ============ */
@media (max-width: 820px) {
  .hero { margin: 26px auto 20px; }
  .logo-card { padding: 22px 24px; gap: 10px; }
}

@media (max-width: 600px) {
  .hero { margin: 22px auto 18px; }

  .logo-card {
    padding: 18px 20px;
    gap: 10px;
    border-radius: 18px;
  }
  .logo-card img {
    width: clamp(132px, 26vw, 160px);
    padding: 6px;
  }
}


/* -----------------------------------------
   Buttons
----------------------------------------- */

/* Zentrierter Button-Container */
.button-wrapper {
  text-align: center;
  margin-top: 1.8rem;
}

/* Einheitlicher Button-Stil */
.button-primary {
  display: inline-block;
  background-color: #ffffff;           /* Weißer Hintergrund */
  color: #000000;                      /* Schwarze Schrift für maximalen Kontrast */
  border: 3px solid #2E3820;           /* Dunkelgrüne Umrandung */
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 0.8em 1.4em;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-size: clamp(0.95rem, 2.3vw, 1.1rem);
  line-height: 1.4;

  /* Einheitliche Breite */
  width: 220px;                        /* feste Breite für Konsistenz */
  max-width: 90%;                      /* bricht auf kleineren Screens nicht um */
  box-sizing: border-box;
}

/* Hover: grün gefüllt, weißer Text */
.button-primary:hover,
.button-primary:focus-visible {
  background-color: #2E3820;           /* Dunkelgrün */
  color: #ffffff;                      /* Weißer Text */
  border-color: #ffffff;
  text-decoration: none;
}

/* Aktiver Zustand */
.button-primary:active {
  background-color: #1c2414;           /* dunkleres Grün */
  transform: scale(0.98);
}

/* Tastaturfokus */
.button-primary:focus-visible {
  outline: 3px solid #ffbf47;          /* Gelber Fokus-Ring */
  outline-offset: 3px;
}

/* Responsiv – Buttons breiter auf kleinen Geräten */
@media (max-width: 600px) {
  .button-primary {
    width: 100%;                       /* auf mobilen Geräten volle Breite */
    max-width: 320px;                  /* optisch nicht zu groß */
    font-size: clamp(1.1rem, 4.5vw, 1.25rem);
    padding: 0.9em 1.3em;
  }
}



/* -----------------------------------------
   Barrierefreiheit & Fokus
----------------------------------------- */
:focus-visible {
  outline: 3px solid var(--farbe-fokus);
  outline-offset: 3px;
}

/* -----------------------------------------
   Responsives Verhalten
----------------------------------------- */
@media (max-width: 700px) {
  .hero { margin-top: 30px; }
  .logo-card { padding: 16px 20px; }
  .box { padding: 20px; }
}


main {
  max-width: 60ch;
  margin: 0 auto;
  padding: 1em;
  hyphens: auto;
  text-align: left;
}
@media (max-width: 820px) {
  main{padding:0.2em;}
  
}
main img {
  height: auto;  
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Deutlichere Links nur im main-Bereich */
main a {
  color: rgba(37,14,193,1.00);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(47, 78, 22, 0.4);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

main a:hover,
main a:focus-visible {
  color: #1a310c;
  text-decoration-color: #1a310c;
  outline: 3px solid #e0a61e;
}
:target {
  scroll-margin-top: 140px;
}

.themen-rahmen {
  background-color: #ffffff;
  padding: 20px;
  margin: 20px auto;
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  border-color: #A2A2A2;
  border-style: solid;
}

/* Einzelbox innerhalb Rahmen */
.themen-box {
  background-color: transparent;
  padding: 0 1rem 0 ;
  margin: 20px auto;
  box-sizing: border-box;

}
.themen-box img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.themen-box p {
  line-height: 1.7;
}

@media (max-width: 768px) {
  .themen-rahmen {
    max-width: 100%;
    
  }
  .themen-box img {
    width: 100%;
}
  .themen-box p {
  line-height: 1.7;
  font-size: clamp(1.3rem, 4.5vw, 1.4rem);
  }
}

/* ueberschrift in Box */
.themen-box h2 {
  text-align: center;
  
  margin-bottom: 1em;
}
/* Zweispaltiges Layout für die Themenboxen (nur Desktop) */
.themen-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:2rem;                         /* Abstand zwischen den Boxen */
  margin: 0 auto 2rem;  
}
.themen-container .themen-box h2{
  font-size:1.5rem;
}

/* .themen-rahmen: als Spalte verwenden */
.themen-container .themen-rahmen{
  flex: 1 1 46%;                      /* zwei Spalten */
  max-width: 560px;                   /* Boxen nicht zu breit werden lassen */
  margin: 0;                          /* überschreibt dein margin aus .themen-rahmen */
  
  
}

/* Inhalt bleibt wie bei dir; optional leichtes Feintuning */
.themen-container .themen-box{
  width: 100%;
  max-width: none; 
  background-color: transparent;
}

/* Bilder in Boxen: etwas größer als 33% wirkt oft harmonischer in 2 Spalten */
.themen-container .themen-box img{
  width: 60%;
}

/* Responsiv: ab 900px und kleiner wieder untereinander */
@media (max-width: 900px){
  .themen-container{
    flex-direction:column;
    gap:1.5rem;
  }
  .themen-container .themen-rahmen{
    flex: 1 1 100%;
    max-width: 100%;
  }
  .themen-container .themen-box img{
    width: 100%;
  }
}
/* Skip-Link sichtbar beim Fokussieren */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #ffffff;
  color: #000;
  padding: .6rem 1rem;
  border: 2px solid #2E3820;
  border-radius: 8px;
  z-index: 3000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  outline: 3px solid #222222;
  outline-offset: 2px;
}

/* generischer, gut sichtbarer Tastaturfokus */
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid #222222;
  outline-offset: 3px;
  border-radius: 8px;
}
.section-kicker{
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1em;
  font-weight: 600;
}
/* ============================================
   SCREENREADER- UND TASTATURBARRIEREFREIHEIT
   ============================================ */

/* --- 1) Screenreader-sichbare, visuell versteckte Inhalte --- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 1px 1px);
  white-space: nowrap; /* kein Zeilenumbruch */
  border: 0;
}

/* Falls ein Element mit .visually-hidden Fokus bekommen darf 
   (z. B. Skip-Link): wieder sichtbar machen, wenn fokussiert */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  position: static !important;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* --- 2) Skip-Link (“Direkt zum Inhalt springen”) --- */
a.visually-hidden.focusable {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border: 2px solid #000;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 10000;
}

/* Positioniere den Skip-Link, wenn sichtbar */
a.visually-hidden.focusable:focus {
  position: absolute !important;
  top: 1rem;
  left: 1rem;
}

/* --- 3) Fokus-Stile für Tastaturnutzer allgemein --- */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* Optional: Für Buttons im Design anpassen */
.button-primary:focus {
  outline: 3px solid #000;
  outline-offset: 4px;
  border-radius: 0.5rem;
}
/* Hero-Box optisch ansprechend und lesbar */
.title-hero {
  background-color: #f5f5f5; /* hoher Kontrast möglich */
  padding: 2rem 1rem;
  text-align: center;
  role: region;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  border-color: #A2A2A2;
  border-style: solid;
  hyphens: none;
}

.title-box {
  max-width: 900px;
  margin: 0 auto;
}

.title-box h1 {
  font-size: 1.8rem;
  line-height: 1.3;
  color: #222;
  margin-bottom: 0.5rem;
}

.title-box .subtitle {
  font-size: 1.1rem;
  color: #444;
  margin: 0;
}

.hintergrund-gruen-verlauf{
  background: linear-gradient(180deg, var(--menu-blue1) 0%, var(--menu-blue2) 100%);
  box-shadow: var(--shadow-1);
  color:#white !important;
}
section.hintergrund-gruen-verlauf .themen-box h1,
section.hintergrund-gruen-verlauf .themen-box h2{
  color: #2D2D2D;
}

/* Grundlayout */
.bildreihe {
  padding: 2rem 0;
}

.bildreihe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Bilder gleich groß! */
.bildreihe-item img {
  width: 100%;
  height: 280px;             /* Einheitliche Höhe */
  object-fit: cover;         /* Bild schneidet gleichmäßig */
  border-radius: 14px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Bildunterschriften */
.bildreihe-item figcaption {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #444;
  font-style: italic;
}

/* Desktop: 2 Spalten */
@media (min-width: 768px) {
  .bildreihe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bildreihe-item img {
    height: 320px;           /* Desktop höher */
  }
}
/* Lina: Welpenbild mobil größer anzeigen */
@media (max-width: 768px) {
  .themen-box img.lina-welpe-bild {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    display: block;
  }
}

  /* ================ Sprach-Umschalter (Icon + Text oben rechts) ================ */

/* Container oben rechts – Position ggf. an Menü-Höhe anpassen */

  /* Container oben rechts unter dem Menü */
  .lang-floating {
    position: fixed;
    right: 1.25rem;
    top: 6rem; /* ggf. an deine Menü-Höhe anpassen */
    z-index: 999;
    font-size: 0.9rem;
    font-family: inherit;
  }

  /* Hauptbutton: Icon + Text */
  .lang-fab {
    border: none;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    background: #137064;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    height: auto;
    width: auto;

  }

  .lang-fab img {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
  }

  .lang-active-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
  }

  .lang-fab:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
  }

  /* Panel mit den beiden Auswahl-Buttons */
  .lang-fab-panel {
    position: absolute;
    right: 0;
    margin-top: 0.5rem;
    min-width: 13rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }

  .lang-fab-title {
    margin: 0 0 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: #137064;
  }

  .lang-btn {
    display: block;
    width: 100%;
    text-align: left;
    border: 1px solid #137064;
    background: #ffffff;
    color: #137064;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
    cursor: pointer;
    margin-bottom: 0.35rem;
  }

  .lang-btn:last-of-type {
    margin-bottom: 0;
  }

  .lang-btn.is-active {
    background: #137064;
    color: #ffffff;
  }

  .lang-btn:focus-visible {
    outline: 2px solid #137064;
    outline-offset: 2px;
  }

  /* Standard: leichte Sprache ausblenden */
  .lang-variant[data-lang="easy"] {
    display: none;
  }

  /* Wenn easy aktiv ist: normale Sprache ausblenden */
  body[data-lang-mode="easy"] .lang-variant[data-lang="normal"] {
    display: none;
  }

  /* Wenn easy aktiv ist: leichte Sprache einblenden */
  body[data-lang-mode="easy"] .lang-variant[data-lang="easy"] {
    display: block;
  }

  @media (max-width: 600px) {
    .lang-floating {
      right: 0.75rem;
      top: 5rem;
    }

    .lang-fab-panel {
      min-width: 11rem;
    }

    .lang-active-label {
      font-size: 0.85rem;
    }
  }



