/*
Theme Name: MindBox Coaching Modern v6
Description: Modernes, ruhiges Coaching-Theme mit Grid, Icons, Banner, Farbverlauf #FFF5E8 und angepasstem Menü
Version: 1.5
*/

body {
  font-family: 'Lato', 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #222;
  margin: 0;
  background: linear-gradient(to bottom, #FFF5E8 0%, #fff 80%);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.site-header {
  text-align: center;
  padding: 2.5rem 0 1.5rem;
  background: transparent;
  box-shadow: none;
}
.site-logo img {
  max-width: 260px;
  height: auto;
}

.main-nav {
  margin: 2rem 0 0.5rem;
}
.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 0;
}
.social-icon.ig {
  color: #317873;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
}
.social-icon.ig:hover { color: #e67e22; }
.main-nav a {
  text-decoration: none;
  color: #2c7a7b;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #e67e22;
}

.hero-banner {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}
.hero-banner img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.content-section {
  max-width: 800px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.content-section h2 {
  font-size: 2.1rem;
  font-weight: 300;
  color: #2c7a7b;
  margin-bottom: 1.5rem;
}
.content-section h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.2rem;
}
.content-section p {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #444;
}

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin: 2.5rem 0 3.5rem;
}
@media (max-width: 900px) {
  .coaching-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .coaching-grid {
    grid-template-columns: 1fr;
  }
}
.coaching-item {
  background: #f9f9f9;
  border-radius: 1.2rem;
  padding: 2.2rem 1.2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: box-shadow 0.2s;

  align-items: center;
  text-align: center;}
.coaching-item:hover {
  box-shadow: 0 6px 24px rgba(44,122,123,0.10);
}
.coaching-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  border-radius: 0.7rem;
  background: #fff;
}
.coaching-item h4 {
  font-size: 1.18rem;
  color: #2c7a7b;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.coaching-item p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.2rem;
}

.cta-button {
  display: inline-block;
  background: #2c7a7b;
  color: white;
  padding: 0.7rem 2rem;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: 500;
  transition: background 0.3s;
  margin: 1rem 0 0;
}
.cta-button:hover {
  background: #e67e22;
  color: #fff;
}

.about-section {
  background: #f9f9f9;
  padding: 3.5rem 0 3rem;
  margin: 3.5rem 0 0;
}
.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;

    line-height: 1.6;}
.about-portrait {
  margin: 2rem auto 1.5rem auto;
  display: block;
  text-align: center;
  width: 160px;
  height: 160px;
}
  margin: 2rem 0 1.5rem;
}
.about-portrait img {
  max-width: 200px;     /* kleiner machen, z.B. 200px */
  height: auto;
  border-radius: 50%;   /* rundes Bild */
  object-fit: cover;    /* Bildfüllung */
  display: inline-block;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* optional: sanfter Schatten */
}


.contact-section {
  text-align: center !important;
  padding: 2.5rem 0 2rem;
}
.contact-info {
  font-size: 1.08rem;
  margin: 1.5rem 0 2rem;
}
.contact-info strong {
  color: #2c7a7b;
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 0 1rem;
  text-align: center;
  margin-top: 3rem;
}
.footer-nav {
  margin-bottom: 1rem;
}
.footer-nav a {
  color: #666;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.95rem;
}
.footer-nav a:hover {
  color: #2c7a7b;
}

@media (max-width: 800px) {
  .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}
  .site-header {
    padding: 1.5rem 0 1rem;
  }
  .site-logo img {
    max-width: 170px;
  }
  .main-nav ul {
    gap: 1.2rem;
  }
  .hero-banner img {
    max-height: 220px;
  }
  .about-portrait img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  border: 4px solid #fff;
  display: block;
  margin: 0 auto;
}

}

.about-block, .contact-block, .content-container, .grid-section, .intro-text-block {
  text-align: center;
}
.about-block p, .contact-block p, .content-container p, .grid-section p, .intro-text-block p {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

/* Blocksatz überall, Container mittig, Überschriften zentriert */
.home .intro-text-block, .home .grid-section {
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.about-block, .contact-block, .content-container, .grid-section, .intro-text-block {
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.block-title, .about-block h2, .about-block h3 {
  text-align: center;
}

/* Coaching-Angebote: Buttons immer unten */
.coaching-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;

  align-items: center;
  text-align: center;}
.coaching-item a, .coaching-item button {
  margin-top: auto;
}

.main-headline {
  text-align: left;
  font-size: 2.5rem;
  font-weight: 400;
  color: #3a6c6b;
  text-align: left !important;
  margin-top: 2.2rem !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.2;
}



@media (max-width: 768px) {
  
}

@media (max-width: 600px) {
  .heart-banner-row {
    gap: 0.4rem;
    flex-wrap: wrap;
    overflow-x: hidden;
  }
  .heart-banner-row img {
    height: auto; /* This is the key change */
    object-fit: contain !important;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1100px) {
  .heart-banner-row img { width: 260px; height: 170px; }
}
@media (max-width: 900px) {
  .heart-banner-row img { width: 180px; height: 120px; }
}
@media (max-width: 600px) {
  .heart-banner-row {
    gap: 0.7rem;
  }
  .heart-banner-row img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: 110px;
  }
}

.angebot-detail-text { text-align: justify; }

.main-headline {
  font-family: 'Lato', 'Montserrat', Arial, sans-serif !important;
  font-size: 2.7rem !important;
  font-weight: 400 !important;
  color: #3a6c6b !important;
  text-align: left !important;
  margin-top: 2.2rem !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: 0.01em !important;
  line-height: 1.18 !important;
}

body .main-headline {
  font-family: 'Lato', 'Montserrat', Arial, sans-serif !important;
  font-size: 2.7rem !important;
  font-weight: 400 !important;
  color: #3a6c6b !important;
  text-align: left !important;
  margin-top: 2.2rem !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: 0.01em !important;
  line-height: 1.18 !important;
  
}

.hero-banner-container {
  width: 100%;
  max-width: none;
  margin: 0 0 2.5rem 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.hero-banner-container img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-banner img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: block;
  margin-bottom: 2.5rem;
}

body {
  background-color: #FFF4E8 !important;
}
header, .site-header, .navbar, #masthead {
  background: #FFF4E8 !important;
  background-color: #FFF4E8 !important;
  box-shadow: none !important;
}

.mainpage-textblock {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}
.mainpage-textblock p,
.mainpage-textblock strong,
.mainpage-textblock h3 {
  text-align: justify;
}

/* Blocksatz auch auf Coaching-Seite */
.mainpage-textblock {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}
.mainpage-textblock p,
.mainpage-textblock strong,
.mainpage-textblock h2,
.mainpage-textblock h3 {
  text-align: justify;
}

.mainpage-textblock {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}
.mainpage-textblock p,
.mainpage-textblock strong {
  text-align: justify;
}

.mainpage-textblock {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}
.mainpage-textblock p,
.mainpage-textblock strong {
  text-align: justify;
}

.mainpage-textblock {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}
.mainpage-textblock p,
.mainpage-textblock strong {
  text-align: justify;
}

.main-headline {
  font-size: 2.5rem;
  font-family: Montserrat, Arial, sans-serif;
  color: #3a6b5e;
  font-weight: 400;
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-headline {
  font-size: 1.6rem;
  font-family: Montserrat, Arial, sans-serif;
  color: #3a6b5e;
  font-weight: 500;
  text-align: left;
  margin: 2.5rem 0 1.5rem 0;
}

.section-headline {
  font-size: 1.6rem;
  font-family: Montserrat, Arial, sans-serif;
  color: #3a6b5e;
  font-weight: 500;
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
}

.section-headline {
  font-size: 1.6rem;
  font-family: Montserrat, Arial, sans-serif;
  color: #3a6b5e;
  font-weight: 500;
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
}

.section-headline {
  font-size: 1.6rem;
  font-family: Montserrat, Arial, sans-serif;
  color: #222;
  font-weight: 500;
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
}

/* Section Headlines - schwarze Überschriften wie auf Index */
.section-headline {
  font-size: 1.6rem;
  font-family: Montserrat, Arial, sans-serif;
  color: #222;
  font-weight: 500;
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
}


/* Text-Overlay im Banner */
.hero-banner {
  position: relative;
}

.banner-text-overlay {
  position: absolute;
  top: 12%;
  left: 5%;
  max-width: 480px;
  color: #fff;
  z-index: 2;
  text-align: left;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.banner-text-headline {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
  line-height: 1.3;
}

.banner-text-sub {
  font-size: 1.13rem;
  line-height: 1.6;
}


  .banner-text-headline {
    font-size: 1.1rem;
  }
  .banner-text-sub {
    font-size: 0.98rem;
  }
}

body {
  overflow-x: hidden;
}


}


  .mainpage-textblock,
  .content-section {
    padding-left: 0;
    padding-right: 0;
  }
  .about-content {
    flex-direction: column;
    align-items: flex-start;
  
    line-height: 1.6;}
  .about-portrait {
  margin: 2rem auto 1.5rem auto;
  display: block;
  text-align: center;
  width: 160px;
  height: 160px;
}
    margin-bottom: 1.5rem;
    max-width: 220px;
    width: 100%;
  }
  .about-portrait img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  border: 4px solid #fff;
  display: block;
  margin: 0 auto;
}

  .accordion {
    margin-left: 0;
    margin-right: 0;
  }
}



  .about-content {
    flex-direction: column;
    align-items: flex-start;
  
    line-height: 1.6;}

  .about-portrait {
  margin: 2rem auto 1.5rem auto;
  display: block;
  text-align: center;
  width: 160px;
  height: 160px;
}
    margin-bottom: 1.5rem;
    max-width: 220px;
    width: 100%;
  }

  .about-portrait img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  border: 4px solid #fff;
  display: block;
  margin: 0 auto;
}


  .coaching-item {
    margin-bottom: 2rem;
  }

  .hero-banner img {
    width: 100%;
    height: auto;
  }
}


  h2, .section-headline {
    font-size: 1.15rem;
    word-break: break-word;
    letter-spacing: normal;
  }
  h3 {
    font-size: 1.05rem;
  }
}

@media (max-width: 700px) {
  /* Alle Container und Wrapper einheitlich */
  .container,
  .content-section,
  .about-section,
  .contact-section,
  .mainpage-textblock,
  .coaching-grid,
  .about-content,
  .accordion,
  .accordion-content,
  .blog-single,
  .blog-content,
  main,
  section,
  div[class*="content"],
  div[class*="section"] {
    max-width: 100vw !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  /* Überschriften kleiner */
  h1, .main-headline {
    font-size: 1.5rem !important;
    word-break: break-word;
    letter-spacing: normal;
  }
  h2, .section-headline {
    font-size: 1.15rem !important;
    word-break: break-word;
    letter-spacing: normal;
  }
  h3 {
    font-size: 1.05rem !important;
  }

  /* About-Bereich */
  .about-content {
    flex-direction: column;
    align-items: flex-start;
  
    line-height: 1.6;}

  .about-portrait {
  margin: 2rem auto 1.5rem auto;
  display: block;
  text-align: center;
  width: 160px;
  height: 160px;
}
    margin-bottom: 1.5rem;
    max-width: 220px;
    width: 100%;
  }

  .about-portrait img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  border: 4px solid #fff;
  display: block;
  margin: 0 auto;
}


  /* Coaching Grid */
  .coaching-item {
    margin-bottom: 2rem;
  }

  /* Hero Banner */
  .hero-banner img {
    width: 100%;
    height: auto;
  }

  /* Verhindere horizontales Scrollen */
  body {
    overflow-x: hidden !important;
  }
}


/* ========================================
   EINHEITLICHE BLOG-FORMATIERUNG
   Alle Blog-Seiten haben jetzt die gleiche
   Formatierung wie Startseite und Herz-Seite
   ======================================== */

/* Blog-Hauptseite */
.blog-content,
.blog-main,
.blog-container,
.post-content,
.entry-content,
.single-post .content,
.blog .content {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
}

/* Alle Blog-Paragraphen */
.blog-content p,
.blog-main p,
.blog-container p,
.post-content p,
.entry-content p,
.single-post p,
.blog p,
article p {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem;
    color: #333;
    text-align: justify;
}

/* Blog-Titel */
.blog-title,
.post-title,
.entry-title,
.single-post h1,
.blog h1,
article h1 {
    font-size: 2.2rem !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d2a26;
    text-align: left;
}

/* Blog-Untertitel */
.blog h2,
.post-content h2,
.entry-content h2,
.single-post h2,
article h2 {
    font-size: 1.4rem !important;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #2d2a26;
}

/* Blog-Listen */
.blog-content ul,
.blog-content ol,
.post-content ul,
.post-content ol,
.entry-content ul,
.entry-content ol,
.single-post ul,
.single-post ol,
article ul,
article ol {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.blog-content li,
.post-content li,
.entry-content li,
.single-post li,
article li {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Blog-Zitate */
.blog-content blockquote,
.post-content blockquote,
.entry-content blockquote,
.single-post blockquote,
article blockquote {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    font-style: italic;
    border-left: 3px solid #2d2a26;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #555;
}

/* Blog-Container */
.blog-wrapper,
.post-wrapper,
.single-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Responsive Anpassungen für Blog */
@media (max-width: 768px) {
    .blog-content,
    .blog-main,
    .blog-container,
    .post-content,
    .entry-content,
    .single-post .content,
    .blog .content {
        font-size: 1rem !important;
    }

    .blog-content p,
    .blog-main p,
    .post-content p,
    .entry-content p,
    .single-post p,
    .blog p,
    article p {
        font-size: 1rem !important;
    }

    .blog-title,
    .post-title,
    .entry-title,
    .single-post h1,
    .blog h1,
    article h1 {
        font-size: 1.8rem !important;
    }
}

/* WordPress Standard-Klassen */
.wp-block-paragraph {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem;
    color: #333;
}

.wp-block-heading {
    font-weight: 600;
    color: #2d2a26;
    margin: 2rem 0 1rem 0;
}

/* Sicherstellen dass alle Textinhalte erfasst werden */
main p,
section p,
article p,
.content p,
.post p,
.page p {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    color: #333;
}

/* Blog-Navigation und Meta-Informationen */
.blog-meta,
.post-meta,
.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}


/* ========================================
   MOBILE BLOG-OPTIMIERUNG
   Responsive Design für alle Bildschirmgrößen
   ======================================== */

/* Blog-Container Mobile-First */
.blog-container,
.mainpage-textblock {
    max-width: 700px !important;
    margin-top: 2.2rem !important;
    padding: 1rem !important;
    box-sizing: border-box;
}

/* Blog-Posts Mobile Styling */
.blog-post,
article {
    margin-bottom: 2rem !important;
    padding: 1.5rem !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

/* Mobile Responsive Breakpoints */
@media (max-width: 768px) {
    .blog-container,
    .mainpage-textblock {
        margin-top: 100px !important;
        padding: 0.75rem !important;
    }

    .blog-post,
    article {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .blog-title,
    .section-headline {
        font-size: 1.8rem !important;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-container,
    .mainpage-textblock {
        padding: 0.5rem !important;
        margin-top: 90px !important;
    }

    .blog-post,
    article {
        padding: 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    .blog-title,
    .section-headline {
        font-size: 1.6rem !important;
        padding: 0 0.25rem;
    }
}

@media (max-width: 320px) {
    .blog-container,
    .mainpage-textblock {
        padding: 0.25rem !important;
    }

    .blog-post,
    article {
        padding: 0.5rem !important;
    }
}

/* Sicherstellen dass alle Container responsive sind */
main,
.content,
.post-content,
.entry-content {
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

/* Text sollte nie über den Bildschirmrand hinausgehen */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}


/* ========================================
   SPACING-OPTIMIERUNG
   Entfernt große Leerräume und optimiert Abstände
   ======================================== */

/* Kompakte Abstände für Content-Sections */
.content-section {
    margin-bottom: 2rem !important;
    padding: 0 !important;
}

.content-section:last-of-type {
    margin-bottom: 3rem !important;
}

/* Hero Banner Abstände */
.hero-banner {
    margin-bottom: 2rem !important;
    margin-top: 0 !important;
}

/* Textblock Abstände */
.mainpage-textblock {
    margin-bottom: 1rem !important;
    padding: 0 !important;
}

/* Section Headlines */
.section-headline {
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}

/* H2 Abstände */
h2 {
    margin-bottom: 1.5rem !important;
    margin-top: 0 !important;
}

/* H3 Abstände */
h3 {
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}

/* Paragraphen Abstände */
p {
    margin-bottom: 1rem !important;
}

p:last-child {
    margin-bottom: 0 !important;
}

/* Coaching Grid Abstände */
.coaching-grid {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

/* About und Contact Section Abstände */
.about-section,
.contact-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Mobile Spacing Optimierung */
@media (max-width: 768px) {
    .content-section {
        margin-bottom: 1.5rem !important;
    }

    .hero-banner {
        margin-bottom: 1.5rem !important;
    }

    .about-section,
    .contact-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    h2 {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 480px) {
    .content-section {
        margin-bottom: 1rem !important;
    }

    .hero-banner {
        margin-bottom: 1rem !important;
    }
}

/* Entferne alle unnötigen Margins und Paddings */
.container > *:first-child {
    margin-top: 0 !important;
}

.container > *:last-child {
    margin-bottom: 0 !important;
}


/* ========================================
   MINIMALE ABSTÄNDE - KEINE LEERRÄUME
   Extrem kompakte Darstellung
   ======================================== */

/* Alle Sections minimale Abstände */
.content-section {
    margin-bottom: 0.5rem !important;
    padding: 0 !important;
}

/* Hero Banner minimal */
.hero-banner {
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}

/* Textblöcke kompakt */
.mainpage-textblock {
    margin-bottom: 0.5rem !important;
    padding: 0 !important;
}

/* Headlines kompakt */
.section-headline {
    margin-bottom: 0.75rem !important;
    margin-top: 0 !important;
}

h2 {
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}

h3 {
    margin-bottom: 0.75rem !important;
    margin-top: 0 !important;
}

/* Paragraphen sehr kompakt */
p {
    margin-bottom: 0.75rem !important;
    margin-top: 0 !important;
}

p:last-child {
    margin-bottom: 0 !important;
}

/* Coaching Grid kompakt */
.coaching-grid {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* Sections direkt aneinander */
.content-section + .content-section {
    margin-top: 0 !important;
}

/* Container ohne zusätzliche Abstände */
.container > *:first-child {
    margin-top: 0 !important;
}

.container > *:last-child {
    margin-bottom: 0 !important;
}

/* Mobile extrem kompakt */
@media (max-width: 768px) {
    .hero-banner {
        margin-bottom: 0.75rem !important;
    }

    .content-section {
        margin-bottom: 0.25rem !important;
    }

    .mainpage-textblock {
        margin-bottom: 0.25rem !important;
    }

    p {
        margin-bottom: 0.5rem !important;
    }

    .section-headline {
        margin-bottom: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        margin-bottom: 0.5rem !important;
    }

    .content-section {
        margin-bottom: 0.1rem !important;
    }
}

/* Entferne alle Standard-Margins */
* {
    margin: 0;
    padding: 0;
}

/* Nur explizit definierte Abstände */
.hero-banner,
.content-section,
.mainpage-textblock,
h1, h2, h3, h4, h5, h6,
p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Dann nur die gewünschten Abstände hinzufügen */
.hero-banner {
    margin-bottom: 1rem !important;
}

.content-section {
    margin-bottom: 0.5rem !important;
}

.content-section h2 {
    margin-bottom: 1rem !important;
}

.content-section h3 {
    margin-bottom: 0.75rem !important;
}

.mainpage-textblock p {
    margin-bottom: 0.75rem !important;
}


/* ========================================
/* Banner Container */
.banner-container,
.banner-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Hero Banner Zentrierung */
.hero-banner {
    margin: 0 auto !important;
    display: block !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}

/* Kontakt-Seite spezifische Zentrierung */
.page-template-page-kontakt .hero-banner {
    margin: 0 auto !important;
    display: block !important;
    text-align: center !important;
}

/* Flexbox Zentrierung für alle Banner */
.hero-banner,
.banner-container .hero-banner {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Container Zentrierung */
.container {
    margin: 0 auto !important;
    text-align: left;
}

.container .hero-banner {
    margin: 0 auto !important;
}

/* Sicherstellen dass nichts linksbündig ist */
.hero-banner img {
    margin: 0 auto !important;
    display: block !important;
}


/* ========================================
   KEINE ABSTÄNDE zwischen Überschriften
   Eliminiert alle großen Leerräume
   ======================================== */

/* Alle Sections ohne Abstände */
.content-section {
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Banner minimal */
.hero-banner {
    margin-bottom: 0.5rem !important;
    margin-top: 0 !important;
}

/* Überschriften ohne große Abstände */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

/* Textblöcke ohne Abstände */
.mainpage-textblock {
    margin: 0 !important;
    padding: 0 !important;
}

/* Paragraphen kompakt */
p {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

p:last-child {
    margin-bottom: 0 !important;
}

/* Coaching Grid direkt nach Text */
.coaching-grid {
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
}

/* Container ohne zusätzliche Abstände */
.container > * {
    margin-top: 0 !important;
}



/* Sections direkt aneinander */
.content-section + .content-section {
    margin-top: 0 !important;
}

/* Mobile extrem kompakt */
@media (max-width: 768px) {
    .hero-banner {
        margin-bottom: 0.25rem !important;
    }

    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0.25rem !important;
    }

    p {
        margin-bottom: 0.25rem !important;
    }
}

/* Entferne alle Standard-Margins komplett */
* {
    margin: 0;
    padding: 0;
}

/* Nur explizit definierte Mini-Abstände */
.hero-banner {
    margin-bottom: 0.5rem !important;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem !important;
}

p {
    margin-bottom: 0.5rem !important;
}
.banner-author-below {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  margin: 1rem 0 2rem 0;
  font-style: italic;
}
@media (max-width: 600px) {
  .accordion-header {
    font-size: 1.05rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .accordion-header .icon {
    margin-right: 0.7rem;
    font-size: 1.3rem;
  }
  .accordion {
    padding: 0.2rem 0.2rem;
    width: 98vw;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.disclaimer-container {
  max-width: 700px;
  margin: 2.5rem auto;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  text-align: left !important;
}
.coaching-info-text {
  max-width: 100%;
  margin: 2.5rem 0 2rem 0;
  font-size: 1.13rem;
  line-height: 1.7;
  color: #333;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 2rem 1.5rem;
}
@media (max-width: 700px) {
  .coaching-info-text {
    padding: 1.2rem 0.5rem;
  }
}
.coaching-info-text ul {
  margin: 1.2rem 0 1.2rem 1.5rem;
  padding-left: 1.2rem;
}
.coaching-info-text li {
  margin-bottom: 0.5rem;
}
.coaching-info-text h3 {
  margin-top: 2rem;
  font-size: 1.18rem;
  color: #2d2a26;
}
.blog-container {
    margin-top: 2.2rem !important;
}
/* Gleiche maximale Breite für Kalender und Formular */
.calendar-placeholder,
.contact-form-container {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  background: #fff9f4;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.coaching-info-text {
  background: #fff9f4 !important;
  border-radius: 1.2rem !important;
  box-shadow: 0 2px 12px rgba(44,122,123,0.07) !important;
  padding: 2.5rem 2rem !important;
  margin: 2.5rem 0 2rem 0 !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-left: 6px solid #317873 !important;
  animation: fadeInUp 0.8s cubic-bezier(.39,.575,.565,1) both !important;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: none;}
}
.coaching-info-text strong {
  font-size: 1.25rem !important;
  color: #317873 !important;
  display: block !important;
  margin-bottom: 1.2rem !important;
}
.disclaimer-container { text-align: left !important; }
.disclaimer-container,
.disclaimer-container p,
.disclaimer-container ul,
.disclaimer-container ol,
.disclaimer-container h2,
.disclaimer-container h3,
.disclaimer-container h4,
.disclaimer-container h5,
.disclaimer-container h6 {
  text-align: left !important;
}
/* Slide 2: Container-Seitenverhältnis anpassen, weiterhin cover */
.heart-slider figure:nth-child(2) {
  aspect-ratio: 3 / 4 !important;   /* an dein Bild anpassen (z. B. 4/3, 3/2, etc.) */
}
.heart-slider figure:nth-child(2) img {
  object-fit: cover;                 /* behält den „füllenden“ Look ohne Balken */
  object-position: 50% 50%;
}
/* Alternative Accordion im Button-Stil */
.mindbox-accordion.alt-style {
  margin: 1rem 0 1.5rem;
}

.mindbox-accordion.alt-style summary {
  display: inline-block;
  background: #317873;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  list-style: none;
  transition: background 0.3s;
}

.mindbox-accordion.alt-style summary:hover {
  background: #e67e22;
}

.mindbox-accordion.alt-style[open] summary {
  background: #2c7a7b;
}

.mindbox-accordion.alt-style ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
  text-align: left;
}

.mindbox-accordion.alt-style li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.coaching-headline {
  display: block;
  text-align: center !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  color: #317873 !important;
  margin-top: 3rem !important;
  margin-bottom: 1.5rem !important;
}
.text-left {
  text-align: left !important;
}

.contact-section,
.contact-section .container,
.contact-section h3,
.contact-section p,
.contact-section a,
.contact-section .contact-info {
    text-align: center !important;
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}