/* === Header / Navigation mit Burger links & Logo rechts === */

header {
  background: #111;
  color: #fff;
}

/* Leiste oben */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;   /* Burger links, Logo rechts */
  padding: 1rem 10%;
}

/* Logo rechts */
.logo img {
  height: 150px;     /* 👉 Logo-Größe */
  width: 150px;
  display: block;
}

/* Burger-Button links */
.burger {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.9rem;
  cursor: pointer;

  position: relative;   /* wichtig: damit z-index wirkt */
  z-index: 10001;       /* 👉 Burger liegt ÜBER dem Menü */
}


/* Menü standardmäßig VERSTECKT */
.nav-links {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 220px;
  background: #111;
  padding-top: 80px;
  padding-left: 20px;
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 10000;      /* 👉 liegt unter dem Burger */
}


/* Wenn .open dran ist → anzeigen */
.nav-links.open {
  display: flex;               /* 👈 hier wird es sichtbar */
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.nav-links .cta {
  background: #e63946;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
}
.burger.active {
  transform: rotate(90deg);
  transition: 0.3s;
}




/* =====================================================
   GLOBAL: Grundlayout, Schrift, Header, Footer
   ===================================================== */

/* Grundschrift & Reset */
body {
  font-family: 'Open Sans', sans-serif;  /* Schriftart hier ändern */
  margin: 0;
  padding: 0;
}

/* Header-Bereich oben */
header {
  background: #111;   /* Header-Hintergrundfarbe */
  color: #fff;        /* Textfarbe im Header */
  padding: 1rem;
}

/* Navigation-Links oben */
nav a {
  color: #fff;        /* Linkfarbe im Header */
  margin-right: 1rem;
  text-decoration: none;
}

/* Buttons & Call-to-Action */
.btn,
.cta {
  background: #A12525;  /* Button-Hintergrundfarbe */
  color: #fff;          /* Button-Textfarbe */
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
}

/* Standard-Abstand für alle Sections */
section {
  padding: 4rem 2rem;   /* mehr/weniger Abstand oben/unten */
}

/* Standard-Footer (unten) */
footer {
  background: #000;   /* Footer-Hintergrund */
  color: #fff;        /* Footer-Text */
  text-align: center;
  padding: 1.5rem;
}

/* Karten-Layout (z.B. Leistungen Startseite) */
.cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #f5f5f5;  /* Kartenhintergrund */
  padding: 1rem;
  border-radius: 8px;
  width: 250px;
  text-align: center;
}

/* Galerie-Grid (falls genutzt) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}


/* =====================================================
   HERO (Startseite ganz oben)
   ===================================================== */

.hero {
  position: relative;
  background-image: url("/static/images/hero.jpg"); /* Hintergrundbild */
  background-size: cover;
  background-position: center;
  height: 90vh;                  /*Höhe des Hero-Bereichs */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;                  /* Textfarbe im Hero */
  text-align: center;
}

/* Verdunkelung über dem Bild */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);  /* Stärke der Verdunkelung */
}

/* Inhalt im Hero */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;              /* maximale Textbreite */
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;               /* Hauptüberschrift-Größe */
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.3rem;             /* Untertitel-Größe */
  margin-bottom: 1em;
}

/* Call-to-Action Button im Hero */
.hero-btn {
  display: inline-block;
  background-color: #FF0000;     /* Hero-Button-Farbe */
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #FF0000;     /* Hover-Farbe des Buttons */
}


/* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 10%;
  background-color: #0A1B2A;
  color: #ffffff;
}

/* Überschrift */
.about h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

/* Layout: Bild links, Text rechts */
.about-content {
  display: flex;
  align-items: flex-start;       /* Text beginnt oben neben dem Bild */
  justify-content: flex-start;
  gap: 60px;                     /* REALISTISCHER Abstand */
}

/* Bild links */
.about-content img {
  width: 350px;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  flex-shrink: 0;                /* Bild bleibt stabil */
}

/* Text rechts */
.about-content p {
  max-width: 650px;
  font-size: 1.15rem;
  line-height: 1.7;
  text-align: left;
  margin: 0;
  white-space: pre-line;         /* <<< WICHTIG für deine Listen & Zeilen */
}

/* Mobile sauber untereinander */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-content p {
    max-width: 100%;
  }
}
/* =====================================================
   LEISTUNGEN – STARTSEITE (nur index.html)
   ===================================================== */

.leistungen-start {
  background: #0A1B2A;
  padding: 60px 10%;
  color: #ffffff;
  text-align: center;
}

/* Beispiel: Karten auf der Startseite */
.leistungen-start .card,
.leistungen-start .card-split {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  color: #000;
}

.leistungen-start .card p,
.leistungen-start .card li {
  color: #000;
}




/* Bild */
.card.card-split img {
  width: 260px;                  /* kleinere Standardbreite */
  height: 215px;
  object-fit: cover;             /* schönes Zuschneiden */
  border-radius: 10px;
}


/* Bilder in Karten auf der Startseite */
.card img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  margin: 10px 0 20px;
  display: block;
}

/* =====================================================
   LEISTUNGEN – UNTERSEITE (nur leistungen.html)
   ===================================================== */

.leistungen-page {
  background: #0A1B2A;
  padding: 100px 5%;
  color: #ffffff;
}

/* Intro-Bereich */
.leistungen-page .l-intro-container {
  max-width: 900px;
  margin: 0 auto 200px;
  display: flex;
  gap: 40px;
  align-items: center; /* Text & Bild auf einer Höhe */
  padding: 0 20px;
}

/* Linker Text – weiß */
.leistungen-page .l-intro-text p {
  color: #ffffff !important;
  text-align: left;
  line-height: 1.3;
  font-size: 1.4rem;

}

.leistungen-page .l-intro-text h3 {
  color: #ffffff;
  text-align: left;
}

/* Rechte Box – schwarz */
.leistungen-page .l-intro-box {
  text-align: left;
  background: #fff;
  color: #000;
  flex: 0 0 250px;   /* macht die Box breiter */
  aspect-ratio: 5 / 4;   /* etwas höher als breit */
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}



/* Rechte Box*/
.leistungen-page .l-intro-box p,
.leistungen-page .l-intro-box li {
  color: #000
}

/* Trainingskarten */
.leistungen-page .training-card p {
  color: #ffffff;
}

/* Überschriften */
.leistungen-page h2,
.leistungen-page h3 {
  color: #ffffff;
  text-align: center;
}
/* =====================================================
   TRAININGSCARDS (Trainingsarten & Orte – Unterseite)
   ===================================================== */

.training-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 10px;
  margin-bottom:10px;   /* Abstand NACH Trainingsarten */
}

.training-card {
  background: #0A1B2A;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.training-card img {
  width: 100%;
  height: 350px;         /*  Bildhöhe in den Training-Cards */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.training-card h4 {
  font-size: 1.3rem;     /*  Titelgröße Training-Cards */
  margin-bottom: 10px;
  color: #fff;        /*  weiß für Titel */
}

.training-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* =====================================================
   PAKETE – Vergleich (Small / Medium / Large)
   ===================================================== */

.paket-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;

}

.paket-card {
  background: #7C9A92;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.paket-card img {
  width: 100%;
  height: 140px;         /*  Bildhöhe in den Paket-Karten */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.paket-card h4 {
background: #7C9A92;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #0a7f42;
}

.paket-card .price {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #444;
}

.paket-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 110px;
  text-align: left;
}

.paket-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.paket-btn {
  background: #7C9A92;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #222;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.paket-btn:hover {
  background: #ddd;
}

.paket-btn.main {
  background: #0a7f42;   /*  Hauptpaket-Button (Medium) */
  color: white;
}

.paket-btn.main:hover {
  background: #066532;
}

/* Highlight für das mittlere Paket (Medium) */
.highlight {
  border: 2px solid #0a7f42;
  transform: scale(1.05);
}

/* --- Für wen geeignet --- */
.paket-target-section {
  margin-top: 4rem;
  padding:9rem 1rem;
}

.paket-target-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #fff;
}

/* --- Wrapper für das Grid --- */
.paket-target-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* --- Einzelne Boxen --- */
.paket-target-box {
  background: #7C9A92;
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.07);
  border: 1px solid #7C9A92;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.paket-target-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 26px rgba(0,0,0,0.12);
}

.paket-target-box h4 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: #fff;
}

/* --- Untertitel --- */
.target-sub {
  font-weight: 600;
  color: #0a7f42;
  margin-bottom: 1rem;
}

/* --- Listenstil --- */
.paket-target-box ul {
  padding-left: 1.2rem;
  line-height: 1.5;
  color: #fff;
}

.paket-target-box li {
  margin-bottom: 0.5rem;
}

/* --- Highlight (Medium Paket) --- */
.paket-target-box.highlight {
  background: #7C9A92;
  box-shadow: 0 0 20px rgba(245, 194, 66, 0.2);
}

/* --- Responsive Anpassung --- */
@media (max-width: 992px) {
  .paket-target-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .paket-target-wrapper {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   PREISE & KONDITIONEN – Box + Liste
   ===================================================== */

.preise {
  margin-top: 40px;
}

.preise-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(260px, 1fr);
  gap: 30px;
  align-items: flex-start;
}

.preis-card,
.konditionen-card {
  background: #0A1B2A;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.preis-card {
  text-align: center;
}

.preis-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.preis-betrag {
  font-size: 2.4rem;    /*  sichtbare Preisgröße */
  font-weight: 700;
  color: #0a7f42;       /*  Preisfarbe */
  margin: 5px 0;
}

.preis-info {
  font-weight: 500;
  margin-bottom: 4px;
}

.preis-hinweis {
  font-size: 0.9rem;
  color: #555;
}

.konditionen-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.konditionen-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
}


/* =====================================================
   PAKET-HINWEIS – Erklärung App-Nutzung
   ===================================================== */

.paket-hinweis.icon {
  margin-top: 30px;
  margin-bottom: 200px;   /* Abstand NACH Trainingsarten */
  background: #7C9A92;  /* Hintergrund App-Hinweis */
  padding: 10px 15px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  line-height: 1.3;
}

.paket-hinweis.icon i {
  color: #0a7f42;       /* Icon-Farbe */
  font-size: 1.3rem;
  margin-top: 3px;
}
/* =====================================================
   IMPRESSIONEN (Swiper-Sektion)
   ===================================================== */

#impressionen {
  padding: 80px 10%;
  background-color: #0A1B2A;  /* dunkler Hintergrund für Bildergalerie */
  text-align: center;
  padding-bottom: 120px;
}

#impressionen h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Swiper-Grundlayout */
.swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;      /* Platz für Punkte unten */
  position: relative;
}

/* Bilder im Slider */
.swiper-slide img {
  width: 50%;                /* relative Bildbreite im Slider */
  height: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* Pfeile links/rechts */
.swiper-button-prev,
.swiper-button-next {
  color: #FFFFFF;               /* Pfeilfarbe */
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #A12525; /* Hover-Farbe Pfeile */
  color: #fff;
}

/* Punkte unten */
.swiper-pagination-bullet {
  background: #666;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #00c48c;       /* aktiver Punkt */
  opacity: 1;
}

/* Mobile: kleinere Bilderhöhen */
@media (max-width: 600px) {
  .swiper-slide img {
    height: 250px;
  }
}


/* =====================================================
   ERFAHRUNGEN / FEEDBACK
   ===================================================== */

.feedback {
  padding: 80px 10%;
  background-color: #0A1B2A; /* Hintergrund Feedback-Bereich */
  text-align: left;
}

.feedback h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 2.5rem;         /* Überschrift Feedback-Größe */
  margin-bottom: 40px;
}

.quotes {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* Zitat-Karten */
.feedback blockquote {
  background: white;
  border-left: 5px solid #00b894; /* farbiger Streifen links */
  border-radius: 10px;
  padding: 25px;
  width: 300px;
  font-style: italic;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* =====================================================
   Kontakt – Unterseite
   ===================================================== */

.kontakt-form {
  background-color: #fff; /* Hintergrund Feedback-Bereich */
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 16px auto 0;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8dde3;
  border-radius: 10px;
  font-size: 1rem;          /* Textgröße in den Feldern */
}

.kontakt-form button.btn {
  width: 100%;
}

.alert.error {
  background: #fee;
  color: #900;
  border: 1px solid #fbb;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}


/* =====================================================
   ÜBER MICH – Unterseite
   ===================================================== */

.ueber-mich {
  background-color: #0A1B2A;
  width: 100%;
  padding: 40px 20px;
  color: #ffffff; /* Text weiß */
}

.ueber-container {
  max-width: 1100px;
  margin: 0 auto;
}

.bild-und-text {
  display: flex;
  gap: 40px;
  align-items: flex-start;   /* Macht Bild + Text exakt auf gleicher Höhe */
}


/* Überschriften (Über mich + Untertitel) */
.ueber-mich h2,
.ueber-mich h3,
.ueber-mich h4 {
  text-align: center;
  color: #ffffff;  /* Überschrift weiß */
}

/* Fließtext linksbündig */
.ueber-mich p {
  text-align: left;
  color: #ffffff; /* Weißer Text */
  line-height: 1.7;
}

 /* ===== BULLET LISTEN – EINHEITLICH ===== */

.bullet-list {
  list-style: none;          /* Standard-Punkte aus */
  padding-left: 0;           /* Reset */
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}

/* Einzelne Punkte */
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;                 /* Abstand Icon ↔ Text */
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ffffff;
}

/* Icons (Haken / Kreuz) */
.bullet-list li i {
  flex-shrink: 0;            /* Icon bleibt sauber ausgerichtet */
  margin-top: 4px;
}

/* =====================================================
   FAQ
   ===================================================== */

/* Grundlayout */
.faq-page {
  background-color: #fff;
  color: #000;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.faq-page h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #000;
}

/* Kategorien */
.faq-category {
  margin-bottom: 2rem;
  color: #000;
}

.faq-category h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  border-left: 4px solid #4CAF50;
  padding-left: 0.75rem;
  color: #000;
}

/* FAQ-Items */
.faq-item {
  border-bottom: 1px solid #4CAF50;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

/* klickbare Frage-Zeile */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0.9rem 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  text-align: left;     /* Frage links */
  font-size: 1rem;
  color: #000;
}

.faq-question span {
  display: inline-block;
}

/* Plus-/Pfeil-Icon */
.faq-icon {
  font-weight: bold;
  color: #4CAF50;
  transition: transform 0.2s ease;
}

/* Antwort verstecken / zeigen */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 0.2rem;     /* horizontales Padding */
  color: #000;

  text-align: left;      /* <<< Antwort linksbündig */
  font-size: 1.05rem;    /* <<< saubere Lesbarkeit */
  line-height: 1.7;      /* <<< ruhiger Text */
  margin: 0;
}

/* Wenn geöffnet: mehr Platz nach oben/unten */
.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 0.4rem 0.2rem 0.8rem 0.2rem;
}

/* Icon drehen */
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #4CAF50;
}

/* Antworten im Accordion sauber lesbar */
.faq-answer p {
  text-align: left;        /* linksbündig */
  line-height: 1.7;
  margin: 0.6rem 0 0 0;
  color: #333;
  white-space: pre-line;   /* <<< macht deine Zeilenumbrüche sichtbar */
}
/* =====================================================
   Impressum
   ===================================================== */
/* Datenschutz-Seite – Grundlayout */
.datenschutz-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
    background-color: #ffffff;   /* weißer Hintergrund */
    color: #000000;              /* schwarze Schrift */
}

/* Überschrift oben */
.datenschutz-page h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Einzelne Abschnitte */
.ds-section {
    margin-bottom: 2rem;
}

/* Abschnittsüberschriften */
.ds-section h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    border-left: 4px solid #4CAF50;  /* gleicher grüner Akzent wie bei FAQ */
    padding-left: 0.75rem;
}

/* Fließtext */
.ds-section p {
    margin: 0.25rem 0 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* =====================================================
   Kalender
   ===================================================== */
#calendar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 15px;
  margin: 40px auto;
  max-width: 900px;
}

/* Monatstitel oben */
.fc-toolbar-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
}

/* Kalender-Buttons (Zurück, Weiter, Heute) */
.fc-button {
  background: #111 !important;   /* Button-Hintergrund */
  border: none !important;
  color: #fff !important;        /* Button-Text */
  border-radius: 8px !important;
  padding: 6px 12px !important;
  transition: background 0.3s;
}

.fc-button:hover {
  background: #00c48c !important; /* Hover-Farbe Grün */
}

/* Tageszellen-Hover */
.fc-daygrid-day {
  transition: background 0.2s, transform 0.2s;
}

.fc-daygrid-day:hover {
  background-color: rgba(0, 196, 140, 0.1);
  transform: scale(1.03);
  cursor: pointer;
}

/* Heute besonders hervorheben */
.fc-day-today {
  background: rgba(0, 196, 140, 0.15) !important;
  border: 1px solid #00c48c !important;
}

/* Wochenende leicht schattiert */
.fc-day-sat,
.fc-day-sun {
  background: #fafafa;
}

/* Wochentags-Kopfzeile */
.fc-col-header-cell-cushion {
  font-weight: 600;
  color: #333;
}

/* Text auf Buttons */
.fc-prev-button,
.fc-next-button,
.fc-today-button {
  text-transform: capitalize !important;
}


/* =====================================================
   BUCHUNG – Formularseite
   ===================================================== */

/* Überschriften & Einleitung zentrieren (nur globale h1/p, ggf. anpassen falls zu viel) */
h1,
p {
  text-align: center;
}

.booking-form {
  max-width: 600px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-form label {
  font-weight: 600;
}

.booking-form input,
.booking-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.booking-form button {
  background-color: #00c48c;  /* Buttonfarbe auf Buchungsseite */
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.booking-form button:hover {
  background-color: #009d72;
}

.alert-error {
  max-width: 900px;
  margin: 10px auto 20px;
  padding: 12px 16px;
  background: #ffe8e6;
  color: #b42318;
  border: 1px solid #f0b8b3;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}
/* =====================================================
   ERFOLGSSEITE NACH BUCHUNG
   ===================================================== */

.booking-success {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: #f5f7fa;  /* Hintergrund der Erfolgsseite */
  text-align: center;
}

.success-container {
  background: #fff;
  padding: 40px 60px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 600px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.success-container h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.success-container p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.success-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.success-buttons .btn {
  background-color: #00c48c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.success-buttons .btn:hover {
  background-color: #009d72;
}

.success-buttons .btn.secondary {
  background: #111;
}

.success-buttons .btn.secondary:hover {
  background: #333;
}


/* =====================================================
   SOCIAL MEDIA SIDEBAR (rechte Seite)
   ===================================================== */

.social-sidebar {
  position: fixed;
  right: 20px;                   /* Abstand zum rechten Rand */
  top: 50%;                      /* vertikal mittig */
  transform: translateY(-50%);
  background: red;               /* Hintergrund der Sidebar (Testfarbe) */
  padding: 10px;
  z-index: 9999;
  display: flex;
  flex-direction: column;        /* Icons untereinander */
  gap: 10px;                     /* Abstand zwischen Icons */
}

.social-sidebar a {
  color: white;                  /* Icon-Farbe */
  font-size: 1.0rem;             /*  Icon-Größe */
  padding: 10px;
  border-radius: 6px;
  transition: 0.2s;
}

.social-sidebar a:hover {
  transform: scale(1.2);        /* Hover-Vergrößerung */
}


/* Mobile Ansic*


