/*
Author: C0Eight (3fa85f64-e556-3210-p3xu2c0d3)
story.css (c) 2025
Created:  2025-12-12T21:56:56.086Z
*/

/* =========================
   Design-Variablen
========================= */
:root {
  --primary: #5555FF;
  --primary-dark: #3333CC;
  --primary-soft: #eef0ff;
  --accent: #ffb347;
  --bg-page: #f5f7ff;
  --text: #111111;
  --text-muted: #555555;

  --radius-lg: 16px;
  --radius-md: 12px;

  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 14px 34px rgba(15, 23, 42, 0.18);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top left, #ffffff, var(--bg-page));
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   Header & Navigation
========================= */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 40px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: white;

  border-bottom: 3px solid rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;

  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

/* Logo + Titel zentriert */
.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-center h1 {
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
}

/* =========================
   Language Switch (inline)
========================= */
.lang-switch{
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px;
  border-radius:999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}

.lang-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  color:#fff;
  font-weight:600;
  font-size:0.9rem;
  line-height:1;
  transition: background 0.2s ease, transform 0.1s ease;
}

.lang-item .flag{
  width:20px;
  height:15px;
  border-radius:2px;
}



/* =========================
   Language Switch (inline)
========================= */
.lang-switch{
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px;
  border-radius:999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}

.lang-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  color:#fff;
  font-weight:600;
  font-size:0.9rem;
  line-height:1;
  transition: background 0.2s ease, transform 0.1s ease;
}

.lang-item .flag{
  width:20px;
  height:15px;
  border-radius:2px;
}

.lang-item:hover{
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

.lang-item.active{
  background:#fff;
  color: var(--primary-dark);
}


/* Sprach-Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropbtn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: white;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s ease;
  backdrop-filter: blur(6px);
}

.lang-dropbtn .flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.lang-dropbtn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: var(--shadow-soft);
  border-radius: 12px;
  z-index: 200;
  overflow: hidden;
  margin-top: 6px;
}

.lang-dropdown-content a {
  color: var(--text);
  padding: 10px 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  font-size: 0.9rem;
}

.lang-dropdown-content a .flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.lang-dropdown-content a:hover {
  background-color: var(--primary);
  color: white;
}

/* Optional: wenn du Dropdown per JS öffnest, nutze .open */
.lang-dropdown.open .lang-dropdown-content {
  display: block;
}

/* Navigation rechts */
.header-right ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-right li {
  position: relative;
}

.header-right a {
  font-weight: 500;
  padding: 6px 2px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  font-size: 0.95rem;
}

/* Underline-Bar Effekt */
.header-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.2s ease;
}

.header-right a:hover::after {
  width: 100%;
}

.header-right a.active {
  font-weight: 600;
}

.header-right a.active::after {
  width: 100%;
}

/* Call-to-Action Button */
.helpbutton {
  background: #ffffff;
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.25);
  display: inline-block;
  font-size: 0.95rem;
}

.helpbutton:hover {
  background: #f0f3ff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: white;
  font-size: 1.2rem;
  padding: 4px 10px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

/* =========================
   Hero / Carousel (fullscreen width)
========================= */
.hero {
  margin-top: 18px;
  position: relative;
  width: 100%;
}

.carousel {
  margin-top: -20px;
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

/* Slides liegen übereinander */
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
}

/* Bild füllt breit, mit schöner Höhe */
.carousel-slide img {
  width: 100%;
  height: 65vh;
  max-height: 780px;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* Caption unten */
.carousel-caption {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: white;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  text-align: center;
}

/* Controls */
.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.carousel-btn {
  border: 1px solid #ffffff;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  border-radius: 999px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.1s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: #ffffff;
  transform: scale(1.15);
}

/* =========================
   Sections
========================= */
.section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: left;
}

.section-title {
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--primary-dark);
  font-weight: 600;
  padding-bottom: 6px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

/* =========================
   Story (Fließtext + Weiterlesen)
========================= */
.story-text {
  max-width: 820px;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.story-text p + p {
  margin-top: 12px;
}

.story-text strong {
  color: var(--primary-dark);
}

.story-signature {
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Versteckter Teil */
.story-more {
  margin-top: 12px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.4s ease;
}

.story-more.expanded {
  max-height: 5000px;
  opacity: 1;
  transform: translateY(0);
}

/* Weiterlesen Button */
.story-read-more {
  margin-top: 18px;
  border: none;
  background: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
  position: relative;
}

.story-read-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transition: transform 0.2s ease;
  transform-origin: left;
}

.story-read-more:hover::after {
  transform: scaleX(0.7);
}

/* =========================
   Footer
========================= */
footer {
  background: #ffffff;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
  color: var(--text-muted);
  font-weight: 500;
  border-top: 2px solid var(--primary-soft);
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  header {
    padding: 16px 20px;
  }

  .header-center h1 {
    font-size: 1.3rem;
  }

  .section {
    margin: 60px auto;
  }
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Center wieder normal (kein overlap) */
  .header-center {
    position: static;
    transform: none;
    margin: 0 auto;
    justify-content: center;
    order: 1;
  }

  .header-left {
    order: 0;
  }

  .header-right {
    order: 2;
    width: 100%;
    margin-top: 10px;
  }

  .nav-toggle {
    display: block;
    order: 3;
    margin-left: auto;
  }

  .header-right ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    display: none;
  }

  .header-right.open ul {
    display: flex;
  }

  .carousel-slide img {
    height: 42vh;
  }

  .carousel-caption {
    bottom: 60px;
    font-size: 0.85rem;
    padding: 6px 12px;
    white-space: normal;
    max-width: 86%;
  }

  .carousel-controls {
    bottom: 10px;
    padding: 4px 10px;
  }

  .carousel-btn {
    font-size: 0.8rem;
    padding: 2px 8px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* =========================
   Kontakt – Clean & Modern
========================= */

.contact-wrap{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.contact-card{
  background: #fff;
  border: 1px solid rgba(85, 85, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.contact-head{
  padding: 18px 18px 14px;
  background: linear-gradient(180deg, rgba(85,85,255,0.10), rgba(85,85,255,0.02));
  border-bottom: 1px solid rgba(85, 85, 255, 0.10);
}

.contact-head h3{
  margin: 0;
  font-size: 1.15rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-head p{
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form{
  padding: 16px 18px 18px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* =========================
   Kontakt – Inputs (cleaner)
========================= */

.field label{
  font-weight: 600;
  color: rgba(17,17,17,0.75);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

/* moderner Input-Look */
.field input,
.field textarea{
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(245, 247, 255, 0.65); /* passt zu --bg-page */
  border-radius: 14px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text);
  outline: none;

  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.field textarea{
  min-height: 150px;
  resize: vertical;
  line-height: 1.65;
}

/* hover = etwas klarer */
.field input:hover,
.field textarea:hover{
  border-color: rgba(85, 85, 255, 0.22);
  background: rgba(245, 247, 255, 0.9);
}

/* focus = modern ring */
.field input:focus,
.field textarea:focus{
  border-color: rgba(85, 85, 255, 0.55);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(85, 85, 255, 0.12);
}

/* Placeholder schöner */
.field input::placeholder,
.field textarea::placeholder{
  color: rgba(17,17,17,0.35);
}

/* kleine Validierung (optional nice) */
.field input:invalid:focus,
.field textarea:invalid:focus{
  border-color: rgba(255, 86, 86, 0.55);
  box-shadow: 0 0 0 5px rgba(255, 86, 86, 0.10);
}


.form-actions{
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary{
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 24px rgba(85, 85, 255, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .12s ease, box-shadow .2s ease;
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(85, 85, 255, 0.28);
}

.btn-primary:active{
  transform: translateY(0px);
}

.btn-arrow{
  display: inline-block;
  transform: translateY(-1px);
  font-weight: 900;
}

.form-hint{
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-hint a{
  color: var(--primary-dark);
  font-weight: 700;
}

.form-hint a:hover{
  text-decoration: underline;
}

/* rechte Seite */
.contact-side{
  display: grid;
  gap: 12px;
}

.contact-info,
.contact-note{
  background: #fff;
  border: 1px solid rgba(85, 85, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  padding: 16px 16px;
}

.contact-info h4, .contact-note h4{
  margin: 0;
  font-size: 1.02rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.contact-info ul{
  margin-top: 10px;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-info li + li{ margin-top: 6px; }

.contact-note p{
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 900px){
  .contact-wrap{
    grid-template-columns: 1fr;
  }
  .form-grid{
    grid-template-columns: 1fr;
  }
}


/*
Author: C0Eight (3fa85f64-e556-3210-p3xu2c0d3)
story.css (c) 2025
Created:  2025-12-12T21:56:56.086Z
*/

/* =========================
   Design-Variablen
========================= */
:root{
  --primary:#5555FF;
  --primary-dark:#3333CC;
  --primary-soft:#eef0ff;
  --accent:#ffb347;
  --bg-page:#f5f7ff;
  --text:#111111;
  --text-muted:#555555;

  --radius-lg:16px;
  --radius-md:12px;

  --shadow-soft:0 10px 30px rgba(15,23,42,.12);
  --shadow-strong:0 14px 34px rgba(15,23,42,.18);
}

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

body{
  font-family:"Poppins",sans-serif;
  background:radial-gradient(circle at top left,#fff,var(--bg-page));
  color:var(--text);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* =========================
   Header
========================= */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;

  padding:24px 40px;
  background:linear-gradient(90deg,var(--primary),var(--primary-dark));
  color:#fff;

  border-bottom:3px solid rgba(0,0,0,.15);
  position:sticky;
  top:0;
  z-index:100;

  box-shadow:0 12px 30px rgba(15,23,42,.22);
}

/* hide animation (für JS .header-hidden) */
header{
  transition:transform .28s ease;
  will-change:transform;
}
header.header-hidden{
  transform:translateY(-110%);
}

.header-left,
.header-center{
  display:flex;
  align-items:center;
}

/* Rechts (Nav) */
.header-right{
  margin-left:auto;
  display:flex;
  align-items:center;
}

/* Center zentriert (Desktop) */
.header-center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:10px;
}
.header-center h1{
  font-weight:600;
  font-size:1.7rem;
  letter-spacing:.03em;
}

/* =========================
   Language (Desktop links)
========================= */
.lang-item,
.lang-item2{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  color:#fff;
  font-weight:600;
  font-size:.9rem;
  line-height:1;
  transition:background .2s ease, transform .1s ease;
}

.flag{
  width:20px;
  height:15px;
  border-radius:2px;
}

.lang-item:hover,
.lang-item2:hover{
  background:rgba(255,255,255,.16);
  transform:translateY(-1px);
}

.lang-item.active,
.lang-item2.active{
  background:#fff;
  color:var(--primary-dark);
}

/* Mobile-Sprachen standardmäßig aus (werden im Responsive an) */
.lang-item2{display:none}

/* =========================
   Navigation
========================= */
.header-right ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:18px;
}

.header-right li{position:relative}

.header-right a{
  font-weight:500;
  padding:6px 2px;
  border-radius:4px;
  transition:color .2s ease, background .2s ease;
  font-size:.95rem;
  position:relative;
}

/* Underline-Bar Effekt */
.header-right a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:2px;
  background:#fff;
  transition:width .2s ease;
}
.header-right a:hover::after{width:100%}
.header-right a.active{font-weight:600}
.header-right a.active::after{width:100%}

/* =========================
   Hamburger Button
========================= */
.nav-toggle{
  display:none;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.45);
  border-radius:999px;
  color:#fff;
  font-size:1.2rem;
  padding:6px 12px;
  cursor:pointer;
  backdrop-filter:blur(6px);
  line-height:1;
}
.nav-toggle:hover{
  background:rgba(255,255,255,.16);
}

/* =========================
   Hero / Carousel
========================= */
.hero{
  margin-top:18px;
  position:relative;
  width:100%;
}

.carousel{
  margin-top:-20px;
  position:relative;
  width:100vw;
  margin-left:50%;
  transform:translateX(-50%);
  overflow:hidden;
}

/* Slides übereinander */
.carousel-slide{
  position:absolute;
  inset:0;
  width:100%;
  opacity:0;
  transition:opacity .8s ease-in-out;
}
.carousel-slide.active{
  opacity:1;
  position:relative;
}

/* Bild */
.carousel-slide img{
  width:100%;
  height:65vh;
  max-height:780px;
  min-height:320px;
  object-fit:cover;
}

/* Controls unten */
.carousel-controls{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(0,0,0,.45);
  padding:6px 14px;
  border-radius:999px;
  backdrop-filter:blur(4px);
}
.carousel-dots{
  display:flex;
  align-items:center;
  gap:6px;
}
.carousel-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:1px solid #fff;
  background:transparent;
  cursor:pointer;
  padding:0;
  outline:none;
  transition:background .2s ease, transform .2s ease;
}
.carousel-dot.active{
  background:#fff;
  transform:scale(1.15);
}

/* =========================
   Sections
========================= */
.section{
  max-width:1100px;
  margin:80px auto;
  padding:0 24px;
  text-align:left;
}

.section-title{
  display:inline-block;
  position:relative;
  margin-bottom:40px;
  font-size:2rem;
  color:var(--primary-dark);
  font-weight:600;
  padding-bottom:6px;
}

.section-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,var(--primary),transparent);
}

/* =========================
   Story Text + Weiterlesen
========================= */
.story-text{
  max-width:820px;
  font-size:.98rem;
  color:var(--text-muted);
}
.story-text p + p{margin-top:12px}
.story-text strong{color:var(--primary-dark)}
.story-signature{
  margin-top:20px;
  font-weight:600;
  color:var(--primary-dark);
}

/* Versteckter Teil */
.story-more{
  margin-top:12px;
  overflow:hidden;
  max-height:0;
  opacity:0;
  transform:translateY(4px);
  transition:max-height .5s ease, opacity .5s ease, transform .4s ease;
}
.story-more.expanded{
  max-height:5000px;
  opacity:1;
  transform:translateY(0);
}

/* Button */
.story-read-more{
  margin-top:18px;
  border:none;
  background:none;
  color:var(--primary);
  font-weight:600;
  cursor:pointer;
  font-size:.95rem;
  padding:0;
  position:relative;
}
.story-read-more::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:100%;
  height:1px;
  background:var(--primary);
  transition:transform .2s ease;
  transform-origin:left;
}
.story-read-more:hover::after{transform:scaleX(.7)}

/* Listen (du nutzt timeline-list im Story-Abschnitt) */
.timeline-list{
  margin:10px 0 0 18px;
}
.timeline-list li{margin:6px 0}

/* =========================
   Footer
========================= */
footer{
  background:#fff;
  text-align:center;
  padding:25px;
  margin-top:40px;
  color:var(--text-muted);
  font-weight:500;
  border-top:2px solid var(--primary-soft);
}

/* =========================
   Responsive ✅ wie Index
========================= */

/* Tablet / kleiner Desktop */
@media (max-width:1100px){
  header{padding:16px 18px}
  .section{padding:0 16px}
  .header-center h1{font-size:1.35rem}
  .header-center .logo{height:56px}
}

/* Mobile Nav + Titel neben Hamburger + Sprachen unter Menü */
@media (max-width:968px){

  /* ✅ Grid Layout */
  header{
    display:grid;
    grid-template-columns:1fr auto;
    grid-template-rows:auto auto auto;
    align-items:center;
    gap:10px;
    padding:14px 14px;
  }

  /* Desktop-Sprachen aus */
  header > .header-left:first-of-type{display:none}

  /* ✅ Center links oben */
  .header-center{
    position:static !important;
    transform:none !important;
    grid-column:1 / 2;
    grid-row:1 / 2;
    justify-content:flex-start;
    width:auto;
    margin:0;
  }

  /* ✅ Hamburger rechts oben */
  .nav-toggle{
    display:inline-flex;
    grid-column:2 / 3;
    grid-row:1 / 2;
    justify-self:end;
    align-self:center;
    margin:0 !important;
  }

  /* ✅ Nav darunter */
  .header-right{
    grid-column:1 / -1;
    grid-row:2 / 3;
    width:100%;
    margin:0;
  }

  .header-right ul{
    display:none;
    flex-direction:column;
    gap:10px;

    background:var(--primary-dark);
    border-radius:14px;
    box-shadow:var(--shadow-strong);
    padding:14px;

    width:min(360px, 92vw);
    margin:10px auto 0;
  }

  /* ✅ JS toggelt .open auf .header-right */
  .header-right.open ul{display:flex}

  .header-right a{
    display:block;
    padding:12px 14px;
    text-align:center;
    border-radius:10px;
    background:rgba(255,255,255,.06);
  }
  .header-right a:hover{background:rgba(255,255,255,.12)}

  /* ✅ Mobile Sprachen an (unter Menü) */
  .lang-item{display:none}
  .lang-item2{display:inline-flex}

  header > .header-left:last-of-type{
    display:flex;
    grid-column:1 / -1;
    grid-row:3 / 4;
    width:100%;
    justify-content:center;
    gap:10px;
    margin-top:12px;
  }

  /* etwas mehr Abstand wenn Menü offen */
  .header-right.open + .header-left:last-of-type{
    margin-top:14px;
  }

  /* Content */
  .carousel-slide img{height:42vh;min-height:260px}
  .section{margin:55px auto;padding:0 12px}
  .section-title{font-size:1.55rem}
  .story-text{max-width:100%;font-size:.96rem}
}

/* sehr klein */
@media (max-width:480px){
  .header-center h1{font-size:1.2rem}
  .header-center .logo{height:50px}
  .section{padding:0 12px}

  .carousel-controls{bottom:10px;padding:4px 10px}
  .carousel-dot{width:8px;height:8px}
}
