/* =====================================
   Basis
===================================== */
:root {
  --header-height: 90px;
  --accent: #00785b;
  --light-bg: #f5f5f5;
  --card-bg: #f4f4f4;
  --text-dark: #333;
  --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.12);
}

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

html,
body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: var(--text-dark);
}

body.no-scroll {
  overflow: hidden;
}

/* ===========================
   HEADER – PROFESSIONELL & LUFTIG
   =========================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: flex;
    justify-content: space-between;   /* Logo links – Nav rechts */
    align-items: center;

    padding: 20px 40px;               /* NORMALER Rand */
    background: transparent;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

header.scrolled {
    background: rgba(110, 110, 110, 0.95);
}

/* LOGO größer + mit fixer Breite (für Abstand!) */
.logo {
  min-width: 180px;   /* Header-Abstand garantiert */
  display: flex;
  align-items: center;
}

.logo img {
    height: 150px;
    width: auto;
    display: block;
}


/* NAVIGATION rechts – größer & mehr Abstand */
nav ul {
  list-style: none;
  display: flex;
  gap: 45px;         /* viel mehr Abstand zwischen Menü-Punkten */
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 26px;   /* größer */
  text-shadow: 1px 1px 2px black;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 50px; /* Abstand zwischen den Menü-Punkten */
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: white;
    font-size: 26px;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
    text-decoration: none;
}



/* Burger */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 20px;
}

.burger-menu div {
  width: 30px;
  height: 4px;
  background-color: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* Mobile-Nav-Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--header-height);
  z-index: 9998;
}

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

.mobile-nav ul {
  list-style: none;
  width: 100%;
  text-align: center;
}

.mobile-nav li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
}





/* =====================================
   MAIN LAYOUT
===================================== */

main {
  margin-top: 0; /* Hero läuft bewusst hinter den Header */
}

/* =====================================
   HERO
===================================== */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Geblurrter Hintergrund über gesamte Breite */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("Fotos/Startseite-Haupt-cut.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(24px) brightness(0.9);
  transform: scale(1.1);
  z-index: -2;
}

/* Scharfes Bild */
.hero-image {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center; /* Fokus links */
  z-index: -1;
}

/* Textblock – Desktop: links neben dem Kopf */
.hero-text {
  position: absolute;
  max-width: 520px;
  padding: 20px 28px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  color: #fff;

  /* ungefähr mittig, etwas links vom Kopf */
  top: 60%;
  left: 23%;
  transform: translate(-50%, -50%);
  text-align: left;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.hero-text p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Scroll-Button */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 1.5s infinite;
  cursor: pointer;
}

.scroll-down::after {
  content: "";
  width: 12px;
  height: 12px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  margin-top: 4px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

/* =====================================
   SECTIONS / LAYOUT HILFE
===================================== */

.section-wide {
  width: 100%;
  padding: 70px 0;
}

.section-light {
  background: var(--light-bg);
}

.section-white {
  background: #fff;
}

.section-inner {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

/* =====================================
   THEMEN-BOXEN
===================================== */

.themen-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 35px;
}

.themen-box {
  flex: 1 1 30%;
  min-width: 280px;
  max-width: 420px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.themen-box .icon {
  margin-bottom: 22px;
}

.themen-box .icon img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.themen-box h3 {
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.themen-box p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.5;
}

/* =====================================
   THERAPIE SECTION
===================================== */

.therapie-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 2rem 0;
}

/* Bilderblock */
.therapie-images {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.therapie-images img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 5px solid #fff;
  box-shadow: var(--shadow-soft);
}

.image-top {
  position: relative;
  width: 80%;
  z-index: 2;
  transform: translateX(-8%);
}

.image-bottom {
  position: absolute;
  top: 60px;
  left: 55%;
  width: 60%;
  z-index: 3;
}

/* Textblock */
.therapie-text {
  max-width: 650px;
  flex: 1;
}

.text-box {
  background: #ffffff;
  padding: 2.2rem 2.6rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.text-box p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #555;
}

.text-box strong {
  color: #222;
}

/* Button */
.mehr-erklaerung {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.85rem 1.8rem;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  outline: 1px solid var(--accent);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mehr-erklaerung:hover {
  background-color: var(--accent);
  color: #ffffff;
}

/* =====================================
   LEISTUNGEN
===================================== */

.leistungen-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 0;
}

.leistungen-section h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 2.2rem;
  color: rgb(0, 0, 0);
}

.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.7rem;
}

.leistung-box {
  display: flex;
  align-items: center;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 22px 24px;
  gap: 20px;
  flex: 1 1 30%;
  max-width: 400px;
  min-height: 150px;
}

.leistung-box .icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leistung-box .icon img {
  max-width: 64px;
  height: auto;
}

.box-text {
  flex: 1;
}

.box-text h3 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
  color: #000000;
}

.box-text p {
  margin: 0;
  font-size: 1rem;
  color: rgb(0, 0, 0);
  line-height: 1.4;
}

/* UL im Text (Workshops) */
.box-text p ul {
  list-style: disc outside;
  margin: 0.5rem 0 0 1.2rem;
  padding-left: 0;
}

.box-text p ul li {
  margin-bottom: 0.25rem;
}

.leistung-box:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
  transition: all 0.25s ease;
}

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

.site-footer {
  background-color: #e7e7e7;
  padding: 24px 40px 28px;
  font-size: 0.95rem;
  color: #555;
  margin-top: 2rem;
  text-align: center;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1rem;
}

.footer-logo {
  flex-shrink: 0;
  margin-right: 10%;
}

.footer-logo img {
  max-height: 140px;
  width: auto;
}

.footer-info {
  text-align: left;
}

.footer-info p {
  margin: 0.25rem 0;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.footer-bottom a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #000;
}

.footer-ig img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  margin-right: 4px;
}

/* =====================================
   RESPONSIVE BREAKPOINTS
===================================== */
@media (max-width: 1200px) {
  .hero-text {
    top: calc(var(--header-height) + 140px); /* genug Abstand unter Logo */
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
  }
}
/* Tablet / kleinerer Laptop */
@media (max-width: 1100px) {
  .hero-text {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 440px;
    text-align: center;
  }

  .therapie-section {
    flex-direction: column;
    gap: 3rem;
  }

  .therapie-images {
    margin: 0 auto;
  }

  .therapie-text {
    max-width: 700px;
    width: 100%;
  }

  .themen-box {
    flex: 1 1 45%;
    max-width: 480px;
  }

  .leistung-box {
    flex: 1 1 45%;
    max-width: 480px;
  }
}

/* Handy */
@media (max-width: 768px) {
  /* Header: Desktop-Nav ausblenden, Burger zeigen */
  .desktop-nav {
    display: none;
  }

      /* VERSTECKE das Desktop-Menü */
    header nav ul {
        display: none !important;
    }

    /* Burger anzeigen */
    .burger-menu {
        display: flex !important;
    }

  .logo img {
    height: 70px;
  }

  .hero-text {
    top: auto;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    padding: 14px 18px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text h2 {
    font-size: 1.05rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .themen-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .therapie-section {
    flex-direction: column;
    padding: 1.5rem 0;
  }

  .therapie-images {
    width: 100%;
    max-width: 420px;
  }

  .image-top,
  .image-bottom {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    margin-bottom: 1.5rem;
  }

  .text-box {
    padding: 1.6rem 1.8rem;
  }

  .leistung-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .site-footer {
    padding: 20px 16px 24px;
  }

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

  .footer-logo {
    margin-right: 0;
  }

  .footer-info {
    text-align: center;
  }
}

/* sehr kleine Screens */
@media (max-width: 480px) {
  .logo img {
    height: 60px;
  }

  .section-wide {
    padding: 50px 0;
  }

  .text-box p {
    font-size: 0.95rem;
  }
}










/* About.html*/
/*












*/
.Start {
  background-image: url('Fotos/AboutStartBild.jpg');
  background-size: cover;        /* Bild füllt die Breite aus */
  background-position: center;   /* Bild zentrieren */
  height: 50vh;                  /* Nur halb so hoch wie der Viewport */
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote-section {
  /* Zentrierter Block mit Abstand */
  text-align: center;
  max-width: 800px;   /*  maximale Breite */
  margin: 0 auto;     /* Zentriert den Abschnitt */
  padding: 3rem 1rem; /* Abstand  etwas seitlich */
}

.quote-icon {
  /* Großes Anführungszeichen */
  font-size: 9.5rem;  /*  größe*/
  color: #555;        /* Grauton */
}

.quote-section h2 {
  font-size: 1.5rem;  /* Größere Schrift für die Hauptzeile */
  font-weight: normal;
  color: #333;
  margin-bottom: 1rem;
}

.quote-section p {
  font-size: 1rem;    /* Kleinere Schrift*/
  color: #666;
  margin-bottom: 0.5rem;
}

.AboutScroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 2px solid #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 1.5s infinite;
  cursor: pointer;
}

.AboutScroll-down::after {
  content: "";
  width: 12px;
  height: 12px;
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(-45deg);
  margin-top: 5px;
}


/* Container für Bild + Text */
.profile-section {
  display: flex;
  align-items: flex-start;      /* Oben bündig */
  max-width: 1200px;
  margin: 7rem auto;           /* Zentriert mit Abstand oben/unten */
  position: relative;
  padding: 0 1rem;             /* Kleiner Seitenabstand */
}

/* Linke Spalte: Bild */
.profile-image {
  flex: 0 0 400px;             /* Breite für das Bild */
  z-index: 1;
}

.profile-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Rechte Spalte: Text, überlappt das Bild */
.profile-text {
  flex: 1;
  position: relative;
  z-index: 2;                  
  margin-left: -60px;          /* Überlappung nach links */
  margin-top: 90px;
  text-align: left;
}

/* Textbox-Styling */
.text-box {
  background: #f4f4f4;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5);
}

/* Absatz-Text */
.text-box p {
  margin: 0;
  line-height: 1.6;
  color: #333;
}

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

/* Mittlere Screens: Bild etwas kleiner, weniger Overlap */
@media (max-width: 1100px) {
  .profile-image {
    flex: 0 0 320px;
  }

  .profile-text {
    margin-left: -40px;
    margin-top: 70px;
  }

  .text-box {
    padding: 1.4rem 1.8rem;
  }
}

/* Kleine Laptops / Tablets: untereinander statt nebeneinander */
@media (max-width: 800px) {
  .profile-section {
    flex-direction: column;
    align-items: center;
    margin: 4rem auto;
  }

  .profile-image {
    flex: 0 0 auto;
    max-width: 360px;
    margin-bottom: 1.5rem;
  }

  .profile-text {
    margin-left: 0;      /* Overlap weg */
    margin-top: 0;
    width: 100%;
  }

  .text-box {
    max-width: 700px;
    margin: 0 auto;
  }
}

/* Handy: volle Breite, weniger Schatten */
@media (max-width: 520px) {
  .profile-section {
    margin: 3rem auto;
  }

  .profile-image {
    max-width: 100%;
  }

  .text-box {
    padding: 1.2rem 1.4rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.25);
  }
}


/* Textbox-Styling */
.text-box {
  background: #f4f4f4;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.507);
}

/* Absatz-Text */
.text-box p {
  margin-bottom: 1rem;
  color: #333;
  margin: 0;             /* Entfernt alle Standard-Abstände */
  line-height: 1.4;      /* Verringert den Zeilenabstand, z.B. 1.4 */
}

/* Container für den Abschnitt */
.praxis-info {
  max-width: 800px;      /* Begrenze die Breite, damit es gut lesbar bleibt */
  margin: 3rem auto;     /* Zentriert und Abstand oben/unten */
  padding: 0 1rem;       /* Kleiner Seitenabstand */
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Hauptüberschrift */
.praxis-info h2 {
  font-size: 2rem;       /* Größere Schrift für die Überschrift */
  font-weight: bold;
  color: #333;           /* Dunkle Schriftfarbe */
  margin-bottom: 0.5rem; /* Leichter Abstand nach unten */
}

/* Subheadline */
.praxis-info h3 {
  font-size: 1.3rem;     /* Etwas kleiner als h2 */
  color: #555;
  margin-bottom: 1rem;   /* Abstand zum Fließtext */
}

/* Fließtext */
.praxis-info p {
  line-height: 1.6;      /* Angenehme Zeilenhöhe */
  color: #555;           /* Dezente Schriftfarbe */
  margin-bottom: 1rem;   /* Abstand zwischen Absätzen */
}

.p2{
  font-style: italic;
  font-size: 20px;
}



/****************************************
  TIMELINE SECTION (Karten)
****************************************/
.timeline-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.timeline-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #333;
}

/* Karten-Grid */
.timeline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center; /* letzte Reihe zentriert */
}

/* Einzelne Karte */
.timeline-card {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;

  flex: 1 1 calc(25% - 1.5rem);
  max-width: 260px;
  min-height: 150px;

  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Hintergrundbild */
.timeline-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transform: scale(1.05);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Halbtransparenter Overlay */
.timeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25)
  );
}

/* Inhalt der Karte */
.timeline-card-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 18px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.timeline-year {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.timeline-card-content p {
  margin: 0;
  font-size: 0.95rem;
}

/* Hover-Effekt */
.timeline-card:hover .timeline-card-bg {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.timeline-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}


/****************************************
  RESPONSIVE KARTEN
****************************************/

/* Mittel: 2 Karten pro Reihe */
@media (max-width: 1000px) {
  .timeline-card {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: 340px;
  }
}

/* Klein: 1 Karte pro Reihe */
@media (max-width: 600px) {
  .timeline-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/****************************************
  TIMELINE MODAL – Blur Hintergrund
****************************************/
.timeline-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: 90px;                 /* Abstand zum Header */
  backdrop-filter: blur(14px);       /* <<< Hintergrund geblurt */
  background: rgba(0,0,0,0.35);      /* leichte Abdunklung */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 99999;
}

.timeline-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.timeline-modal-overlay {
  position: absolute;
  inset: 0;
}

/****************************************
  POPUP-BOX – passt sich dynamisch an
  NICHT volle Höhe, endet unter dem Text
****************************************/
.timeline-modal-dialog {
  position: relative;
  z-index: 10;
  width: min(1100px, 92%);
  background: white;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/****************************************
  OBERE HÄLFTE: BILD + Blur-Füllung
****************************************/
.timeline-modal-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Geblurrter Bereich links & rechts */
.timeline-modal-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--modal-img);
  background-size: cover;
  background-position: center;
  filter: blur(25px) brightness(0.7);
  transform: scale(1.25);
  z-index: 1;
}

/* Scharfes Bild oben drauf */
.timeline-modal-image img {
  position: relative;
  z-index: 2;
  width: auto;              /* <<< wichtig */
  height: 100%;             /* <<< wichtig */
  object-fit: contain;      
}


/****************************************
  MODAL / POPUP – EINHEITLICH AUSGERICHTET
****************************************/
.timeline-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9998;
}

.timeline-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* unsichtbare Klickfläche zum Schließen */
.timeline-modal-overlay {
  position: absolute;
  inset: 0;
}

.timeline-modal-dialog {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 18px;
  width: min(1100px, 90vw);   /* überall gleiche Breite */
  max-height: 80vh;           /* damit immer auf einen Bildschirm passt */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

/* Schließen-Button */
.timeline-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
  z-index: 2;
}

/* OBERER TEIL: Bild – überall gleiche Höhe */
.timeline-modal-image {
  position: relative;
  flex: 0 0 55%;        /* ca. obere Hälfte */
  max-height: 55vh;
  overflow: hidden;
}

.timeline-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* Bild füllt den Bereich, Überschuss wird sauber abgeschnitten */
}

/* UNTERER TEIL: Text – Höhe passt sich Textlänge an,
   aber insgesamt bleibt das Popup in max. 80vh */
.timeline-modal-text {
  flex: 0 0 auto;
  padding: 18px 28px 20px;
  overflow-y: auto;
}

.timeline-modal-text h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  color: #222;
}

.timeline-modal-text p {
  margin: 0;
  line-height: 1.6;
  color: #555;
  font-size: 0.95rem;
}

/* etwas kompakter auf sehr kleinen Screens */
@media (max-width: 700px) {
  .timeline-modal-dialog {
    width: 94vw;
    max-height: 88vh;
    border-radius: 14px;
  }

  .timeline-modal-text {
    padding: 14px 18px 18px;
  }

  .timeline-modal-text h3 {
    font-size: 1.05rem;
  }

  .timeline-modal-text p {
    font-size: 0.9rem;
  }
}












 /* Basis-Reset */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #fff;
  font-family: sans-serif;
}
/* Container für die Slideshow */
.slideshow-container {
  position: relative;
  width: 800px;       /* Passe die Breite nach Bedarf an */
  height: 500px;      /* Passe die Höhe nach Bedarf an */
  margin: 50px auto;  /* Zentriert den Container mit Abstand */
  overflow: hidden;
  background: #fff;   /* Weißer Hintergrund, damit keine störenden Balken sichtbar sind */
}
/* Alle Slides (Bilder) liegen übereinander */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;    /* Zeigt das komplette Bild an, skaliert proportional */
  object-position: center;
  opacity: 0;             /* Standardmäßig unsichtbar */
  transition: opacity 0.5s ease-in-out;  /* Sanfter Übergang */
}
/* Die aktive Slide ist sichtbar */
.slide.active {
  opacity: 1;
}



   #aboutme-nationalspieler-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#aboutme-headline {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8em;
    color: #222222;
}

.aboutme-club-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.aboutme-club-section img {
    width: 60px;
    height: auto;
}

.aboutme-club-section p {
    margin: 0;
    font-size: 1.05em;
    line-height: 1.6;
    color: #333333;
}


/* Ausbildung – Stylespezifisch für Therapeutensektion */
#section-ausbildung-therapeut {
  padding: 60px 20px;
  background-color: #f8f9fb;
}

.container-ausbildung-therapeut {
  max-width: 900px;
  margin: 0 auto;
}

.heading-ausbildung-therapeut {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

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

.eintrag-ausbildung-therapeut {
  margin-bottom: 24px;
  padding-left: 20px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
}

.eintrag-ausbildung-therapeut::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #007bff;
  font-size: 1rem;
}




/* Leistungen.html*/
/*




*/

.hero-Leistungen {
  background-image: url('Fotos/Startbild-Leistungen.JPEG');
  background-size: cover;
  background-position: 50% 40%;  /* etwas tiefer als center → Kopf besser sichtbar */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ab großen Monitoren: Kopf nach unten holen */
@media (min-width: 1400px) {
  .hero-Leistungen {
    background-position: 50% 25%;
  }
}

/* Sehr breite Monitore: noch etwas mehr Kopf zeigen */
@media (min-width: 1800px) {
  .hero-Leistungen {
    background-position: 50% 15%;
  }
}


.leistungen-wrapper {
  width: 100%;
  padding: 100px 160px; /* großer Rand links/rechts auf großen Screens */
}

/* Standard: große Bildschirme → 3 Spalten */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 60px;
}

/* Karten selbst – lass alles andere, was du dazu hast, ruhig so:
   (Hover, img, h3, p usw. können bleiben) */
.leistung-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

/* ==== BREAKPOINTS ==== */

/* Mittlere Screens → 2 Spalten (2–2–2) */
@media (max-width: 1400px) {
  .leistungen-wrapper {
    padding: 80px 80px; /* etwas weniger Rand */
  }

  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Handy / kleine Tablets → 1 Spalte */
@media (max-width: 768px) {
  .leistungen-wrapper {
    padding: 60px 20px;
  }

  .leistungen-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

/* Hover-Effekt wie davor – nur leicht edler */
.leistung-card:hover {
  background-color: #e8faff;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 35px rgba(0,0,0,0.18);
}

/* Bild groß + harmonisch */
.leistung-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Titel */
.leistung-card h3 {
  font-size: 1.6rem;
  margin: 18px 0 6px;
}

/* Untertitel */
.leistung-card p {
  color: #333;
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 22px;
  padding: 0 15px;
}

/* Responsiv: Tablet → 2 Karten */
@media (max-width: 1200px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
}

/* Handy → 1 Karte */
@media (max-width: 768px) {
  .leistungen-wrapper {
    padding: 60px 20px;
  }
  .leistungen-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .leistung-card {
    width: 90%;
  }
}



.leistungs-details {
  max-width: 950px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.7;
}

.leistungs-details section {
  margin-bottom: 70px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
  scroll-margin-top: 140px; /* verhindert, dass der Header etwas überlappt */
}

.leistungs-details h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 15px;
  border-bottom: 2px solid #000000;
  padding-bottom: 5px;
  display: inline-block;
}

.leistungs-details p {
  font-size: 1rem;
  margin: 12px 0;
}

.leistungs-details ul {
  padding-left: 20px;
  margin: 15px 0;
}

.leistungs-details li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.leistungs-details strong {
  color: #000000;
}

.leistung-card {
  color: inherit;
  text-decoration: none;
}

.leistung-card:hover h3,
.leistung-card:hover p {
  color: #0c3c60;
}





/* Termin&Info.html*/
/*




*/


/* ====== TERMIN & INFO SEITE ====== */

/* ====== BASIS-RESET ====== */
/* ===== TERMIN & INFO – nur Seiten-spezifische Styles ===== */

/* Vollflächiger Bereich mit logo-passendem Verlauf */
.termin-info {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #eaf3ef;
}

/* Blur & Bild wie gehabt */
.termin-bg-blur {
  position: absolute;
  inset: 0;
  background-image: url("Fotos/fußballfeld.png");
  background-size: cover;
  background-position: center;

  transform: scale(1.25);
  z-index: -3;
}

.termin-bg-image {
  position: absolute;
  inset: 0;
  background-image: url("Fotos/fussball-sommercamp-flyer.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;                 /* <<< weniger dominant */
  z-index: -2;
}

/* NEU: Dark/Color Overlay – macht alles direkt „edler“ */
.termin-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(53,194,154,0.16), transparent 55%),
    radial-gradient(700px 500px at 80% 20%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(180deg, rgba(10,18,16,0.65), rgba(10,18,16,0.35));
  z-index: -1;
}






/* Hero-Bereich */

.termin-hero{
    padding-top: 150px !important;
}

.termin-info .termin-hero {
  text-align: center;
  padding: 5rem 1rem 3rem;
  background: linear-gradient(180deg, rgba(53, 194, 154, 0.15), transparent);

}

.termin-info .termin-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.termin-info .termin-hero .subtitle {
  font-size: 1.1rem;
  color: #a4b8b1; /* gedämpft */
}

/* Layout-Container / Grid */
.termin-info .termin-container {
    display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertikal */
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* Karten */
.termin-info .termin-card,
.termin-info .ablauf-card {
  background: rgba(20, 40, 35, 0.55);            /* leicht transparent */
  border: 1px solid rgba(99, 210, 176, 0.16);    /* zarter Rahmen im Teal-Ton */
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.termin-info .termin-card h2,
.termin-info .ablauf-card h3 {
  margin-top: 0;
  color: #63d2b0;  /* Akzent wie Logo */
}

.termin-info .termin-card p { margin-top: 0.5rem; }

.termin-info .termin-card a {
  color: #35c29a;
  text-decoration: none;
}
.termin-info .termin-card a:hover { text-decoration: underline; }

/* Kontakt-Details Kacheln */
.termin-info .kontakt-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.termin-info .kontakt-details > div {
  flex: 1 1 150px;
  background: rgba(99, 210, 176, 0.06);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Ablauf-Liste */
.termin-info .ablauf-card ol {
  margin-left: 1.2rem;
  line-height: 1.7;
}

.termin-info .info-text {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #a4b8b1;
}

/* Responsiv */
@media (max-width: 850px) {
  .termin-info .termin-container {
    grid-template-columns: 1fr;
  }
  .termin-info .kontakt-details {
    flex-direction: column;
  }
}









/* Fußballschule.html*/







.background-flyer{
  background-image: url(/Fotos/fußballfeld.png);
  background-size: cover;
  background-position: center;     /* zentriert */
  background-repeat: no-repeat;    /* kein mehrfaches Bild */
  background-attachment: fixed;    /* optional: schöner Parallax-Effekt */

  min-height: 100vh;               /* Body mindestens Bildschirmhöhe */
  line-height: 1.5rem;
}

h2{
 margin-bottom: 5px; 
}
.fussballschule-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Intro */
.fs-intro {
    text-align: center;
    margin-top: 4rem;      /* Abstand nach oben */
    margin-bottom: 3rem;
}

.fs-intro h1 {
    font-size: 3rem;       /* gerne etwas größer, weil Titel wichtig ist */
    color: #124c36;
    line-height: 1.4;      /* größerer Zeilenabstand */
    margin-bottom: 0.8rem;
}

.fs-intro .subtitle {
    color: #446f5b;
    font-size: 1.25rem;
    line-height: 1.6;      /* Zeilenabstand Subtitle */
}

/* Kartenstyle */
.fs-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
}

.fs-card h2 {
    margin-top: 0;
    color: #155f43;
}

.fs-card h3 {
    color: #1e6d4e;
    margin-bottom: .5rem;
}

.fs-card ul {
    padding-left: 1.4rem;
    line-height: 1.7;
}

/* Kontaktkarte */
.fs-kontakt {
    text-align: center;
}
.fs-kontakt p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* Split-Layout mit Bild + Text nebeneinander */
.fs-card--split {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

/* Bild-Container */
.fs-card-image {
    flex: 0 0 35%;
    border-radius: 14px;
    overflow: hidden;
}

.fs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text-Container */
.fs-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bild rechts, Text links – Reihenfolge umdrehen */
.fs-card--reverse {
    flex-direction: row-reverse;
}

/* Trainingsstruktur: Text rechtsbündig */
.fs-card--align-right .fs-card-text {
    text-align: right;
}

.fs-card--align-right .fs-card-text ul {
    list-style-position: inside;
    padding-left: 0;
}

/* Responsive: unter 800px Bild oben, Text unten */
@media (max-width: 800px) {
    .fs-card--split,
    .fs-card--reverse {
        flex-direction: column;
    }

    .fs-card-image {
        flex-basis: auto;
        height: 220px;
    }

    .fs-card--align-right .fs-card-text {
        text-align: left;
    }

    .fs-card--align-right .fs-card-text ul {
        list-style-position: outside;
        padding-left: 1.4rem;
    }
}

.fußball-einrücken{
    margin-left: 15px;
}
