/* Desktop: Hamburger + Mobile-Nav verstecken */
.hamburger { display: none; }
.mobile-nav { display: none; }


@media (max-width: 768px) {

  /* ── BODY ── */
  body {
    zoom: 1;
  }


  /* ════════════════════════════════════════
     HEADER & HAMBURGER-MENÜ
  ════════════════════════════════════════ */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .header {
    height: 68px;
    --header-h: 68px;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .navigation {
    display: none !important;
  }

  .logo {
    opacity: 1 !important;
    transform: none !important;
    position: relative;
    left: auto;
  }

  .logo img {
    height: 54px;
  }

  .container {
    justify-content: space-between;
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    position: relative;
    flex-shrink: 0;
  }

  .hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--bg);
    padding: 20px 24px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    z-index: 9998;
  }

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

  .mobile-nav a {
    text-decoration: none;
    padding: 13px 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-radius: 25px;
    background-color: var(--mint);
    border: 1px solid var(--mint);
    color: var(--text);
    font-family: "sofia-pro-narrow", sans-serif;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.2s ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a:active {
    background-color: var(--mintHover);
  }




/*hero*/

.hero {
    padding-top: 50px;
    padding-bottom: 97px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    height: clamp(260px, 68vw, 360px);
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-values {
    margin-top: 90px;
    flex-direction: column;
    gap: 14px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .hero-values .dot {
    width: 30px;
    height: 30px;
  }

/* ════════════════════════════════════════
     ÜBER MICH
  ════════════════════════════════════════ */

  .about {
    padding: 60px 0 40px;
    min-height: unset;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .about-text {
    display: contents;
  }

  .about-right {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-icons { order: 2; }
  .about-copy  { order: 3; }
  .about-photo { order: 4; }

  .about-heading {
    position: relative;
    display: flex;
    justify-content: center;
    transform: none !important;
    margin: 0 0 6px 0;
    width: 100%;
  }

  .about-heading::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(420px, 90vw, 440px);
    height: clamp(80px, 16vw, 110px);
  }

  .about-heading h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(28px, 8vw, 42px);
    text-align: center;
    padding: 12px clamp(30px, 8vw, 80px);
    width: 100%;
    margin: 0;
  }

  .about-icons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center;
    gap: 16px;
    height: auto !important;
    margin-top: 4px !important;
    margin-bottom: 12px;
    position: static !important;
    width: 100%;
  }

  .about-icon {
    position: static !important;
    left: auto !important;
    top: auto !important;
  }

  .about-icon img {
    width: clamp(80px, 22vw, 110px);
    height: auto;
  }

  .about-copy {
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
  }

  .about-copy p {
    font-size: clamp(15px, 4.2vw, 18px);
  }

.about-photo {
    order: 4;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about-photo img {
    width: 88%;
    max-width: 380px;
    margin: 30px 0 0;
    display: block;
  }






  /* ════════════════════════════════════════
     ANGEBOT
  ════════════════════════════════════════ */

  .offer {
    padding: 100px 0 60px;
  }

  .offer-title {
    margin-bottom: 70px;
  }

  .offer-title::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(260px, 82vw, 360px);
    height: 85px;
  }

  .offer-title h2 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .offer-icons {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }

  .offer-item {
    width: clamp(220px, 68vw, 320px);
  }

  .offer-item img {
    transform: none !important;
  }


  /* ════════════════════════════════════════
     TARIFE
  ════════════════════════════════════════ */

  .tarife {
    padding: 70px 0 60px;
  }

  .tarife-title {
    padding: 0 20px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
  }

  .tarife-title h2 {
    font-size: clamp(36px, 10vw, 46px);
    padding: 12px 28px;
  }

  .tarife-title::before {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: clamp(260px, 82vw, 380px);
    height: 88px;
  }


  .tarife-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 20px;
  }

  .tarife-sep {
    display: none;
  }

  .tarife-col {
    min-width: unset;
    width: 100%;
    max-width: 380px;
  }

  .tarife-left {
    padding-left: 0;
    text-align: center;
  }

  .tarif-item {
    margin-bottom: 28px;
  }

  .tarife-col h3 {
    min-height: unset;
    margin-bottom: 14px;
    font-size: clamp(22px, 6vw, 28px);
  }

  .tarife-col p {
    font-size: clamp(14px, 3.8vw, 16px);
    max-width: 100%;
    margin-bottom: 10px;
  }

  /* Grüne Oval-Karten */
  .tarife-mid,
  .tarife-right {
    background-color: var(--mint);
    border-radius: 50%;
    aspect-ratio: 1.15 / 1;
    width: min(320px, 88vw);
    max-width: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 36px;
  }


  /* ════════════════════════════════════════
     PRAXIS SLIDER
  ════════════════════════════════════════ */

  .praxis {
    padding: 80px 0 80px;
    min-height: unset;
  }

  .praxis-title {
    margin-bottom: 80px;
  }

   .praxis-title::before {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 95vw;
    height: 88px;
  }

  .praxis-title h2 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .praxis-viewport {
    width: 92vw;
  }

  .praxis-card {
    flex: 0 0 100%;
  }

  .praxis-side {
    display: none;
  }

  .praxis-controls {
    gap: 48px;
    margin-top: 45px;
  }

  .praxis-arrow img {
    width: 46px;
  }

  .lightbox-close {
    top: 20px;
    right: 24px;
    font-size: 36px;
  }

  .kontakt {
    padding: 20px 0 60px;
  }

  .kontakt-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }

  .kontakt-left {
    max-width: 100%;
    width: 100%;
  }

  .kontakt-heading {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
  }

  .kontakt-heading h2 {
    font-size: clamp(36px, 10vw, 46px);
    padding: 10px 22px;
  }

  .kontakt-heading::before {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: clamp(240px, 82vw, 380px);
    height: 85px;
  }

  .kontakt-details {
    padding-left: 0;
    gap: 18px;
    align-items: center;
  }

  .kontakt-row {
    font-size: clamp(15px, 4.2vw, 18px);
    gap: 14px;
    justify-content: center;
  }

  .kontakt-row img {
    width: clamp(30px, 7vw, 40px);
    height: clamp(30px, 7vw, 40px);
  }

  .kontakt-text {
    padding-left: 0;
    margin-top: 36px;
    text-align: center;
  }

  .kontakt-text p {
    font-size: clamp(15px, 4.2vw, 18px);
  }

  .kontakt-right {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
  }

  .kontakt-map {
    position: static;
  }

  .kontakt-map img {
    width: min(160px, 42vw);
    height: auto;
    display: block;
  }

  .termin-icon {
    position: static;
  }

  .termin-icon img {
    width: min(160px, 42vw);
    height: auto;
    display: block;
  }



/*  Unterseiten */

/* fprtbildungen*/

@media (max-width:768px){

.fortbildungen-container{
  flex-direction:column;
  align-items:center;
  padding:60px 24px 80px;
  gap:50px;
  max-width:100%;
  margin:0;
}

/* TEXTBLOCK */

.fortbildungen-content{
  max-width:100%;
  margin-left:0;
  width:100%;
  text-align:center;
}

/* HEADER */

.fortbildungen-header{
  margin-bottom:40px;
  text-align:center;
}

.fortbildungen-header h1{
  font-size:clamp(34px,9vw,48px);
  text-align:center;
}

/* Brush  */

.fortbildungen-header h1::before{
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:clamp(280px,90vw,420px);
  height:80px;
}

/* TEXT */

.fortbildungen-text{
  font-size:clamp(15px,4.2vw,18px);
}

.fortbildungen-text p{
  margin-bottom:24px;
}

.fortbildungen-text h2{
  font-size:clamp(18px,5vw,22px);
  margin-bottom:16px;
}

.fortbildungen-text ul{
  padding-left:20px;
  text-align:left;
}

.fortbildungen-text li{
  margin-bottom:10px;
  font-size:clamp(14px,3.8vw,17px);
  line-height:1.6;
}

/* LOGO BEREICH */

.fortbildungen-logos{
  width:100%;
  height:auto;
  position:static;

  display:flex;
  justify-content:center;
  align-items:center;
}

/* Kreis komplett entfernen */

.kreis-umrandung{
  display:none;
}

/* Logos nebeneinander */

.logos{
  position:static;
  flex-direction:row;
  gap:32px;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* Logo Größe */

.logos img{
  max-width:clamp(100px,28vw,150px);
  height:auto;
}

}





/* KINDER Unterseite */

@media (max-width: 768px) {

  .subpage-kinder {
    background: #a4c5b4;
  }

  .kinder-stage {
    padding: 60px 22px 80px;
    display: grid;
    grid-template-areas:
      "title"
      "image"
      "intro"
      "subtitle"
      "list"
      "back";
    justify-items: center;
    text-align: center;
    min-height: unset;
  }

  .kinder-copy {
    display: contents;
  }

  .kinder-copy h1 {
    grid-area: title;
    font-size: clamp(32px, 9vw, 44px);
    margin-bottom: 20px;
    width: 100%;
  }

  .kinder-photo {
    grid-area: image;
    position: static !important;
    width: 220px;
    aspect-ratio: 1/1;
    margin-bottom: 25px;
  }

  .kinder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .kinder-intro {
    grid-area: intro;
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 100%;
  }

  .kinder-copy h2 {
    grid-area: subtitle;
    font-size: clamp(18px, 5vw, 22px);
    margin-bottom: 16px;
    width: 100%;
  }

  .kinder-list {
    grid-area: list;
    padding-left: 20px;
    text-align: left;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.65;
    margin-bottom: 40px;
    width: 100%;
  }

  .kinder-list li {
    margin: 8px 0;
  }

  .kinder-back {
    grid-area: back;
    position: static !important;
    justify-self: center;
    margin-top: 10px;
  }

  .kinder-back img {
    width: 110px;
  }

}


/* ERWACHSENE Unterseite */

@media (max-width: 768px) {

  .subpage-erwachsene {
    background: url("assets/unterseite-erwachsene.png") center/cover no-repeat;

  }


  .erwachsene-stage {
    padding: 60px 22px 80px;
    display: grid;
    grid-template-areas:
      "title"
      "image"
      "intro"
      "subtitle"
      "list"
      "back";
    justify-items: center;
    text-align: center;
    min-height: unset;
  }

  .erwachsene-copy {
    display: contents;
  }

  .erwachsene-copy h1 {
    grid-area: title;
    font-size: clamp(32px, 9vw, 44px);
    margin-bottom: 20px;
    width: 100%;
  }

  .erwachsene-photo {
    grid-area: image;
    position: static !important;
    width: 220px;
    aspect-ratio: 1/1;
    margin-bottom: 25px;
  }

  .erwachsene-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .erwachsene-intro {
    grid-area: intro;
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 100%;
  }

  .erwachsene-copy h2 {
    grid-area: subtitle;
    font-size: clamp(18px, 5vw, 22px);
    margin-bottom: 16px;
    width: 100%;
  }

  .erwachsene-list {
    grid-area: list;
    padding-left: 20px;
    text-align: left;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.65;
    margin-bottom: 40px;
    width: 100%;
  }

  .erwachsene-list li {
    margin: 8px 0;
  }

  .erwachsene-back {
    grid-area: back;
    position: static !important;
    justify-self: center;
    margin-top: 10px;
  }

  .erwachsene-back img {
    width: 110px;
  }

}

/* WERDEGANG  */

@media (max-width: 768px) {

  .werdegang-page {
    background: #f2f2f2;
  }

  .werdegang-container {
    padding: 20px 22px 80px;
  }

.werdegang-header {
    margin-top: 20px;
    margin-bottom: 40px; 
    text-align: center;  
  }



  .werdegang-header h1 {
    font-size: clamp(28px, 8vw, 40px);
    display: inline-block;
  }

 
  .werdegang-header h1::before {
    width: 110%;
    height: 70px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url("assets/brush-beruflicherwerdegang.png") center / 100% 100% no-repeat;
  }

  /* Grafik ausblenden */
  .timeline-image {
    display: none;
  }

  /* Liste einblenden */
  .screenreader-text {
    position: static !important;
    width: auto !important;
    height: auto !important;
    clip: auto !important;
    overflow: visible !important;
    white-space: normal !important;
  }

  .screenreader-text h2 {
    display: none;
  }

  .screenreader-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .screenreader-text li {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .wj-year {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #a4c5b4;
    color: #2d4a3e;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "sofia-pro-narrow", sans-serif;
    font-weight: 600;
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.2;
  }

  .wj-desc {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.5;
    color: #2d4a3e;
  }

  .wj-desc strong {
    display: block;
    font-weight: 600;
    color: #2d4a3e;
  }

  .wj-desc em {
    font-style: italic;
    color: #2d4a3e;
    opacity: 0.8;
  }











/* ================= IMPRESSUM MOBILE ================= */

@media (max-width:768px){

.impressum-container{
padding:60px 24px 80px;
}

.impressum-header{
margin-bottom:40px;
}

.impressum-header h1{
font-size:clamp(34px,9vw,48px);
}

 .impressum-header h1::before {
    width: 110%;
    height: 150px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url("assets/brush-links.png") center / 100% 100% no-repeat;
  }
}

.impressum-content{
font-size:clamp(15px,4.2vw,18px);
}

/* ── LEGAL SECTION ── */
@media (max-width: 768px) {

  .legal-section {
    text-align: left;
    font-size: clamp(15px, 4vw, 17px);
    margin-bottom: 40px;
  }

  .legal-section h2 {
    font-size: clamp(24px, 7vw, 32px);
    text-align: center;
    margin-bottom: 28px;
  }

  .legal-section h3 {
    font-size: clamp(16px, 4.5vw, 19px);
    margin: 28px 0 8px;
  }

}

}












} /* Ende @media (max-width: 768px) */





