@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');

/* TOP-BAR MUSS IMMER SICHTBAR SEIN */
.top-bar {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #fffffb !important;
    background: #fffffb !important;
}

/* Desktop-Ansicht wiederherstellen */
@media (min-width: 901px) {
    .main-nav ul {
        display: flex !important;
    }
    .burger {
        display: none !important;
    }
}

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

/* GRUNDLAYOUT */
/* Standard Body */
body {
  font-family: "Lato", sans-serif;
  color: #2f3b2f;
  background-color: #fffffb;
  line-height: 1.6;

}
/* 🌸 Blumenhintergrund auf ALLEN Seiten außer Startseite UND Angebote-Seite */
body:not(.startseite):not(.angebote-seite) {
    background:
        linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
        url("blumen-hintergrund.jpg") no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    filter: brightness(0.92) contrast(1.15) saturate(1.2);
}

/* Startseite = beige */
body.startseite {
    background-color: #fffffb !important;
}

/* Angebotsseite = beige */
body.angebote-seite {
    background-color: #fffffb !important;
}






/* INTRO */
.intro {
  text-align: center;
  padding: 3rem 2rem 2rem;
  max-width: 950px;
  margin: auto;
}

.intro h2 {
  font-size: 1.9rem;
  color: #2f3b2f;
  margin-bottom: 0.7rem;
}

.untertitel {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: #c8a75d;
  letter-spacing: 0.5px;
  margin-bottom: 1.4rem;
}

.intro p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.einführungstext,
.einführungstext p,
.einführungstext * {
    text-align: justify !important;
    hyphens: auto;
    max-width: 950px;
 }
  
.zusatz {
    text-align: justify;
    max-width: 950px;
    margin: auto;           /* Container bleibt mittig */
    padding: 3rem 2rem 2rem;
}
.zusatz p,
.zusatz * {
    text-align: justify !important;
    hyphens: auto;
 } 


/* GOLDENER LINK (Startseite) */
.angebote .intro a {
  color: #c8a75d;
  text-decoration: underline;
  font-weight: 500;
}

.angebote .intro a:hover {
  color: #b49a56;
  text-decoration: underline;
}

/* ANGEBOTE - GRUNDLAYOUT */
.angebote {
  text-align: center;
  margin: 4rem auto;
  max-width: 1100px;
  padding: 0 1.5rem;
}

.angebote h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #c8a75d;
  margin-bottom: 2.5rem;
  text-align: center;
}

.angebote .themen-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align:justify;
  gap: 3rem;
}

/* ANGEBOTE - BOXEN */
.angebote .themen-box,
.angebote .erstgespraech {
  width: 100%;
  max-width: 850px;
  background: #ffffff;
  border-radius: 20px;
  padding: 2.8rem 2.5rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  text-align: justify;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 350px;
}

.angebote .themen-box:hover,
.angebote .erstgespraech:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

/* ANGEBOTE - ÜBERSCHRIFTEN */
.angebote .themen-box h3,
.angebote .erstgespraech h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #c8a75d;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* SPEZIAL-BEREICH - Unterüberschriften */
.angebote .themen-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #b89b4f;
  font-weight: 600;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

/* TEXT IN BOXEN */
.angebote .themen-box p,
.angebote .erstgespraech p {
  font-size: 1.05rem;
  color: #2f3b2f;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* KURSIV-ZEILEN */
.angebote .themen-box p em {
  display: block;
  text-align: center;
  color: #a48b4d;
  font-style: normal;
  font-size: 1rem;
  margin-top: 1rem;
}

/* DAUER UND PREIS – zentriert */
.dauer-preis {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  font-weight: 600;
  color: #2f3b2f;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* BUTTONS – angepasst */
.angebote .angebot-button,
.angebote .erstgespraech a {
  display: block;
  margin: 2rem auto 0 auto;
  background-color: #aab9a2;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: fit-content;
  min-width: 220px;
}

.angebote .angebot-button:hover,
.angebote .erstgespraech a:hover {
  background-color: #8f9e8b;
  transform: translateY(-2px);
}

/* RECHTSHINWEIS */
.rechtshinweis {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 3rem 1rem 2.5rem;
  border-top: 1px solid #e0d8cc;
  background-color: #ffffff;
}

.footer-links {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: #2f3b2f;
}

.footer-links a {
  color: #2f3b2f;
  text-decoration: none;
  margin: 0 0.3rem;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #779477;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 1rem;
  }

  .themen-grid {
    padding: 0 1rem;
  }

  .intro {
    padding: 2rem 1rem;
  }

  .dauer-preis {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ——————————————————————————————
   STARTSEITE – ANGEPASSTES DESIGN
—————————————————————————————— */
.startseite-bereich {
  background-color: rgba(255, 255, 255, 0.9);
  border-left: 5px solid #aab9a2;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin: 2rem auto;
  max-width: 950px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.startseite-bereich h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #c8a75d;
  margin-bottom: 1rem;
}

.startseite-bereich ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
}

.startseite-bereich li {
  margin-bottom: 0.4rem;
  color: #2f3b2f;
}

.startseite-bereich em {
  color: #555;
}


/* EINHEITLICHER BUTTON UNTEN */
footer button {
  background-color: #aab9a2;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 2rem;
}

footer button:hover {
  background-color: #8f9e8b;
}

/* ——————————————————————————————
   STARTSEITE – THEMENBOXEN NEBENEINANDER
—————————————————————————————— */
.themen {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.themen h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #2f3b2f;
  margin-bottom: 2.5rem;
}

.themen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  padding: 0 2rem;
}

.startseite-bereich {
  background-color: rgba(255, 255, 255, 0.95);
  border-left: 5px solid #aab9a2;
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.startseite-bereich:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.1);
}

.startseite-bereich h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #c8a75d;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

/* ——————————————————————————————
   ZUSATZTEXT
—————————————————————————————— */
.zusatztext {
  margin-top: 3rem;
  font-size: 1.05rem;
  color: #2f3b2f;
}

.rechtshinweis {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* RESPONSIVE STARTSEITE */
@media (max-width: 800px) {
  .themen-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .themen h2 {
    font-size: 1.6rem;
  }
}



/* ——————————————————————————————
   ÜBER MICH
—————————————————————————————— */
.uebermich-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

.textbereich {
  flex: 1;
}

.portraet img {
  width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ——————————————————————————————
   DUALSEELEN
—————————————————————————————— */
.dualseelen .themen-box .dauer-preis {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

.dualseelen .themen-box .preis-grid {
  margin-top: 0.4rem;
}

.dualseelen .themen-box .preis-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 220px;
}

.dualseelen .themen-box {
  margin: 2rem 0 3rem 0;
}


.dualseelen .preis {
  color: #c8a75d;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.dualseelen .preis:hover {
  color: #b49a56;
}

.dualseelen .dauer-preis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.dualseelen .kursbild {
  width: 180px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.preis-grid {
  display: flex;
  justify-content: center;  /* beide Preise in eine Zeile */
  align-items: flex-start;
  gap: 80px;                 /* Abstand zwischen links & rechts */
  margin-top: 10px;
}


/* === FOOTER KONTAKT-BUTTON FIX (funktionierende Version) === */
footer a.angebot-button {
  background-color: #aab9a2 !important;  /* salbeigrün */
  color: white !important;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;         /* Abstand nach oben */
  margin-bottom: 2.2rem;    /* Abstand nach unten – wichtig! */
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

footer a.angebot-button:hover {
  background-color: #779477 !important;
  transform: translateY(-2px);
}

/* COPYRIGHT + LINKS sauber darunter */
footer .copyright {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-links {
  font-size: 0.9rem;
  color: #333;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  margin: 0 0.3rem;
}

.footer-links a:hover {
  text-decoration: underline;
}
/* Fix: Untertitel "(Spezial)" korrekt eingerückt unter der Hauptzeile */
.themen .startseite-bereich h3 .subtitle {
    display: block;
    margin-left: 1.8rem;   /* Einzug wie vorher */
    margin-top: -0.2rem;   /* leicht nach oben gezogen */
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: #c8a75d;
}
/* =========================================
   1) FEINE, ELEGANTE BOX-ÜBERSCHRIFTEN
   ========================================= */
.themen-grid .startseite-bereich h3,
.angebote .themen-box h3,
.dualseelen-angebote-wrapper h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 500;           /* feiner, eleganter */
    color: #c8a75d;             /* Gold */
    margin-bottom: 0.7rem;
    text-align: center
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Speziell für "(Spezial)" unter der Überschrift */
.startseite-bereich h3 .subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: #c8a75d;
    margin-left: 1.8rem;
    margin-top: -0.2rem;
}

/* =========================================
   2) GOLDENER LINK AUF DER KINESIOLOGIE-SEITE
   ========================================= */
main a {
    color: #c8a75d;
    text-decoration: underline;
    font-weight: 500;
}

main a:hover {
    color: white;
}

.angebot-box {
width: 90%;
  max-width: 400px;
  background: #FDFCF8
  border-radius: 20px;
  padding: 2.8rem 4.5rem;
  margin: 3rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: justify;
  line-height: 1.7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #aab9a2;    
}

/* Titel */
.angebot-box h3 {
  font-family: "Playfair Display", serif;
  color: #c8a75d;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Trenner-Linie wie im Angebot */
.trenner {
  border: none;
  border-top: 2px solid #aab9a2;
  border-bottom: 2px solid #aab9a2;
  margin: 25px 0 20px;
}

/* Dauer-Hinweis */
.dauer-label {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

/* Preisgrid */
.dauer-preis {
      margin-top: 2rem;
  margin-bottom: 1.5rem;
  border-top: 2px solid #aab9a2;
  border-bottom: 2px solid #aab9a2;
  padding: 1rem 0;
  text-align: justify;
}
 

.preis-grid {
  display: flex;
  gap: 80px;
}

.preis-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Minuten */
.dauer {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Preis */
.preis {
  color: #b28a5a;
  font-size: 1.3rem;
  font-weight: bold;
  animation: goldpulse 2.5s infinite ease-in-out;
}

@keyframes goldpulse {
  0% { opacity: 1; }
  50% { opacity: 0.65; }
  100% { opacity: 1; }
}

/* Kontaktbutton */
.angebot-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 14px 35px;
  background: #8fa787;
  color: white;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
}

.angebot-button:hover {
  background: #779477;
}
/* ============================================
   DUALSEELEN-ANGEBOTE – IDENTISCH WIE ANGEBOTE
=============================================== */

.dualseelen-angebote-wrapper {
  width: 100%;
  max-width: 850px;
  background: rgba(255,255,255,0.65);
  border-radius: 20px;
  padding: 2.8rem 2.5rem;
  margin: 3rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: justify;
  line-height: 1.7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #aab9a2;
}

.dualseelen-angebote-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

/* gleiche H3-Größe wie Angebote */
.dualseelen-angebote-wrapper h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #c8a75d;
  margin-bottom: 1.2rem;
  text-align: center;
}

/* Beschreibungstext */
.dualseelen-angebote-wrapper p {
  font-size: 1.05rem;
  color: #2f3b2f;

  line-height: 1.7;
  margin-bottom: 1rem;
}

/* italic info */
.dualseelen-angebote-wrapper em {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
  display: block;
}

/* Preisblock identisch */
.dualseelen-angebote-wrapper .dauer-preis {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 1rem 0;
  text-align: center;
}

.dualseelen-angebote-wrapper .dauer-label {
  font-weight: 400;
  color: #555;
  margin-bottom: 1rem;
}

/* Preis-Grid exakt wie Angebote */
.dualseelen-angebote-wrapper .preis-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.dualseelen-angebote-wrapper .preis-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  transition: transform 0.2s ease;
}

.dualseelen-angebote-wrapper .preis-item:hover {
  transform: translateY(-3px);
}

.dualseelen-angebote-wrapper .preis-item .dauer {
    font-size: 1.05rem;
    color: #2f3b2f;
    margin-bottom: 0.3rem;
}


/* Gold + Animation identisch */
.dualseelen-angebote-wrapper .preis-item .preis {
  font-weight: 600;
  color: #a2874a;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  animation: goldpulse 2.5s infinite ease-in-out;
}

.dualseelen-angebote-wrapper .preis-item:hover .preis {
  color: #d4b868;
}

/* Kurs + Reading Bilder */
.dualseelen-angebote-wrapper .kursbild,
.dualseelen-angebote-wrapper .readingbild {
  max-width: 180px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

/* Kontaktbutton wie Angebote */
.dualseelen-angebote-wrapper .angebot-button {
  background-color: #aab9a2;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.dualseelen-angebote-wrapper .angebot-button:hover {
  background-color: #95a38e;
}
/* === DUALSEELEN – KURS-BOX FIX === */

/* Kursbox korrekt zentrieren */
.dualseelen-angebote-wrapper {
    max-width: 950px !important;
    margin: 40px auto !important;
    padding: 80px 60px;
}

/* Bild verkleinern & fixieren */
.dualseelen-angebote-wrapper .kursbild {
    width: 180px !important;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Drei-Spalten-Layout wie auf der Angebote-Seite */
.dualseelen-angebote-wrapper .dauer-preis {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 3rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Linke Spalte = Bild */
.dualseelen-angebote-wrapper .dauer-preis img {
    flex: 1;
}

/* Mittlere Spalte = Text */
.dualseelen-angebote-wrapper .dauer-label {
    flex: 1;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    color: #555;
}

/* Rechte Spalte = Preis */
.dualseelen-angebote-wrapper .preis-grid {
    flex: 1;
    display: flex;
    justify-content: center;
}

.dualseelen-angebote-wrapper .preis-item {
    text-align: center;
}

/* Button exakt in die Mitte */
.dualseelen-angebote-wrapper .angebot-button {
    display: block;
    margin: 30px auto 0 auto !important;
    text-align: center;
}

/* FOOTER KORREKT UNTEN */
footer {
    width: 100%;
    margin-top: 70px;
    background: white;
}
.dualseelen-angebote-wrapper .preis-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}


.dualseelen-angebote-wrapper .preis-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}
.dualseelen-angebote-wrapper {
  width: 90%;
  max-width: 400px;
  background: #FDFCF8
  border-radius: 20px;
  padding: 2.8rem 4.5rem;
  margin: 3rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: justify;
  line-height: 1.7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #aab9a2;
}

.dualseelen-angebote-wrapper .dauer-preis {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  border-top: 2px solid #aab9a2;
  border-bottom: 2px solid #aab9a2;
  padding: 1rem 0;
  text-align: justify;
}

.dualseelen-angebote-wrapper .preis-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.dualseelen-angebote-wrapper .preis-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}


.blog-box.dualseelen-box {
  background-color: #f9f6e8; /* Champagner */
  border-left: 6px solid #d8c48a; /* zartes Gold */
}

.blog-box.dualseelen-box .btn {
  background-color:  #aab9a2;
  color: #fff;
}

.blog-box.dualseelen-box .btn:hover {
  background-color: #aab9a2;
}

.blog-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;                 /* Abstand zwischen den Boxen */
  flex-wrap: wrap;           /* Damit es am Handy untereinander rutscht */
  margin: 40px auto;
  max-width: 1400px;         /* schön eingespannt, nicht zu breit */
  padding: 0 20px;
}

.blog-box {
  flex: 1 1 30%;             /* drei gleich breite Boxen */
  min-width: 300px;          /* verhindert, dass sie zu klein werden */
  max-width: 420px;          /* harmonischer Karten-Look */
}
/* Blog Boxen richtig nebeneinander erzwingen */
.blog-sections {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center;
  gap: 2rem;
}
.blog-box {
  flex: 1 1 32%;
  max-width: 450px !important;
  min-width: 330px !important;

  padding: 2.4rem;
  border-radius: 22px;

  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.blog-box h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem; /* Abstand zwischen Icon & Text */
  line-height: 1.3;
}

.blog-box h3 span.icon {
  font-size: 1.7rem;
  margin-top: 0.1rem;
}

/* ============================================
   NAVIGATION – KOMPAKT & EINHEITLICH
============================================ */
.main-nav {
    background-color: #e3e9de !important;
    background: #e3e9de !important;
    padding: 0;
    margin: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.main-nav li a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #6d7a67; /* Neutral-salbeigrün */
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav li a:hover {
    color: #b59b59; /* Gold-Hover */
}


/* ============================================
   TOP-BAR MIT LOTUS & NAME
============================================ */
.top-bar {
    background: #FDFCF8 /* Gleich wie Navigation */
    text-align: center;
    padding: 10px 0 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6d7a67;
}

/* Lotus Icon */
.lotus-icon {
    width: 50px;
    height: auto;
    margin-bottom: -2px;
    opacity: 0.95;
}

/* Titel */
.top-title {
    font-size: 1.65rem;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
    color: #6d7a67;
}

.top-title .light {
    font-weight: 300;
    margin-right: 4px;
}

.top-title .bold {
    font-weight: 650;
}

/* Untertitel BODY | MIND | SOUL */
.top-subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #b59b59;
    margin-top: 0;
}

.top-subtitle .divider {
    padding: 0 8px;
    font-weight: 400;
}



/* ============================================
   MOBILE TOP-BAR OPTIMIERUNG
============================================ */
@media (max-width: 700px) {
    .lotus-icon {
        width: 55px;
        margin-bottom: 10px;
    }

    .top-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 4px;
        position: relative !important;
    width: 100% !important;
    max-width: 100% !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;

    padding: 20px 15px !important;
    box-sizing: border-box;
    }

    .top-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .top-subtitle .divider {
        padding: 0 6px;
    }
}
@media (max-width: 700px) {



 
  .intro-weiss h1.intro-title {
    font-size: 1.7rem !important;
    line-height: 1.3 !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    margin: 0 auto 20px auto !important; /* Abstand nach unten */
    text-align: center !important;

    
  }

  .intro-weiss h1.intro-title .line1 {
    display: block;
    font-size: 1em !important;
    margin-bottom: 6px; /* Abstand zwischen Zeile 1 & 2 */
  }

  .intro-weiss h1.intro-title .line2 {
    display: block;
    font-size: 1.15em !important;
    margin-bottom: 12px; /* Abstand zum nachfolgenden Text */
  }

}

@media (max-width: 700px) {
  body,
  main {
    overflow-x: hidden !important;
  }

  main {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  main h1 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }
  
  /* Einstiegssprüche auf allen Seiten */
  main p > em {
    display: block !important;
    text-align: center !important;
    margin: 0 auto 24px auto !important;
    max-width: 100% !important;
    font-style: italic;
  }
}


/* ============================================
   SEITEN-LAYOUT & INTRO
============================================ */
.page-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-weiss {
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.intro-weiss h1 {
    font-size: 35px;
    font-family: "Playfair Display", serif;
    color: #b59b59;
    line-height: 1.2;
    margin-bottom: 25px;
    text-align: center;
}


.intro-weiss p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* =========================================================
   INTRO – TEXT
   ========================================================= */

.intro-weiss p {
    font-size: 20px;
    line-height: 1.65;
    color: #333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}



/* ============================================
   3-BEER BOXEN (PORTRAIT - ZITAT - PRAXIS)
============================================ */
.dreier-box-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px 0;
}

.dreier-box-container .box {
    flex: 1;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.dreier-box-container .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zitat-box {
    background-color: #e3e9de;
    color: black;
    font-size: 22px;
    font-family: "Playfair Display", serif;
    padding: 30px;
    text-align: center;
    display: block;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);

}
/* =========================================================
   HINTERGRUND – EINHEITLICHES BEIGE
   ========================================================= */
body,
section,
main,
.wrapper,
.page-wrapper,
.content,
footer,
header,
.top-bar {
    background-color: #fffffb !important;
}

/* GANZ WICHTIG:
   .angebote-container wird NICHT überschrieben!
*/


/* =========================================================
   INTRO – ÜBERSCHRIFT (zweizeilig, elegante Typo)
   ========================================================= */

.intro-title {
    font-family: "Playfair Display", serif;
    color: #b59b59;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 30px;
}

.intro-title .line1 {
    display: block;
    font-size: 34px;     /* Einleitungszeile */
    font-weight: 400;
}

.intro-title .line2 {
    display: block;
    font-size: 46px;     /* Hauptzeile */
    font-weight: 700;
}



/* =========================================================
   INTRO – TEXT
   ========================================================= */

.intro-weiss p {
    font-size: 20px;
    line-height: 1.65;
    color: #333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}



/* =========================================================
   TEXTBLOCK UNTER DEN 3 BILDERN
   ========================================================= */

.text-unter-bilder {
    max-width: 950px;
    margin: 90px auto 60px;
}

.text-unter-bilder h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: #b59b59;
    text-align: center;
    margin-bottom: 25px;
}

.text-unter-bilder p {
    font-size: 20px;
    line-height: 1.65;
    color: #333;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}



/* =========================================================
   ÜBERLEITUNG – "Wähle aus, wie ich dich am besten …"
   ========================================================= */

.angebote-ueberschrift {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    color: #b59b59;
    text-align: center;
    margin: 80px auto 40px;
}




/* ============================================= */
/*      ANGEBOTS-BEREICH – 2 Boxen + Zoom-Teaser */
/* ============================================= */
/* ============================================= */
/*      ANGEBOTS-BEREICH – 2 Boxen + Zoom-Teaser */
/* ============================================= */

.angebote-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: stretch; /* sorgt für gleiche Höhe */
}

/* Normale Angebotsboxen */
.angebot-card {
    flex: 1;
    background: #e3e9de;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    min-height: 650px;
  
}

.angebot-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.angebot-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.angebot-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: #b59b59;
    margin-bottom: 20px;
}

.angebot-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin-bottom: 25px;
}

/* Buttons */
.angebot-btn {
    margin-top: auto;
    background-color: #aab9a2 !important;
    color: white !important;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
}

.zoom-balken {
    background-color:#e3e9de;   /* Salbeigrün */
    color: #333;
    font-family: "Playfair Display", serif;

    width: 1200px;               /* gleiche Breite wie beide Boxen zusammen */
    max-width: 90%;              /* responsive */
    margin: 60px auto;           /* zentriert + Abstand */

    padding: 40px 30px;
    text-align: center;

    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.zoom-balken h3 {
    color: #b59b59;
    font-size: 32px;
    margin-bottom: 15px;
}

.zoom-balken p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}
/* ============================================
   ZOOM-BALKEN – Eleganter Desktop-Look
============================================ */
.zoom-balken {
    max-width: 950px;              /* macht die Box schmäler */
    margin: 60px auto;             /* zentriert die Box */
    padding: 40px 50px;            /* reduziert die Höhe */
    border-radius: 20px;           /* wirkt feiner */
}

/* Responsive */
@media (max-width: 900px) {
    .angebote-container {
        flex-direction: column;
        align-items: center;
    }
    .zoom-box {
        width: 80%;
    }
}
.burger {
    display: none;
}

/* ============================================
   BURGER ICON STANDARD (invisible on desktop)
============================================ */
.burger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  padding-left: 20px;
  color: #6d7a67;
  user-select: none;
}
@media (max-width: 900px) {
    .main-nav {
        background: transparent !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }

    /* Navigation standardmäßig unsichtbar */
    .main-nav ul {
        display: none;
        background: #e3e9de !important;
        padding: 25px 0;
        margin: 0;
        width: 100%;
    }

    /* Aktiv: Menü sichtbar */
    .main-nav.active ul {
        display: flex;
        flex-direction: column;
    }

    /* Der einzige Balken ist der BURGER-BALKEN */
    .burger {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        padding: 14px 20px;
        background: #e3e9de !important;   /* der EINZIGE Balken */
        color: #6d7a67;
        font-size: 32px;
        cursor: pointer;
        border-bottom: 1px solid #d5ddd2;
        box-sizing: border-box;
    }
}

/* ----------- Mobile Layout ab max. 768px ----------- */
@media (max-width: 768px) {
  .dreier-box-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Abstand zwischen den Boxen */
    margin: 0 auto;
    width: 90%; /* damit sie nicht zu breit wirken */
  }

  .dreier-box-container .box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .dreier-box-container .box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .dreier-box-container .zitat-box {
    padding: 25px;
    font-size: 1.1rem; /* besser lesbar am Handy */
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .cta-button {
    margin-bottom: 30px; /* Abstand unter dem Button */
  }
}

@media (max-width: 768px) {
  .dreier-box-container .box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .dreier-box-container img {
    width: 100%;
    height: auto;
    display: block;      /* verhindert „weiße Linien“ oder Verschiebungen */
    object-fit: cover;   /* gleiche Proportionen – aber nicht verzerrt */
  }

  .zitat-box {
    width: 100%;
    max-width: 100%;
    padding: 25px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .dreier-box-container {
    gap: 25px;
  }
}

/* ============================================
   MOBILE VERSION DER DREIERBOXEN
============================================ */
@media (max-width: 768px) {

    /* Gesamte Reihe untereinander anordnen */
    .dreier-box-container {
        flex-direction: column;
        gap: 25px;
        margin: 40px 0;
    }

    /* Jede Box bekommt automatische Höhe */
    .dreier-box-container .box {
        height: auto;              /* ❗ FIX gegen das Problem */
    }

    /* Bilder nicht verzerren + volle Breite */
    .dreier-box-container .box img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Zitatbox schöner lesbar am Handy */
    .zitat-box {
        font-size: 18px;
        padding: 25px;
        line-height: 1.5;
    }

    /* Abstand unter dem Button */
    .angebot-btn {
        margin-bottom: 25px !important;
    }
}

@media (max-width: 768px) {

    /* Nur die 3er-Boxen auf volle Breite bringen */
    .dreier-box-container {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .dreier-box-container .box,
    .dreier-box-container .zitat-box {
        width: 100%;
    }
}

/* ============================================
   MOBILE FIX FÜR ANGEBOTSKARTEN
============================================ */
@media (max-width: 768px) {

    /* Jede Angebotskarte untereinander, volle Breite */
    .angebote-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        padding: 0;
    }

    /* Die gesamte Karte darf flexibel wachsen */
    .angebot-card {
        display: block;     /* Entfernt Stretching durch Flexbox */
        width: 100%;
        max-width: 100%;
    }

    /* Bild oben – nicht als Hintergrund gestreckt */
    .angebot-card img {
        width: 100%;
        height: auto;
        border-radius: 12px 12px 0 0;
        object-fit: cover;
    }

    /* Textbereich: natürliche Höhe, schöne Zeilen */
    .angebot-content {
        padding: 20px;
        line-height: 1.45;  
        text-align: left;
    }

    .angebot-content p {
        margin-bottom: 14px;
        line-height: 1.45;  
    }

    .angebot-content h2 {
        margin-bottom: 12px;
        font-size: 22px;
    }

    /* Button schön nach unten */
    .angebot-btn {
        margin-top: 10px;
        display: inline-block;
    }
}

/* ============================================
   BLOKSATZ + SILBENTRENNUNG NUR FÜR FLIESSTEXT
   (NICHT für Überschriften, NICHT für Zitate)
============================================ */
@media (max-width: 768px) {

    /* Nur normale Absätze im Blocksatz */
    p, li, .angebot-content p {
        text-align: justify;
        text-justify: inter-word;

        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        -moz-hyphens: auto;

        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* Überschriften bleiben normal */
    h1, h2, h3, h4 {
        text-align: left;
        hyphens: none;
    }

    /* Zitatbox bleibt zentriert */
    .zitat-box {
        text-align: center !important;
        hyphens: none;
    }
}

@media (max-width: 768px) {

    /* Überschriften in Angebotsboxen zentrieren */
    .angebot-content h2 {
        text-align: center !important;
        hyphens: none;
    }

@media (max-width: 768px) {

    /* Zoombalken – sauberer Blocksatz + Silbentrennung */
    .zoom-balken, .zoom-balken p {
        text-align: justify;
        text-justify: inter-word;

        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        -moz-hyphens: auto;

        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* Überschrift im Zoombalken bleibt mittig */
    .zoom-balken h2, .zoom-balken h1 {
        text-align: center !important;
        hyphens: none;
    }
}
@media (max-width: 768px) {

    /* Footer-Links in EINER Zeile, zentriert */
    .footer-links {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 12px !important;
        padding: 0;
        margin: 0 auto;
    }

    .footer-links li {
        display: inline-block !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }

    .footer-links a {
        white-space: nowrap !important;
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {

    /* Überschrift im Zoombalken wieder zentriert */
    .zoom-balken h1,
    .zoom-balken h2,
    .zoom-balken h3 {
        text-align: center !important;
        hyphens: none !important;
    }

    /* Fließtext im Zoombalken in Blocksatz + Silbentrennung */
    .zoom-balken p,
    .zoom-balken div,
    .zoom-balken span {
        text-align: justify !important;
        text-justify: inter-word !important;

        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -ms-hyphens: auto !important;
        -moz-hyphens: auto !important;

        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
}
@media (max-width: 768px) {

    footer {
        text-align: center !important;
    }

    /* Alle Elemente im Footer zentrieren */
    footer * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Footer-Links als flex – zentriert */
    .footer-links {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        padding: 0;
    }

    .footer-links li {
        display: inline-block !important;
        white-space: nowrap !important;
    }

    .footer-links a {
        white-space: nowrap !important;
        font-size: 14px !important;
    }
}
body.startseite .main-nav {
    background-color: #e3e9de !important;
    background: #e3e9de !important;
}
body.startseite .top-bar {
    background-color: #FDFCF8 !important;
    background: #FDFCF8 !important;
}
/* ============================================================
   GLOBALER MOBILE-FIX FÜR BLOGARTIKEL (ohne HTML-Anpassung)
   ============================================================ */
@media (max-width: 768px) {

    /* Blog-Artikel Layout korrigieren */
    .blog-artikel-seite .artikel-box {
        display: block !important;
        padding: 22px !important;
        width: 100% !important;
    }

    /* Zitatbox richtig zentrieren + volle Breite */
    .blog-artikel-seite .zitat-box {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px auto !important;
        text-align: center !important;
        padding: 22px !important;
    }

    /* Text in der Zitatbox */
    .blog-artikel-seite .zitat-text,
    .blog-artikel-seite .zitat-author {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }

    /* Blog-Überschriften sauber zentrieren */
    .blog-artikel-seite h1,
    .blog-artikel-seite h2,
    .blog-artikel-seite h3 {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
}
/* ============================================================
   GLOBALER FIX FÜR MOBILES WACKELN & UNTERSCHIEDLICHE BREITEN
   ============================================================ */

/* 1) Horizontalen Overflow FÜR DIE GESAMTE WEBSITE deaktivieren */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* 2) Alle Container auf saubere Breite begrenzen */
* {
    box-sizing: border-box;
}

/* 3) Typische Problemkandidaten im Responsive-Modus korrigieren */
@media (max-width: 768px) {

    img, video {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Blogartikel, Startseite, Angebote – gleiche Breite */
    .page-wrapper,
    .blog-artikel-seite,
    .angebote-container,
    .artikel-box,
    .blog-artikel,
    .dreier-box-container,
    .text-unter-bilder,
    .intro-weiss {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow-x: hidden !important;
    }
}
/* ============================================================
   MOBILE FIX – KONTAKTSEITE
   ============================================================ */
@media (max-width: 768px) {

    /* Hauptbereich nicht mehr zu breit */
    main {
        max-width: 100% !important;
        width: 100% !important;
        padding: 30px 20px !important;
        border-left: none !important; /* Streifen entfernen, da es sonst verschiebt */
        margin: 20px auto !important;
        box-sizing: border-box !important;
    }

    /* Überschrift zentriert & kleiner */
    main h2 {
        font-size: 1.9rem !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    /* Absatztext schön lesbar */
    main p {
        text-align: justify !important;
        hyphens: auto !important;
        line-height: 1.5 !important;
    }

    /* FORMULAR-Container fix zentral */
    .kontakt-form {
        width: 100% !important;
        padding: 0 !important;
        align-items: center !important;
    }

    /* Labels zentriert statt links */
    .kontakt-form label {
        margin-left: 0 !important;
        width: 100% !important;
        text-align: left !important;
        font-size: 1rem !important;
    }

    /* Eingabefelder auf 100% Breite */
    .kontakt-form input,
    .kontakt-form textarea,
    .kontakt-form select {
        width: 100% !important;
        font-size: 1rem !important;
        padding: 0.9rem !important;
        border-radius: 10px !important;
        box-sizing: border-box !important;
    }

    /* Select-Felder sichtbar größer */
    .kontakt-form select {
        height: 48px !important;
    }

    /* Button auf volle Breite */
    .kontakt-form button {
        width: 100% !important;
        padding: 1rem !important;
        border-radius: 20px !important;
    }

    /* Kontakt-Daten zentrieren */
    .kontakt-daten {
        margin-top: 40px !important;
        text-align: center !important;
        width: 100% !important;
    }

    /* Footer auf Mobile immer sauber zentriert */
    footer {
        text-align: center !important;
        padding: 1.5rem 0 !important;
    }

    .footer-links {
        justify-content: center !important;
        gap: 10px !important;
        font-size: 14px !important;
    }
}
/* ============================================================
   FIX: "Praxisadresse"-Überschrift auf Kontaktseite zentrieren
   ============================================================ */

@media (max-width: 768px) {
    .kontakt-daten h3 {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
}
/* ============================================================
   MOBILE FIX – ZOOM-BALKEN AUF STARTSEITE
   ============================================================ */
@media (max-width: 768px) {

    .zoom-balken {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        margin: 30px auto !important;

        /* verhindert jede Überbreite */
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;

        /* Layout sauber mobile-fähig */
        text-align: center !important;
    }

    .zoom-balken h3,
    .zoom-balken p {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        hyphens: auto;
    }
}
/* ============================================ */
/* ANGEBOTSSEITE – gleiche Boxen wie Startseite */
/* ============================================ */

.angebote-neu .angebote-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.angebote-neu .angebot-card {
    flex: 1 1 430px;
    background: #e3e9de;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    min-height: 680px;
}

.angebote-neu .angebot-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.angebote-neu .angebot-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.angebote-neu .angebot-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: #b59b59;
    margin-bottom: 20px;
}

.angebote-neu .angebot-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin-bottom: 22px;
}

/* Preisblock */
.angebote-neu .dauer-preis {
    background: transparent;
    padding: 10px 0 20px;
    text-align: center;
}

.angebote-neu .preis-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.angebote-neu .preis-item {
    text-align: center;
}

.angebote-neu .preis {
    font-size: 1.3rem;
    color: #a2874a;
    font-weight: 600;
}

.angebote-neu .dauer {
    font-size: 1rem;
    color: #2f3b2f;
}

/* Buttons */
.angebote-neu .angebot-btn {
    margin-top: auto;
    background-color: #aab9a2 !important;
    color: white !important;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
}

/* Spezialbereich Überschrift */
.spezial-ueberschrift {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    text-align: center;
    color: #c8a75d;
    margin: 60px 0 30px;
}

/* Responsive */
@media (max-width: 900px) {
    .angebote-neu .angebote-container {
        flex-direction: column;
        gap: 40px;
    }

    .angebote-neu .angebot-card {
        min-height: unset;
    }
}
/* ===========================================================
   ANGEBOTSSEITE – ANGLEICHUNG AN STARTSEITE
   =========================================================== */

.angebote .themen-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

/* Standard-Angebotskarten wie auf Startseite */
.angebote .themen-box {
    width: 100%;
    max-width: 900px;
    background: #e3e9de; /* gleich wie Startseite */
    border-radius: 12px;
    overflow: hidden;
    padding: 0;               /* Startseite hat kein Padding oben */
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    text-align: center;
}

/* Bild oben gleich wie Startseite */
.angebote .themen-box img {
    width: 100%;
    height: 320px;          /* gleiche Bildhöhe wie Startseite */
    object-fit: cover;
    display: block;
    margin: 0;
}

/* Inhaltsteil */
.angebote .themen-box .box-content {
    padding: 40px;
    text-align: center;
}

/* Titel */
.angebote .themen-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: #b59b59;
    margin-bottom: 20px;
    text-align: center;
}

/* Text */
.angebote .themen-box p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin-bottom: 20px;
}

/* Dauer/Preis-Bereich */
.angebote .dauer-preis {
    padding: 25px 0;
    border-top: 1px solid #c8d2c2;
    border-bottom: 1px solid #c8d2c2;
    margin-bottom: 20px;
}

.angebote .preis-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

/* Buttons */
.angebote .angebot-button {
    margin: 30px auto 40px;
    background-color: #aab9a2 !important;
    color: white !important;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 18px;
    width: fit-content;
}

/* Spezialbereich Titel */
.angebote h2.spezial {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    color: #b59b59;
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: center;
}

/* MOBILE VERSION */
@media(max-width: 768px){

    .angebote .themen-box {
        max-width: 100%;
        border-radius: 12px;
    }

    .angebote .themen-box img {
        height: 240px;
    }

    .angebote .preis-grid {
        flex-direction: column;
        gap: 20px;
    }

    .angebote .themen-box p {
        text-align: justify;
        hyphens: auto;
    }
}
/* =======================================
   ERSTGESPRÄCH – gleiche Box wie Angebote
======================================= */
.erstgespraech-box {
    max-width: 1200px;
    background: #e3e9de;
    border-radius: 12px;
    padding: 40px;
    margin: 60px auto;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    text-align: center;
}

.erstgespraech-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: #b59b59;
    margin-bottom: 20px;
}

.erstgespraech-box p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.erstgespraech-box .angebot-btn {
    display: inline-block;
    margin-top: 20px;
}
/* ==========================================
   MOBILE FIX – ANGEBOTE-SEITE
   ========================================== */
@media (max-width: 768px) {

    /* Karten sollen automatisch wachsen */
    .angebot-card {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        margin: 20px auto;
        padding-bottom: 20px; /* verhindert Abschneiden */
    }

    /* Bilder kleiner halten */
    .angebot-card img {
        height: 180px !important;
        object-fit: cover;
    }

    /* Inhalte besser lesbar & nicht abgeschnitten */
    .box-content,
    .angebot-content {
        padding: 20px !important;
    }

    /* Überschriften kleiner */
    .angebot-card h2 {
        font-size: 26px !important;
        margin-bottom: 12px;
    }

    /* Absätze etwas kleiner, damit nichts überläuft */
    .angebot-card p {
        font-size: 17px !important;
        line-height: 1.45;
        text-align: left; /* bessere Mobil-Lesbarkeit */
    }

    /* Preisbereich */
    .preis-grid {
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* Buttons immer sichtbar */
    .angebot-btn {
        font-size: 17px !important;
        padding: 12px 20px !important;
        margin-top: 20px !important;
        width: 100%;
        text-align: center;
    }
}
/* =====================================================
   MOBILE FIX – ANGEBOTE SEITE (NEUE VERSION)
   ===================================================== */
@media (max-width: 700px) {

    /* Jede Box wird ein eigener Block, volle Breite */
    .angebote-container {
        display: block !important;
        width: 100%;
    }

    /* Karten wachsen automatisch und werden nie abgeschnitten */
    .angebot-card {
        width: 100% !important;
        max-width: 100%;
        margin: 0 auto 40px auto !important;
        padding-bottom: 30px !important;
        height: auto !important;     /* WICHTIG */
        overflow: visible !important; /* WICHTIG */
    }

    /* Bild kleiner */
    .angebot-card img {
        height: 180px !important;
        object-fit: cover;
        width: 100%;
    }

    /* Inhalt */
    .angebot-content,
    .box-content {
        padding: 20px !important;
        height: auto !important;  /* WICHTIG */
    }

    /* Texte */
    .angebot-card h2 {
        font-size: 26px !important;
    }

    .angebot-card p {
        font-size: 17px !important;
        line-height: 1.45 !important;
        text-align: left !important;
    }

    /* Preisraster */
    .preis-grid {
        flex-direction: column !important;
        gap: 14px !important;
    }

    /* Buttons */
    .angebot-btn {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 18px !important;
        padding: 14px !important;
        margin-top: 25px !important;
    }
}
@media (max-width: 700px) {
@media (max-width: 768px) {

  /* Angebote-Boxen: zentriert & volle Breite */
  .dualseelen-angebote-wrapper {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
    text-align: center;
  }

  /* Fließtext in Angeboten */
  .dualseelen-angebote-wrapper p {
    text-align: center;
  }

  /* Aufzählungen IMMER linksbündig lassen */
  .dualseelen-angebote-wrapper ul {
    text-align: left !important;
    padding-left: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    list-style-position: outside;
  }

  .dualseelen-angebote-wrapper li {
    margin-bottom: 6px;
  }

}
.dualseelen-angebote .angebot-card {
  background: #f7f2f0;
}
/* =========================
   LOGIN-SEITE – FIX
   ========================= */

/* Globalen main-Background auf Login-Seite aufheben */
body.login-seite main {
  background: rgba(255, 255, 255, 0.65) !important;
  max-width: 950px;
  margin: 60px auto;
  padding: 60px 70px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-left: 5px solid #aab9a2;
}

/* Blumenhintergrund behalten */
body.login-seite {
  background:
    linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
    url("blumen-hintergrund.jpg") no-repeat center center fixed;
  background-size: cover;
}
/* 🌸 KEIN Blumenhintergrund im Kursbereich */
body.kursbereich {
  background: #fffef9 !important;
}
