body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif;
  background: #f4f7fb;
  color: #22336b;
}
  .stonewrap-fixed .stone-img {
    display:none;
  }
/* Menüleiste und Navigation */
.menu-bar {
  width: 100vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 10px;
  z-index: 3002;
  background: transparent;
  height: 48px;
  pointer-events: auto;
}
.menu-toggle {
  display: block;
  background: none;
  border: none;
  margin: 0.6rem 0 0.6rem 1.1rem;
  cursor: pointer;
  z-index: 3003;

}
.menu-toggle:focus {
  outline: 2px solid #22336b;
}
.menu-toggle .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: #22336b;
  border-radius: 2px;
  transition: 0.3s;
}
.top-spacer {
  height: 0px;
  width: 100%;
}
.fixed-nav {
  position: fixed;
  top: 48px;
  left: 0;
  width: 100vw;
  z-index: 250;
  display: none;
  justify-content: flex-start;
}
.fixed-nav.open {
  display: flex;
}
.fixed-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.6rem 0.5rem 0.6rem 0.8rem;
  background: #eaf1fb;
  border-radius: 0 0 12px 0;
  box-shadow: 0 6px 24px rgba(34,51,107,0.13);
  min-width: unset;
  max-width: unset;
  width: 220px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fixed-nav ul li a {
  color: #22336b;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  font-size: 1.08rem;
  text-align: left;
  display: block;
  transition: background 0.2s, color 0.2s;
}
.fixed-nav ul li a:hover, .fixed-nav ul li a[aria-current="page"] {
  background: #22336c;
  color: #fff;
}
nav.desktop-nav {
  display: none;
  justify-content: center;
  margin: 0.3rem 0 1.2rem 0;
  width: 100%;
}
nav.desktop-nav ul {
  list-style: none;
  padding: 0.7rem 0.8rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  background: none;
}
nav.desktop-nav ul li a {
  color: #22336b;
  text-decoration: none;
  font-weight: bold;
  padding: 0.3rem 0.9rem;
  border-radius: 6px;
  font-size: 1.1rem;
  text-align: left;
  display: block;
  transition: background 0.2s, color 0.2s;
}
nav.desktop-nav ul li a:hover, nav.desktop-nav ul li a[aria-current="page"] {
  background: #22336c;
  color: #fff;
}

/* Steinsegment */
.stonewrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 10px;
  width: 100%;
}
.stone-segment {
  background: linear-gradient(135deg, #22336b 0%, #31447c 100%);
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(34,51,107,0.13);
  border: 1.2px solid #31447c;
  padding: 0.3rem 1.1rem 0.3rem 0.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  max-width: 420px;
  min-height: 38px;
  transition: box-shadow 0.2s;
}
.stone-segment:hover {
  box-shadow: 0 8px 24px rgba(34,51,107,0.17);
}
/* .stone-img {
  display: block;
  width: 32px;
  height: auto;
  margin-right: 0.7rem;
  filter: drop-shadow(0 2px 8px #31447c);
  order: 0;
} */
.stone-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1.02rem;
  order: 1;
  align-items: flex-start;
  color: #fff;
}
.stone-info a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}
.stone-info a.term {
  color: #22336b !important;
  background: #fff;
  padding: 0.18rem 0.7rem;
  border-radius: 10px;
  margin-top: 0.08rem;
  display: inline-block;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(39,110,241,0.08);
  text-decoration: none;
  font-weight: bold;
}
.stone-info a.term:hover {
  background: #22336c;
  color: #fff !important;
}

/* Header */
header {
  text-align: center;
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
  position: relative;
  padding: 0 0 0.7rem 0;
}
header h1 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 2.1rem;
  color: #22336b;
  letter-spacing: 0.5px;
  font-weight: 700;
  line-height: 1.2;
  white-space: pre-line;
}
header p {
  margin: 0.2rem 0 0.7rem 0;
  font-size: 1.15rem;
  color: #22336b;
  font-weight: 500;
}

/* Main und Überschriften */
main {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  padding: 2.2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,51,107,0.09);
}

h1, h2, h3, h4 {
  color: #22336b;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.18rem;
}
section {
  margin-bottom: 2.1rem;
  line-height: 1.6;
}

/* Locations */
.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.locations article {
  flex: 1 1 230px;
  background: #eaf1fb;
  padding: 1.1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 1.08rem;
  color: #22336b;
  box-shadow: 0 2px 6px rgba(34,51,107,0.11);
  border: 1.2px solid #31447c;
}
.logo {
  display: block;
  margin: 1.2rem auto;
  max-width: 120px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(39,110,241,0.09);
}

/* Footer */
footer {
  background: #22336b;
  color: #eaf1fb;
  text-align: center;
  padding: 1.2rem 0.5rem;
  margin-top: 2.2rem;
  font-size: 1.07rem;
  letter-spacing: 0.5px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 -2px 12px rgba(39,110,241,0.07);
}

/* Sticky Steinsegment oben rechts */
.stonewrap-fixed {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1000;
  pointer-events: none;
  background: linear-gradient(135deg, #22336b 0%, #31447c 100%);
  border-radius: 13px;
  box-shadow: 0 4px 18px rgba(34,51,107,0.15);
  padding: 0.7rem 1.1rem 0.7rem 0.7rem;
  display: flex;
  align-items: center;
  min-width: 210px;
  max-width: 340px;
  transition: box-shadow 0.2s;
    display: flex;
  justify-content: center;
  align-items: center;
}
/* .stonewrap-fixed .stone-img {
  width: 33px;
  height: 60px;
  margin-right: 0.9em;
  display: block;
} */
.stonewrap-fixed .stone-info {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}
.stonewrap-fixed .stone-info b {
  color: #fff;
  font-weight: 700;
}
.stonewrap-fixed .stone-info a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
   pointer-events: auto;
}
.stonewrap-fixed .stone-info a.term {
  color: #22336b !important;
  background: #fff;
  padding: 0.18rem 0.7rem;
  border-radius: 10px;
  margin-top: 0.08rem;
  display: inline-block;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(39,110,241,0.08);
  text-decoration: none;
  font-weight: bold;
}
.stonewrap-fixed .stone-info a.term:hover {
  background: #22336c;
  color: #fff !important;
}

/* Praxisbilder Unterschrift und Rahmen */
.praxisbild-caption {
  background: #22336b;
  color: #fff;
  padding: 0.3em 0.8em;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 0.5em;
  display: inline-block;
}
.praxisbild-frame {
  border: 3px solid #22336b;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(34,51,107,0.10);
}

/* Untermenü-Styling */
.submenu-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin: 1.8rem 0 2.2rem 0;
  background: linear-gradient(135deg, #eaf1fb 0%, #eaf1fb 100%);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(34,51,107,0.13);
  padding: 1.1rem 0.6rem 0.8rem 0.6rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.submenu-block {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 180px;
  flex: 1 1 220px;
}
.submenu-title {
  font-weight: bold;
  color: #22336b;
  margin-bottom: 0.2rem;
  font-size: 1.09rem;
  letter-spacing: 0.2px;
}
.submenu-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.submenu-link {
  background: #22336c;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.5rem 1.1rem;
  font-size: 1.06rem;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(39,110,241,0.08);
  transition: background 0.17s, color 0.17s, transform 0.15s;
  text-align: left;
  border: none;
  display: block;
  cursor: pointer;
}
.submenu-link:hover, .submenu-link.active, .submenu-link[aria-current="page"] {
  background: #fff;
  color: #22336b;
  transform: translateY(-2px) scale(1.035);
  font-weight: bold;
}

/* Responsive Navigation & Header */
@media (max-width: 900px) {
  .stonewrap {
    flex-direction: column;
    align-items: center;
  display: flex;
  justify-content: center; /* horizontal zentrieren */
  align-items: center;     /* vertikal zentrieren (bei fester Höhe) */
  }
  .stone-segment {
    max-width: 320px;
    padding: 0.5rem 0.5rem;
    min-height: 32px;
  }
/*   .stone-img {
    width: 24px;
    margin-right: 0.5rem;
  } */
  .stone-info {
    font-size: 0.98rem;
  }
  header h1 {
    font-size: 1.5rem;
  }
  header p {
    font-size: 1.05rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  main {
    padding: 1.5rem;
  }
  .locations article {
    font-size: 0.97rem;
  }
  footer {
    font-size: 0.97rem;
  }
}
@media (max-width: 700px) {
  .submenu-container {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
  }
  .submenu-block {
    min-width: 0;
    flex: 1 1 100%;
  }
}

@media (max-width: 700px) {
  .stonewrap-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3003;
    max-width: 100vw;
    min-width: 0;
    margin: 0 auto;
       border-radius: 0 !important;
    box-shadow: 0 4px 18px rgba(34,51,107,0.09);
    padding: 0.6rem 0.7rem 0.6rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, #22336b 0%, #31447c 100%);
	  display: flex;
  justify-content: center; /* horizontal zentrieren */
  align-items: center;     /* vertikal zentrieren (bei fester Höhe) */
  }
    .stonewrap-fixed1
  {
	  display: none;
  }
    .menu-bar {
    position: fixed;
    top: 78px; /* Höhe des Steinbereichs! */
    left: 0;
    width: 100vw;
    z-index: 5000;
    background: transparent;
    height: 48px;
    pointer-events: auto;
  }
  .top-spacer {
    height: 106px; /* 58px Steinbereich + 48px Menüleiste */
    width: 100%;
  }
/*   .stonewrap-fixed .stone-img {
    width: 26px;
    height: 45px;
    margin-right: 0.7em;
  } */
  .stonewrap-fixed .stone-info {
    font-size: 0.97rem;
    color: #fff;
    line-height: 1.4;
  }
}

  .fab-termin {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 3000;
    width: 54px;
    height: 54px;
    background: #22336c;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(34,51,107,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
  }
  .fab-termin:hover {
    background: #22336b;
  }
}
@media (max-width: 650px) {
  .menu-bar { display: flex; }
  .fixed-nav { display: none; }
  .fixed-nav.open { display: flex; }
  nav.desktop-nav { display: none; }
  .stonewrap {
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 0 5px;
  }
  .stone-segment {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.5rem;
    padding: 0.12rem 0.15rem;
    min-width: 0;
    min-height: 26px;
    max-width: 98vw;
  }
/*   .stone-img {
    margin: 0 0.5rem 0 0;
    width: 18px;
  } */
  .stone-info {
    align-items: flex-start;
    font-size: 0.95rem;
  }
  header h1 {
    font-size: 1.05rem;
  }
  header p {
    font-size: 0.98rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  main {
    padding: 1rem;
  }
  .locations article {
    font-size: 0.95rem;
  }
  footer {
    font-size: 0.92rem;
  }
}

 @media (max-width: 600px) {
  .stonewrap-fixed {
    padding: 0.5rem 0.4rem 0.5rem 0.4rem;
    font-size: 0.97rem;
	  display: flex;
  justify-content: center; /* horizontal zentrieren */
  align-items: center;     /* vertikal zentrieren (bei fester Höhe) */
  }

  .menu-bar {
      top: 78px; /* Höhe des Steinbereichs! */
    left: 0;
    height: 44px;
  }
  .top-spacer {
    height: 98px;
  }
}
  .stonewrap-fixed1
  {
	  display: none;
  }
/*   .stonewrap-fixed .stone-img {
    width: 26px;
    height: 45px;
    margin-right: 0.7em;
  } */
  .stonewrap-fixed .stone-info {
    font-size: 0.98rem;
  }


/* Galerie und Lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
  background: #eaf1fb;
  justify-items: center; /* optional für zentrierte Bilder */
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #eaf1fb;
  box-shadow: 0 2px 8px rgba(34,51,107,0.08);
  cursor: pointer;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  max-width: 340px; /* optional, für schöne gleichmäßige Spalten */
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), filter 0.2s;
  filter: brightness(0.97);
  background: #fff;
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid #22336b;
}
.gallery-item.portrait img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  max-width: 240px;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid #22336b;
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.03);
}
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(34,51,107,0.88);
  color: #fff;
  font-size: 1rem;
  padding: 0.2rem 0.7rem;
  text-align: center;
  opacity: 0.97;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,51,107,0.95);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  background: linear-gradient(135deg,#22336b 0%,#31447c 100%);
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(34,51,107,0.23);
  padding: 1.2rem 1.2rem 0.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.18s;
}
.lightbox-content img {
  max-width: 75vw;
  max-height: 60vh;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(34,51,107,0.12);
  margin-bottom: 0.6rem;
  background: #dbe4f6;
  border: 2px solid #22336b;
}
.lightbox-caption {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.3rem;
  background: rgba(34,51,107,0.88);
  padding: 0.4em 0.7em;
  border-radius: 7px;
  display: inline-block;
}
.lightbox-close {
  position: absolute;
  top: 0.5rem; right: 0.7rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 1010;
  transition: color 0.2s;
}
.lightbox-close:hover {
  color: #22336c;
}


@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
  .gallery-item img {
    height: 150px;
  }
  .gallery-item.portrait img {
    height: 190px;
    max-width: 130px;
  }
  .lightbox-content img {
    max-width: 92vw;
    max-height: 45vh;
  }
}
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 150px;
  }
  .gallery-item.portrait img {
    height: 190px;
    max-width: 90vw;
  }
}

/* Kosten, Vita, Kontakt, Datenschutz, Impressum */
.kosten-section {
  max-width: 800px;
  margin: 2rem auto;
  background: #eaf1fb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,51,107,0.09);
  color: #22336b;
  font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.kosten-section h2,
.kosten-section h3 {
  color: #22336b;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}
.kosten-hinweis {
  background: linear-gradient(135deg, #22336b 0%, #31447c 100%);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 1px 6px rgba(34,51,107,0.07);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.kosten-list {
  margin-bottom: 1.5rem;
}
.kosten-list u {
  color: #22336c;
  font-weight: bold;
  text-decoration: none;
}
.ext-link {
  color: #22336c;
  text-decoration: underline;
  font-size: 1rem;
  margin-left: 0.3rem;
  transition: color 0.15s;
}
.ext-link:hover {
  color: #22336b;
}
.vita-section {
  max-width: 950px;
  margin: 2rem auto;
  background: #eaf1fb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,51,107,0.09);
  color: #22336b;
  font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.vita-details h2 {
  color: #22336b;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  margin-top: 0;
  font-weight: 700;
}
.vita-details b {
  color: #22336c;
  font-size: 1.08rem;
  font-weight: bold;
  text-decoration: none;
}
.vita-details a {
  color: #22336c;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.15s;
  font-style: italic;
}
.vita-details a:hover {
  color: #22336b;
}
.vita-details ul {
  margin: 0 0 0.7em 1.2em;
  padding: 0;
  list-style: disc;
}
.vita-details li {
  margin-bottom: 0.5em;
}
@media (max-width: 700px) {
  .vita-section {
    padding: 1rem;
  }
}
.kontakt-section {
  max-width: 900px;
  margin: 2rem auto;
  background: #eaf1fb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,51,107,0.09);
  color: #22336b;
  font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-end;
}
.kontakt-details {
  flex: 1 1 320px;
  min-width: 260px;
}
.kontakt-details h2 {
  color: #22336b;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  margin-top: 0;
  font-weight: 700;
}
.kontakt-details b {
  color: #22336c;
  font-size: 1.08rem;
}
.kontakt-details a {
  color: #22336c;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.15s;
}
.kontakt-details a:hover {
  color: #22336b;
}
.kontakt-bild {
  flex: 0 0 340px;
  text-align: right;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 240px;
}
.kontakt-bild img {
  width: auto;
  max-width: 306px;
  height: auto;
  max-height: 459px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(34,51,107,0.12);
  display: block;
  margin: 0 auto;
}
@media (max-width: 950px) {
  .kontakt-section {
    gap: 1.3rem;
  }
  .kontakt-bild {
    max-width: 280px;
  }
  .kontakt-bild img {
    max-width: 280px;
  }
}
@media (max-width: 700px) {
  .kontakt-section {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1.5rem;
  }
  .kontakt-bild {
    text-align: center;
    max-width: 340px;
    width: 100%;
  }
  .kontakt-bild img {
    max-width: 90vw;
  }
}
.datenschutz-section, .impressum-section {
  max-width: 950px;
  margin: 2rem auto;
  background: #eaf1fb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,51,107,0.09);
  color: #22336b;
  font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
}
.datenschutz-section h2, .impressum-section h2 {
  color: #22336b;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  margin-top: 0;
  font-weight: 700;
}
.datenschutz-section b, .impressum-section b {
  color: #22336c;
  font-size: 1.08rem;
  font-weight: bold;
}
.datenschutz-section a, .impressum-section a {
  color: #22336c;
  text-decoration: underline;
  font-weight: 500;
  word-break: break-word;
  transition: color 0.15s;
}
.datenschutz-section a:hover, .impressum-section a:hover {
  color: #22336b;
}
.impressum-section ul {
  margin: 0 0 0.7em 1.2em;
  padding: 0;
  list-style: disc;
}
.impressum-section li {
  margin-bottom: 0.5em;
}
@media (max-width: 700px) {
  .datenschutz-section, .impressum-section {
    padding: 1rem;
  }
}

/* Praxis-Abschnitt */
.praxis-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.praxis-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.praxis-text {
  flex: 1 1 400px;
  min-width: 280px;
  color: #22336b;
}
.praxis-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #22336b;
}
.praxis-text p,
.praxis-text ul {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}
.praxis-text ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}
.praxis-image {
  flex: 0 0 220px;
  max-width: 220px;
  text-align: right;
}
.praxis-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
@media (max-width: 700px) {
  .praxis-content {
    flex-direction: column;
    align-items: center;
  }
  .praxis-image {
    max-width: 280px;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .praxis-text {
    min-width: auto;
  }
}

/* Grundsatz-Abschnitte (NEU, OPTIMIERT) */
.grundsatz-section {
  margin-bottom: 2.2rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 4px 12px rgba(34,51,107,0.08);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.grundsatz-bild {
  flex: 0 0 70px;
  max-width: 70px;
  margin-right: 0.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.grundsatz-bild img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(1) contrast(1.15) brightness(0.93);
  opacity: 0.92;
  box-shadow: 0 2px 8px rgba(34,51,107,0.08);
}
.grundsatz-inhalt {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.grundsatz-title {
  font-size: 1.18rem;
  font-weight: bold;
  color: #22336b;
  margin-bottom: 0.7rem;
  letter-spacing: 0.2px;
}
.text-content {
  max-height: 4.6em;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
  margin-bottom: 0.7em;
}
.text-content.expanded {
  max-height: 100vh;
}
.text-content:not(.expanded)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5em;
  background: linear-gradient(transparent, #fff 90%);
  pointer-events: none;
  display: block;
}
.more-button {
  background: none;
  border: none;
  color: #22336c;
  font-weight: 550;
  cursor: pointer;
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 0;
  text-align: left;
  transition: color 0.15s;
  font-style: italic;
}
.more-button:hover {
  color: #22336b;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .grundsatz-section {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.7rem;
    gap: 0.7rem;
  }
  .grundsatz-bild {
    margin: 0 0 0.7rem 0;
    max-width: 90vw;
  }
  .grundsatz-bild img {
    width: 70px;
    height: 70px;
  }
  .grundsatz-inhalt {
    align-items: center;
    text-align: center;
  }
}

/* Mitgliedschaften */
.mitgliedschaften {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  align-items: flex-start;
  margin: 1.2rem 0 2.2rem 0;
}
.mitglied {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  max-width: 220px;
  flex: 1 1 180px;
  text-align: center;
}
.mitglied-logo {
  margin-bottom: 0.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(34,51,107,0.07);
  max-width: 100%;
  height: auto;
}
.mitglied-text {
  font-size: 1.04rem;
  color: #22336b;
  line-height: 1.5;
}
.mitglied-text a {
  color: #22336c;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.15s;
}
.mitglied-text a:hover {
  color: #22336b;
}
@media (max-width: 700px) {
  .mitgliedschaften {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .mitglied {
    max-width: 100%;
  }
}

/* Termin-Karten */
.termin-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  margin: 2.2rem 0 2.2rem 0;
  flex-wrap: wrap;
}

.termin-card {
  background: #eaf1fb;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(34,51,107,0.11);
  padding: 1.5rem 1.3rem 1.3rem 1.3rem;
  flex: 1 1 320px;
  max-width: 90%;
  min-width: 0px;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}


.termin-card-bild {
  flex: 0 0 110px;
  max-width: 110px;
  margin-right: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.termin-card-bild img {
  width: 100%;
  max-width: 110px;
  max-height: 140px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(34,51,107,0.08);
  display: block;
}
.termin-card-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.termin-card h2 {
  font-size: 1.25rem;
  color: #22336b;
  font-weight: 700;
  margin-bottom: 1.1rem;
  margin-top: 0;
}
.termin-card-adresse {
  font-weight: normal;
  font-size: 1rem;
  display: block;
  color: #22336c;
  margin-top: 0.2rem;
}
.termin-card-tel {
  margin-bottom: 0.7rem;
  font-size: 1.07rem;
  color: #22336b;
}
.termin-card-tel-link {
  color: #22336b;
  font-weight: bold;
  text-decoration: none;
  margin-left: 0.3em;
}
.termin-card-tel-link:hover {
  color: #22336c;
  text-decoration: underline;
}
.termin-button {
  display: inline-block;
  background: #22336c;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 0.7rem 1.4rem;
  margin: 0.6rem 0 0.6rem 0;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(39,110,241,0.09);
  transition: background 0.2s, color 0.2s, border 0.2s;
  border: 2.5px solid #22336b;
  cursor: pointer;
}
.termin-button:hover,
.termin-button:focus {
  background: #22336b;
  color: #fff;
  border-color: #22336c;
}
.route-link {
  color: #22336c;
  text-decoration: underline;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-left: 0.3rem;
  transition: color 0.15s;
  display: inline-block;
}
.route-link:hover {
  color: #22336b;
}

/* Mobil: untereinander */
@media (max-width: 900px) {
  .termin-cards {
    flex-direction: column;
    gap: 1.3rem;
    align-items: center;
  }
  .termin-card {
    flex-direction: column;
    align-items: center;
    max-width: 98vw;
    width: 100%;
  }
  .termin-card-bild {
    margin-right: 0;
    margin-bottom: 1rem;
    max-width: 80vw;
  }
  .termin-card-bild img {
    max-width: 80vw;
  }
  .termin-card-info {
    align-items: center;
    text-align: center;
  }
}

/* Geschichte-Abschnitt */
.geschichte-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  position: relative;
}
.geschichte-floatwrap {
  float: right;
  width: 210px;
  margin: 0 0 1.2rem 2rem;
  text-align: center;
}
.geschichte-floatbild {
  width: 100%;
  border-radius: 10px;
  background: #eaf1fb;
  box-shadow: 0 2px 8px rgba(34,51,107,0.08);
  display: block;
}
.geschichte-bild-caption {
  font-size: 0.98rem;
  color: #22336b;
  margin-top: 0.4rem;
  font-style: italic;
}
@media (max-width: 700px) {
  .geschichte-floatwrap {
    float: none;
    margin: 0 auto 1.2rem auto;
    width: 70vw;
    max-width: 98vw;
  }
}

/* Terminnotiz oben rechts */
.terminnotiz-fixed {
  position: fixed;
  top: 140px;
  right: 180px;
  z-index: 2001;
  background: none;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(34,51,107,0.12);
  padding: 0.7rem 0.7rem 0.7rem 0.7rem;
  display: flex;
  align-items: center;
  min-width: 120px;
  max-width: 200px;
  transition: box-shadow 0.2s, top 0.2s, right 0.2s;
}
.terminnotiz-img {
  width: 170px;
  max-width: 190px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px #22336b22);
}
@media (max-width: 700px) {
  .terminnotiz-fixed {
    display: none;
  }
}
.therapie-main-flex {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.therapie-text {
  flex: 1 1 320px;
  min-width: 220px;
}
.therapie-floatbild {
  float: right;
  width: 320px;
  max-width: 45vw;
  margin: 0 0 1.2rem 2rem;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(34,51,107,0.11);
  background: #eaf1fb;
  object-fit: cover;
}

@media (max-width: 900px) {
  .therapie-floatbild {
    float: none;
    display: block;
    margin: 0 auto 1.2rem auto;
    width: 95vw;
    max-width: 98vw;
  }
}
.grundsatz-section {
  margin-bottom: 2.2rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 4px 12px rgba(34,51,107,0.08);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.grundsatz-bild {
  flex: 0 0 70px;
  max-width: 70px;
  margin-right: 0.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.grundsatz-bild img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(1) contrast(1.15) brightness(0.93);
  opacity: 0.92;
  box-shadow: 0 2px 8px rgba(34,51,107,0.08);
}

.grundsatz-inhalt {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.grundsatz-title {
  font-size: 1.18rem;
  font-weight: bold;
  color: #22336b;
  margin-bottom: 0.7rem;
  letter-spacing: 0.2px;
}

.text-content {
  max-height: 4.6em; /* ca. 3 Zeilen */
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
  margin-bottom: 0.7em;
}

.text-content.expanded {
  max-height: 100vh;
}

.text-content:not(.expanded)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5em;
  background: linear-gradient(transparent, #fff 90%);
  pointer-events: none;
  display: block;
}

.more-button {
  background: none;
  border: none;
  color: #22336c;
  font-weight: 550;
  cursor: pointer;
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 0;
  text-align: left;
  transition: color 0.15s;
  font-style: italic;
}

.more-button:hover {
  color: #22336b;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .grundsatz-section {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.7rem;
    gap: 0.7rem;
  }
  .grundsatz-bild {
    margin: 0 0 0.7rem 0;
    max-width: 90vw;
  }
  .grundsatz-bild img {
    width: 70px;
    height: 70px;
  }
  .grundsatz-inhalt {
    align-items: center;
    text-align: center;
  }
}
.main-whitebox {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  padding: 2.2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,51,107,0.09);
}
.main-bluebox {
  max-width: 900px;
  margin: 2rem auto;
  background: #eaf1fb;
  padding: 2.2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,51,107,0.09);
}
.fixed-nav {
   z-index: 5001; /* Menü ganz oben */
}
#menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
   z-index: 5000; /* Overlay unter dem Menü, aber über dem Rest */
}
.fixed-nav.open ~ #menu-overlay {
  display: block;
}
