/* =========================================
   GRUNDLAYOUT
========================================= */
body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #f7f7f7;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    color: #0b74b8;
    text-decoration: none;
  }
  
  .wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* =========================================
     HERO
  ========================================= */
  .hero {
    height: 14vh;
    background: linear-gradient(
      135deg,
      #f7d74a 0%,
      #f9e27a 100%
    );
    border-bottom: 1px solid #d0d0d0;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.06);
  }
  
  
  
  /* =========================================
     HEADER & NAVIGATION
  ========================================= */
  .header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Menübutton */
  .menubutton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    background: #ffffff;
    color: #222;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.75rem 1.3rem;
    border: 2px solid #555;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    width: fit-content;
  }
  
  /* Burger */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  
  .burger::before,
  .burger::after,
  .burger span {
    content: "";
    width: 22px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    display: block;
  }
  
  /* Navigation */
  .site-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  .menubutton.showmenu + ul {
    max-height: 100rem;
  }
  
  .site-nav a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: #333;
    font-size: 1.05rem;
  }
  
  .site-nav a:hover {
    background: #e7f3fb;
    color: #0b74b8;
  }
  
  .current a {
    background: #e5e5e5;
    color: #333;
  }
  
  
 /* =========================================
   MODERNES ACCORDIONX – WEGBESCHREIBUNG
========================================= */

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .accordion-header {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1.2rem;
    text-align: left;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease, box-shadow 0.2s ease;
  }
  
  .accordion-header::after {
    content: "▾";
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .accordion-header.active::after {
    transform: rotate(180deg);
  }
  
  .accordion-header:hover {
    background: #f0f0f0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  
  /* Accordion Inhalt */
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.4s ease;
  }
  
  .accordion-content.open {
    padding: 1rem;
    max-height: 2000px;
  }
  
  /* Unterabschnitte */
  .accordion-subsection {
    margin-bottom: 1.5rem;
  }
  
  .accordion-subsection h3 {
    margin-bottom: 0.5rem;
    color: #444;
    font-size: 1.1rem;
  }
  
  .accordion-subsection ul,
  .accordion-list {
    padding-left: 1.2rem;
    margin: 0;
  }
  
  .accordion-subsection ul li,
  .accordion-list li {
    margin-bottom: 0.4rem;
  }
  
  /* Kontaktbox – weiß-grau modern */
  .kontaktbox {
    padding: 0;
    overflow: hidden;
    background: #ffffff;
  }
  
  .kontakt-header {
    background: #e8e8e8;
    padding: 1.2rem 1.5rem;
    border-radius: 12px 12px 0 0;
    border-bottom: 3px solid #0b74b8;
  }
  
  
  
  .kontakt-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #333;
  }
  
  .kontakt-content {
    padding: 1.5rem;
  }
  
  .kontakt-content p {
    margin: 0 0 1rem 0;
  }
  
  .kontakt-subtitle {
    color: #555;
  }
  
  .kontakt-divider {
    height: 1px;
    background: #e5e5e5; /* statt beige */
    margin: 1.5rem 0;
  }
  
  .social-title,
  .coaching-title {
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #444;
  }
  
  .gluecksherz-logo-wrapper {
    text-align: center;
  }
  
  .kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  
  @media (max-width: 700px) {
    .kontakt-grid {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* =========================================
     FOOTER
  ========================================= */
  .site-footer {
    text-align: center;
    padding: 20px;
    color: #666;
  }
  