@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400');

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap');

/* ==========================================================
   Praxis Hermine Gascho – Responsive Stylesheet
   CSS Grid + Mobile-First Burger Menu
   ========================================================== */

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #000;
  overflow-y: scroll;
}

body {
  background-color: #fff;
  min-height: 100vh;
}

a:link, a:visited { color: #000; text-decoration: none; }
a:hover            { text-decoration: underline; }

ul { list-style: none; }
img { border: 0; }

/* ---- Site Wrapper (CSS Grid skeleton) ---- */
.site-wrapper {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas:
    "header"
    "nav"
    "content"
    "footer";
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

/* ---- Header (text + SVG diamonds) ---- */
.site-header {
  grid-area: header;
  background-color: #efeded;
}

.header-title {
  background-color: #ffffff;
  text-align: center;
  padding: 10px 20px 8px;
  font-family: 'Josefin Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
  font-weight: 400;
  font-size: 25px;
  /* letter-spacing: 0.04em;*/
  color: #a51a1a;;
  margin: 20px 0 0 0;
}

.header-diamonds {
  background-color: #efeded;
  line-height: 0;
  overflow: hidden;
  padding: 20px 0;
      text-align: center;
}

.header-diamonds svg {
  display: block;
  width: 100%;
  height: auto;
}

img.muster {
    width: 80%;
}

.header-bar {
  height: 20px;
  background-color: #999;
}

/* ---- Desktop Navigation ---- */
.site-nav {
  grid-area: nav;
  background-color: #efeded;
  display: flex;
  justify-content: center;
      margin: 10px 0;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
}

.desktop-nav a,
.desktop-nav span.nav-active {
  display: inline-flex;
  align-items: center;
  padding: 20px 16px 16px;
    height: 26px;
    font-family: 'Josefin Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-weight: 400;
    font-size: 22.5px;
  /* letter-spacing: 0.12em;*/
  text-transform: uppercase;
  text-decoration: none;
  color: #333;
  background-color: #efeded;
  white-space: nowrap;
  transition: background-color 0.15s, color 0.15s;
}

.desktop-nav a:hover {
  background-color: #c81c00;
  color: #fff;
  text-decoration: none;
}

.desktop-nav span.nav-active {
  background-color: #c81c00;
  color: #fff;
  cursor: default;
}

/* ---- Burger Button (mobile only) ---- */
.burger-btn {
  display: none;
  position: fixed;
  top: 12px;
  right: 15px;
  z-index: 2000;
  background-color: #999;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 22px;
  line-height: 1;
  padding: 6px 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
}

.burger-btn:hover { background-color: #c81c00; }

/* ---- Mobile Navigation Overlay ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(30,30,30,.97);
  z-index: 1999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
  padding: 4px 12px;
  cursor: pointer;
}

.mobile-nav__close:hover { background: #c81c00; border-color: #c81c00; }

.mobile-nav a {
  color: #fff;
  font-size: 22px;
  padding: 12px 30px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,.15);
  text-align: center;
  width: 280px;
}

.mobile-nav a:hover { color: #f8a09a; text-decoration: none; }

/* ---- Main Content ---- */
.site-content {
  grid-area: content;
}

/* ---- Welcome / Text Boxes ---- */
.content-box {
  background-color: #efeded;
  padding: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  margin: 0 0 10px;
  padding: 20px;
  text-align: center;
}

.content-box h2 { font-size: 18px;
        font-size: 20px;
    padding: 10px 0 20px;
    font-weight: 400; }
.content-box h3 { font-size: 13px; font-weight: bold; }

/* ---- Bio Card Grid ---- */
.bio-grid {
  display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr .5fr;
grid-column-gap: 10px;
grid-row-gap: 10px;
}

.bio-card {
  background-color: #efeded;
  display: flex;
  flex-direction: column;
}

.bio-card img {
  width: 100%;
  height: auto;
  display: block;
  max-width:176px;
}

.card01 { grid-area: 1 / 1 / 3 / 2; }
.card02 { grid-area: 1 / 2 / 2 / 3; }
.card03 { grid-area: 2 / 2 / 3 / 3; }

.bio-card-text {
  padding: 20px;
  font-size: 16px;
  line-height: 1.4;
  flex: 1;
}

.bio-card-text p + p { margin-top: 6px; }

.bio-card-text ul {
    list-style: square;
}

.bio-card-text ul li {
    margin-left: 20px;
    margin-bottom: 6px;
}

/* ---- Praxis Content ---- */
.praxis-content img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Kontakt Content ---- */
.kontakt-info {
  background-color: #efeded;
  padding: 20px;
  font-size: 16px;
  color: #333;
}

.kontakt-cta {
  background-color: #efeded;
  padding: 20px 20px;
  text-align: center;
  font-size: 16px;
  color: #c81c00;
  margin: 10px 0 0;
}

.kontakt-cta h2 { color: #c81c00; margin-bottom: 16px; }

.kontakt-cta img {
  height: 26px;
  width: auto;
}

.datenschutz {
  background-color: #efeded;
  padding: 20px;
  font-size: 16px;
  margin: 10px 0;
}

.datenschutz h2 { font-size: 18px; margin: 12px 0 6px; }
.datenschutz h3 { font-size: 16px; margin: 10px 0 4px; }
.datenschutz p  { margin-bottom: 8px; line-height: 1.5; }

/* ---- Anfahrt ---- */
.anfahrt-map {
  line-height: 0;
}

.anfahrt-map iframe {
  display: block;
  width: 100%;
  border: 0;
}


/* ---- Leistung Sub-Navigation (Kinder / Erwachsene) ---- */
.leistung-subnav {
  display: flex;
  background-color: #efeded;
      margin: 10px 0;
}

.leistung-subnav a,
.leistung-subnav span.subnav-active {
  display: inline-flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  height: 32px;
  font-family: 'Josefin Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
font-weight: 600;
    font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #333;
  background-color: #efeded;
  white-space: nowrap;
  transition: background-color 0.15s, color 0.15s;
      padding: 20px;
}

.leistung-subnav a:hover {
  background-color: #c81c00;
  color: #fff;
  text-decoration: none;
}

.leistung-subnav span.subnav-active {
  background-color: #c81c00;
  color: #fff;
  cursor: default;
}

/* ---- E-Mail Button ---- */
.btn-email {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px 1px;
    height: 26px;
    font-family: 'Josefin Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff!important;
    background-color: #c81c00;
    white-space: nowrap;
    transition: background-color 0.15s;
}

.btn-email:hover,
.btn-email:visited {
  color: #fff;
  background-color: #a01500;
  text-decoration: none;
}

/* ---- Leistung / Accordion ---- */
.leistung-intro {
  background-color: #efeded;
  padding: 20px;
  color: #333;
}

.leistung-intro h3 { margin-bottom: 8px; }

.leistung-subnav {
  background-color: #efeded;
  line-height: 0;
}

.leistung-subnav img {
  height: 26px;
  width: auto;
}

#basic-accordian {
  width: 100% !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
  margin: 0 !important;
}

.accordion_headings {
  padding: 7px 10px;
  background: #999;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

.accordion_headings:hover { background: #c81c00; }

.accordion_child {
  padding: 15px;
  background: #efeded;
  line-height: 1.6;
}

.header_highlight { background: #999; }


/* ---- Zitate / Quotes ---- */
.quotes {
  background-color: #e8e6e6;
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 10px 0;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote blockquote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-style: italic;
    color: #444;
    line-height: 1.65;
    margin: 0;
    padding: 10px 30px 0px;
}

.quote cite {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: normal;
  color: #666;
  text-align: right;
  display: block;
  padding: 0 30px 0;
}

/* ---- Footer ---- */
.site-footer {
  grid-area: footer;
}

.site-footer img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-links {
  background-color: #efeded;
  padding: 8px 10px;
  text-align: right;
  font-size: 12px;
      margin-bottom: 40px;
}

/* ---- Index / Splash Page ---- */
.splash-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.splash-wrapper img {
  max-width: 100%;
  height: auto;
}

.splash-links {
  margin-top: 12px;
  font-size: 12px;
  font-weight: bold;
}

h1 {
    font-weight: 400;
    font-size: 25px;
}

/* ==========================================================
   RESPONSIVE — Smartphone (≤ 768px)
   ========================================================== */
@media (max-width: 768px) {

  /* Aktiviere Burger */
  .burger-btn { display: block; top: 89px;}

  /* Verstecke Desktop-Nav */
  .desktop-nav { display: none; }

  /* Wrapper nimmt volle Breite */
  .site-wrapper {
    max-width: 100%;
  }

  /* Header-Bild skaliert */
  .site-header img {
    width: 100%;
    height: auto;
  }

  /* Bio-Cards übereinander */
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .card01 {
    grid-area: unset;
}

  .card02 {
    grid-area: unset;
}

.card03 {
    grid-area: unset;
}

  /* Kontakt: volle Breite */
  .kontakt-info,
  .kontakt-cta,
  .datenschutz {
    font-size: 15px;
  }

  /* Accordion volle Breite */
  #basic-accordian {
    width: 100% !important;
  }

  .accordion_headings { font-size: 16px; padding: 10px; }
  .accordion_child    { font-size: 16px; padding: 15px; }

  .leistung-subnav a, .leistung-subnav span.subnav-active {

    font-size: 15px;

}

  /* Anfahrt: Map-Höhe begrenzen */
  .anfahrt-map iframe {
    height: 400px;
  }

  /* Splash */
  .splash-wrapper { padding: 20px 10px; }
}
