/* Grundlayout */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f7f7f7; /* statt beige */
  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,
    #e85a5a 0%,
    #f07a7a 100%
  );
  border-bottom: 1px solid #d0d0d0;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.06);
}

.hero1 {
  height: 14vh;
  background: linear-gradient(
    135deg,
    #d8d8d8 0%,
    #f0f0f0 100%
  );
  border-bottom: 1px solid #c8c8c8;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.06);
}



/* Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5; /* statt beige */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Menübutton modern & barrierefrei */
.menubutton {
  display: flex;
  align-items: center;          /* vertikal zentriert */
  justify-content: center;      /* horizontal zentriert */
  gap: 0.8rem;                  /* mehr Abstand zwischen Icon und Text */
  cursor: pointer;
  background: #ffffff;
  color: #222;                  /* dunklerer Text für besseren Kontrast */
  font-weight: 600;             /* Text wird präsenter */
  font-size: 1.05rem;           /* minimal größer */
  padding: 0.75rem 1.3rem;      /* etwas mehr Luft */
  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-Container */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;      /* perfekte vertikale Zentrierung */
  gap: 5px;                     /* Abstand zwischen den Strichen */
}

/* Die drei Striche */
.burger::before,
.burger::after,
.burger span {
  content: "";
  width: 22px;
  height: 3px;
  background: #222;             /* hoher Kontrast */
  border-radius: 2px;
  display: block;
}

/* Der mittlere Strich */
.burger span {
  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;
}

.showmenu + nav 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; /* statt beige */
  color: #333;
}

/* Infoboxen */
.infoboxx {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.infoboxx h1,
.infoboxx h2 {
  margin-top: 0;
  color: #333;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  color: #666;
}

.meta-nav a {
  color: #0b74b8;
}

/* Social Icons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1rem 0;
}

.social-icons img {
  width: 50px;
  height: auto;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.08);
}

.gluecksherz-logo {
  width: 75px;
  height: auto;
}

/* Grundstruktur */
.accordion {
  padding: 0;
}

/* Header */
.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);
}

/* Inhalt – KORREKT */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.4s ease;
}

/* Wenn geöffnet */
.accordion-content.open {
  padding: 1rem;
  max-height: 6800px; /* groß genug für lange Texte */
}

/* 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;
  }
}
