
/* Globale Skalierung der gesamten Seite um 95% */
body{
  zoom: 0.95;
}

*{ margin:0; padding:0; box-sizing:border-box; }



:root{
  --bg: #f2f2f2;
  --text: #2f3d36;
  --mint: #a4c5b4;
  --mintHover: #8bc5a7;

  --wrap: 1600px;
  --w: 95%;

  --r-lg: 28px;
  --r-md: 26px;

  --gap-sm: 15px;
  --gap-md: 40px;

  --ease: cubic-bezier(.16,1,.3,1);

  --reveal-y: 14px;
  --reveal-dur: 700ms;

  --header-h: 108px;
  --section-space-lg: clamp(100px, 12vh, 180px);
  --section-space-md: clamp(70px, 8vh, 120px);
  --section-space-sm: clamp(40px, 5vh, 70px);
}

html{
  font-size: clamp(14px, 0.82vw, 16px);
  scroll-behavior: smooth;
}

body{
  font-family: "sofia-pro-narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ================= GLOBAL HELPERS ================= */
.container{
  width: var(--w);
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

a:focus-visible, button:focus-visible{
  outline: 3px solid rgba(164,197,180,.6);
  outline-offset: 3px;
  border-radius: 14px;
}






/* ================= HEADER ================= */

:root{
  --header-h: 96px;
}

.header{
  background-color: var(--bg);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
  transition: box-shadow .6s var(--ease);
}

.header.scrolled{
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
}


/* LOGO */

.logo{
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .6s var(--ease),
              transform .6s var(--ease);
}

.logo img{
  height: 90px;
  width: auto;
  display: block;
}

.header.scrolled .logo{
  opacity: 1;
  transform: translateX(0);
}


/* NAVIGATION */

.navigation{
  position: absolute;
  left: 50%;
  display: flex;
  gap: var(--gap-sm);
  transform: translateX(-50%);
  transition: all .7s var(--ease);
  will-change: transform;
}


/* Scroll Zustand */

.header.scrolled .navigation{
  left: auto;
  right: 0;
  transform: none;
}


/* NAV BUTTONS */

.navigation a{
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 25px;
  background-color: var(--mint);
  border: 1px solid var(--mint);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: background-color .2s ease,
              transform .2s ease;
}

.navigation a:hover{
  background-color: var(--mintHover);
  transform: translateY(-1px);
}










/* ================= HERO ================= */
.hero{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}

.hero-image{
  width: 100%;
  height: clamp(430px, 58vh, 62vh);
  margin-top: clamp(24px, 4vh, 50px);
  background-image: url("assets/grafik-titelseite.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}

.hero-values{
  margin-top: clamp(90px, 11vh, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.2vw, 34px);
  font-size: clamp(22px, 1.5vw, 26px);
}

/* neue Schrift */
.hero-values span:not(.dot){
  font-family: "sofia-pro-narrow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.hero-values .dot{
  width: clamp(12px, .9vw, 16px);
  height: clamp(12px, .9vw, 16px);
  border-radius: 50%;
  background-color: var(--mint);
  display: inline-block;
}












.about {
  min-height: calc(100vh - var(--header-h));
  padding: clamp(60px, 10vh, 150px) 0 40px;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  column-gap: clamp(30px, 4vw, 80px);
  row-gap: 40px;
  align-items: start;
}

/* ── Tablet: ab ~900px einspaltig ── */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }
}

.about-right {
  position: relative;
}

.about-photo {
  overflow: visible;
  position: relative;
}

.about-photo img {
  width: 105%;
  max-width: 620px;
  height: auto;
  display: block;
}

@media (max-width: 960px) {
  .about-photo img {
    width: 85%;
    max-width: 420px;
    margin-inline: auto;
  }
}

/* ── Heading ── */
.about-heading {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin: clamp(16px, 4vh, 50px) 0 30px 0;
  z-index: 2;
  transform: translateX(clamp(10px, 3vw, 50px));
}

.about-heading::before {
  content: "";
  position: absolute;
  right: clamp(-30px, -3vw, -60px);
  top: -18px;
  width: clamp(280px, 38vw, 620px);
  height: clamp(90px, 9vw, 140px);
  background: url("assets/hintergrund-rechts.png") center / contain no-repeat;
  z-index: 1;
  pointer-events: none;
}

.about-heading h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: clamp(14px, 1.5vw, 22px) clamp(50px, 8vw, 145px);
  font-size: clamp(32px, 3.2vw, 54px);
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 960px) {
  .about-heading {
    justify-content: center;
    transform: none;
  }
  .about-heading::before {
    right: 50%;
    transform: translateX(50%);
    width: clamp(280px, 80vw, 500px);
  }
  .about-heading h2 {
    padding: 14px clamp(40px, 10vw, 100px);
  }
}

/* ── Copy ── */
.about-copy {
  max-width: 400px;
  margin-left: calc(55% + 40px);
  text-align: center;
  color: var(--text);
}

.about-copy p {
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1.55;
  margin-bottom: 18px;
}

@media (max-width: 960px) {
  .about-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
    padding-inline: 16px;
  }
  .about-copy p {
    font-size: clamp(15px, 2.2vw, 18px);
  }
}

/* ── Icons ── */
.about-icons {
  grid-column: 1 / -1;
  position: relative;
  height: 200px;
  margin-top: -120px;
}

.about-icon {
  position: absolute;
}

/* Desktop: exakte Pixel-Positionen wie gehabt */
.about-icon:nth-child(1) {
  left: 570px;
  top: -305px;
}

.about-icon:nth-child(2) {
  left: 805px;
  top: -165px;
}

/* Tablet */
@media (max-width: 960px) {
  .about-icons {
    height: 140px;
    margin-top: -60px;
  }
  .about-icon:nth-child(1) {
    left: clamp(80px, 22vw, 320px);
    top: -200px;
  }
  .about-icon:nth-child(2) {
    left: clamp(200px, 42vw, 500px);
    top: -100px;
  }
}

/* Mobil */
@media (max-width: 600px) {
  .about-icons {
    display: flex;
    justify-content: center;
    gap: 32px;
    height: auto;
    margin-top: 24px;
    position: static;
  }
  .about-icon {
    position: static;
  }
  .about-icon img {
    width: clamp(100px, 28vw, 140px);
    height: auto;
  }
}

.about-icon img {
  display: block;
  transition: transform 0.25s var(--ease);
}

.about-icon:hover img {
  transform: translateY(-6px);
}








/* ================= ANGEBOT ================= */

.offer{
padding: clamp(70px, 8vh, 110px) 0 clamp(120px, 16vh, 200px);
background: var(--bg);
position: relative;
}

.offer-title{
display:flex;
justify-content:center;
position:relative;
margin-bottom: clamp(100px, 12vh, 160px);
}

.offer-title::before{
content:"";
position:absolute;
width: clamp(420px, 32vw, 520px);
height: clamp(115px, 9vw, 150px);
background:url("assets/brush-angebot.png") center/contain no-repeat;
top:-35px;
z-index:1;
}

.offer-title h2{
position:relative;
z-index:2;
font-size:clamp(50px,3.7vw,60px);
font-weight:600;
color:var(--text);
margin:0;
}

.offer-icons{
display:flex;
justify-content:center;
align-items:center;
gap:clamp(90px,10vw,180px);
}

.offer-item{
width: clamp(360px, 30vw, 520px);
overflow:visible;
}

.offer-item img{
width:83%;
height:auto;
display:block;
margin:auto;
transition: transform .35s var(--ease);
will-change: transform;
}

.offer-item:hover img{
transform: translateY(-6px);
}














/* ================= TARIFE ================= */
.tarife{
  padding: clamp(90px, 10vh, 120px) 0 60px;
  background: var(--bg);
  position: relative;
}

.tarife-title{
  position: relative;
  width: var(--w);
  max-width: var(--wrap);
  margin: 0 auto clamp(60px, 8vh, 90px);
}

.tarife-title h2{
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(52px, 3.8vw, 64px);
  font-weight: 600;
  color: var(--text);
  padding: 18px 70px 18px 40px;
  display: inline-block;
}

.tarife-title::before{
  content: "";
  position: absolute;
  left: clamp(-90px, -7vw, -120px);
  top: -10px;
  width: clamp(420px, 32vw, 520px);
  height: clamp(115px, 9vw, 150px);
  background: url("assets/brush-links.png") center/contain no-repeat;
  z-index: 1;
  pointer-events: none;
}

.tarife-row{
  width: var(--w);
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(30px, 3vw, 60px);
}

.tarife-col{
  flex: 1;
  min-width: 260px;
  color: var(--text);
}

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

.tarif-item{ margin-bottom: clamp(30px, 4vh, 48px); }

.tarif-label{
  font-size: clamp(20px, 1.2vw, 22px);
  font-weight: 500;
  margin-bottom: 6px;
}

.tarif-price{
  font-size: clamp(34px, 2.1vw, 40px);
  font-weight: 600;
}

.tarife-col h3{
  font-size: clamp(28px, 2vw, 34px);
  font-weight: 600;
  text-align: center;
  margin: 0 0 28px;
  min-height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.tarife-col p{
  font-size: clamp(18px, 1.05vw, 19px);
  line-height: 1.75;
  text-align: center;
  margin: 0 auto 18px;
  max-width: 360px;
}

.tarife-sep{
  width: clamp(160px, 14vw, 220px);
  height: 520px;
  background: url("assets/vertikale-trennlinie.png") center/contain no-repeat;
  opacity: 1;
  flex: 0 0 auto;
}



/* ================= PRAXIS ================= */

.praxis{
  padding: clamp(75px, 9vh, 110px) 0 clamp(55px, 7vh, 85px);
  background: var(--bg);
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

.praxis-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:100%;
}

/* ===== Titel ===== */

.praxis-title{
  position:relative;
  margin-bottom:clamp(48px,6vh,72px);
  display:flex;
  justify-content:center;
  width:100%;
}

.praxis-title::before{
  content:"";
  position:absolute;
  width:clamp(500px,42vw,680px);
  height:clamp(110px,9vw,150px);
  top:-28px;
  background:url("assets/brush-praxis.png") center/contain no-repeat;
  z-index:1;
}

.praxis-title h2{
  position:relative;
  z-index:2;
  font-size:clamp(48px,3.7vw,60px);
  font-weight:600;
  color:var(--text);
  margin:0;
}


/* ===== Slider Bereich ===== */

.praxis-viewport{
  width:min(1660px,92vw);
  margin:0 auto;
  position:relative;
  overflow:visible;
}

.praxis-clip{
  overflow:hidden;
}

.praxis-track{
  display:flex;
  gap:clamp(18px,1.8vw,28px);
  transition:transform 550ms var(--ease);
  will-change:transform;
}


/* ===== Karten ===== */

.praxis-card{
  flex:0 0 calc((100% - (2 * clamp(18px,1.8vw,28px))) / 3);
  border-radius:var(--r-md);
  overflow:hidden;
  aspect-ratio:3/2;
  background:transparent;
}


/* ===== Bild ===== */

.praxis-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s var(--ease);
}


/* ===== Hover Zoom Effekt ===== */

.praxis-card:hover img{
  transform:scale(1.08);
}


/* ===== Pfeile ===== */

.praxis-controls{
  margin-top:clamp(60px,8vh,90px);
  display:flex;
  gap:clamp(70px,8vw,110px);
  align-items:center;
  justify-content:center;
}

.praxis-arrow{
  background:transparent;
  border:none;
  cursor:pointer;
  transition:transform .2s ease;
  padding:0;
}

.praxis-arrow:hover{
  transform:scale(1.08);
}

.praxis-arrow img{
  width:clamp(58px,4.3vw,74px);
  display:block;
}


/* ===== Laptop Anpassung ===== */

@media (max-width:1366px){

  .praxis{
    padding:clamp(68px,8vh,95px) 0 clamp(50px,6vh,72px);
  }

  .praxis-title{
    margin-bottom:clamp(42px,5vh,60px);
  }

  .praxis-title::before{
    width:clamp(470px,40vw,620px);
    height:clamp(105px,8.5vw,138px);
    top:-24px;
  }

}


/* ===== kleiner Laptop ===== */

@media (max-width:1180px){

  .praxis-viewport{
    width:min(1500px,100%);
  }

  .praxis-track{
    gap:20px;
  }

  .praxis-card{
    flex:0 0 calc((100% - 40px) / 3);
  }

  .praxis-controls{
    gap:70px;
    margin-top:28px;
  }

}


/* ===== Lightbox ===== */

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(36, 37, 37, 0.85);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.lightbox-img{
max-width:90%;
max-height:90%;
border-radius:12px;
}

.lightbox-close{
position:absolute;
top:40px;
right:60px;
font-size:40px;
color:white;
cursor:pointer;
}










/*  KONTAKT  */
.kontakt{
  padding: clamp(110px, 14vh, 160px) 0 clamp(120px, 17vh, 200px);
  background: var(--bg);
}

.kontakt-container{
  width: var(--w);
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(50px, 7vw, 70px);
}

.kontakt-left{
  flex: 1;
  max-width: 640px;
}

.kontakt-heading{
  position: relative;
  margin-bottom: clamp(70px, 8vh, 100px);
}

.kontakt-heading::before{
  content: "";
  position: absolute;
  left: clamp(-90px, -7vw, -120px);
  top: -25px;
  width: clamp(460px, 38vw, 620px);
  height: clamp(125px, 10vw, 170px);
  background: url("assets/brush-links.png") center/contain no-repeat;
  z-index: 1;
}

.kontakt-heading h2{
  position: relative;
  z-index: 2;
  font-size: clamp(52px, 3.8vw, 64px);
  font-weight: 600;
  color: var(--text);
  margin: 0;
  padding: 12px 40px;
}

.kontakt-details{
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vh, 28px);
  padding-left: 20px;
}

.kontakt-row{
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
  color: var(--text);
  font-size: clamp(20px, 1.2vw, 22px);
  font-weight: 600;
  transition: transform .25s var(--ease),
              color .25s var(--ease);
}

.kontakt-row:hover{
  transform: translateX(4px);
  text-decoration: none;
  color: #2e423a;
}

.kontakt-row img{
  width: clamp(40px, 2.8vw, 48px);
  height: clamp(40px, 2.8vw, 48px);
  object-fit: contain;
  flex-shrink: 0;
}

.kontakt-text{
  margin-top: clamp(70px, 8vh, 100px);
  padding-left: 20px;
  max-width: 560px;
}

.kontakt-text p{
  font-size: clamp(20px, 1.2vw, 22px);
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  margin: 0;
}

.kontakt-text strong{ font-weight: 600; }


.kontakt-right {
  position: relative;
  width: 460px;
  height: 500px;
  flex-shrink: 0;
  margin-right: 60px;
}

.kontakt-map {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.kontakt-map:hover {
  transform: scale(1.06);
  opacity: 0.85;
}

.kontakt-map img {
  width: 290px;
}

.termin-icon {
  position: absolute;
  bottom: 0;
  left: -100px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.termin-icon:hover {
  transform: scale(1.06);
  opacity: 0.85;
}

.termin-icon img {
  width: 290px;
}

/*  ANIMATIONS  */
.reveal{
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity var(--reveal-dur) var(--ease),
              transform var(--reveal-dur) var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}










/*  KINDER UNTERSEITE  */
.subpage-kinder{
  background: url("assets/unterseite-kinder.png") center/cover no-repeat fixed;
  min-height: 100vh;
  animation: pageIn 900ms cubic-bezier(.16,1,.3,1) both;
  will-change: transform;
}

.subpage-kinder{
  background: url("assets/unterseite-kinder.png") center/cover no-repeat fixed;
  min-height: 100vh;
}

.kinder-stage{
  position: relative;
  min-height: 100vh;
  padding: clamp(110px, 13vh, 140px) 0 clamp(90px, 10vh, 120px);
}

.kinder-copy{
  width: min(820px, 54vw);
  margin-left: 7vw;
  color: var(--text);
}

.kinder-copy h1{
  font-family: "sofia-pro-narrow", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(52px, 4.2vw, 74px);
  line-height: 1.05;
  margin: 0 0 clamp(35px, 5vh, 60px);
}

.kinder-intro{
  font-size: clamp(20px, 1.15vw, 22px);
  line-height: 1.65;
  max-width: 740px;
  margin: 0 0 48px;
}

.kinder-copy h2{
  font-size: clamp(24px, 1.4vw, 26px);
  font-weight: 600;
  margin: 0 0 30px;
}

.kinder-list{
  margin: 0;
  padding-left: 28px;
  font-size: clamp(20px, 1.15vw, 22px);
  line-height: 1.7;
}

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

.kinder-photo{
  position: absolute;
  right: 10vw;
  top: 100px;
  width: clamp(320px, 28vw, 520px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.kinder-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kinder-back{
  position: absolute;
  right: 35vw;
  bottom: 90px;
  display: inline-block;
  line-height: 0;
}

.kinder-back img{
  width: clamp(120px, 10vw, 170px);
  height: auto;
  display: block;
  transition: transform .25s var(--ease);
}

.kinder-back:hover img{
  transform: translateY(-4px);
}




/*  ERWACHSENE  */
.subpage-erwachsene{
  background: url("assets/unterseite-erwachsene.png") center/cover no-repeat fixed;
  min-height: 100vh;
  animation: pageIn 900ms cubic-bezier(.16,1,.3,1) both;
  will-change: transform;
}

.erwachsene-stage{
  position: relative;
  min-height: 100vh;
  padding: clamp(110px, 13vh, 140px) 0 clamp(90px, 10vh, 120px);
}

.erwachsene-copy{
  width: min(720px, 48vw);   /* etwas schmaler */
  margin-right: 7vw;
  margin-left: auto;
  color: var(--text);
}

.erwachsene-copy h1{
  font-family: "sofia-pro-narrow", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(52px, 4.2vw, 74px);
  line-height: 1.05;
  margin: 0 0 clamp(35px, 5vh, 60px);
}

.erwachsene-intro{
  font-size: clamp(20px, 1.15vw, 22px);
  line-height: 1.65;
  max-width: 740px;
  margin: 0 0 48px;
}

.erwachsene-copy h2{
  font-size: clamp(24px, 1.4vw, 26px);
  font-weight: 600;
  margin: 0 0 30px;
}

.erwachsene-list{
  margin: 0;
  padding-left: 28px;
  font-size: clamp(20px, 1.15vw, 22px);
  line-height: 1.7;
}

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

.erwachsene-photo{
  position: absolute;
  left: 10vw;
  top: 100px;
  width: clamp(320px, 28vw, 520px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.erwachsene-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.erwachsene-back{
  position: absolute;
  left: 35vw;
  bottom: 90px;
  display: inline-block;
  line-height: 0;
}

.erwachsene-back img{
  width: clamp(120px, 10vw, 170px);
  height: auto;
  display: block;
  transition: transform .25s var(--ease);
}

.erwachsene-back:hover img{
  transform: translateY(-4px);
}



/*  WERDEGANG   */

.werdegang-header{
text-align:center;
margin-bottom:130px;
position:relative;
 margin-top: 70px;
}


/* ÜBERSCHRIFT */

.werdegang-header h1{

font-family:"sofia-pro-narrow", sans-serif;

font-size:clamp(40px,4vw,64px);

font-weight:600;

margin:0;

position:relative;

display:inline-block;

z-index:1;

}


/* BRUSH HINTER DER ÜBERSCHRIFT */

.werdegang-header h1::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  width: 2000px;
  height: 120px;   /* vorher 10px */
  background: url("assets/brush-beruflicherwerdegang.png") center / contain no-repeat;
  z-index: -1;
  opacity: 0.95;
}

.timeline-image{
display:block;
width:100vw;      /* volle Bildschirmbreite */
height:auto;

margin-left:calc(50% - 50vw);  /* bricht aus Container aus */
}

.screenreader-text{
position:absolute;
width:1px;
height:1px;
padding:0;
margin:-1px;
overflow:hidden;
clip:rect(0,0,0,0);
white-space:nowrap;
border:0;
}












/*  FORTBILDUNGEN  */

.fortbildungen-page{
background:#f2f2f2;
font-family:"sofia-pro-narrow", sans-serif;
color:#2f3d36;
margin:0;
}



/* CONTAINER */

.fortbildungen-container{
max-width:1300px;
margin:0 auto;
padding:100px 40px 120px;

display:flex;
justify-content:space-between;
align-items:flex-start;
gap:120px;
}



/* LINKER TEXTBEREICH */

.fortbildungen-content{
max-width:620px;

/* schiebt nur den Textbereich nach links */
margin-left: -140px;
}


/* HEADER */

.fortbildungen-header{
margin-bottom:80px;
}

.fortbildungen-header h1{

font-family:"sofia-pro-narrow", sans-serif;

font-size:clamp(40px,4vw,68px);

font-weight:600;

margin:0;

position:relative;

display:inline-block;

}



/* BRUSH */

.fortbildungen-header h1::before{

content:"";

position:absolute;

left:-70px;

top:-25px;

width:520px;

height:150px;

background:url("assets/brush-links.png") center/contain no-repeat;

z-index:-1;

}



/* TEXT */

.fortbildungen-text{

font-size:18px;

line-height:1.7;

}

.fortbildungen-text p{

margin-bottom:30px;

}

.fortbildungen-text h2{

font-size:22px;

font-weight:600;

margin-bottom:20px;

}



/* LISTEN */

.fortbildungen-text ul{

padding-left:22px;

margin:0;

}

.fortbildungen-text li{

margin-bottom:14px;

}



/* HAUPTPUNKTE */

.fortbildungen-text li::marker{

color:#9FC6B1;

font-size:1.4em;

}



/* UNTERLISTE */

.fortbildungen-text ul ul{

list-style-type:circle;

margin-top:8px;

}

.fortbildungen-text ul ul li::marker{

color:#6f7f78;

font-size:1em;

}
/* ================= LOGOBEREICH ================= */

.fortbildungen-logos{
position:relative;
width:520px;
height:700px;
}


/* KREIS */

.kreis-umrandung{
position:absolute;

width:1100px;          /* größerer Kreis */

right:-700px;          /* weiter nach rechts */

top:px;             /* weiter nach unten */

opacity:0.65;

z-index:0;
}


/* LOGOS */

.logos{
position:absolute;

top:350px;             /* Position im Kreis */

right:-90px;

display:flex;
flex-direction:column;

align-items:center;

gap:80px;

z-index:2;
}


/* LOGO GRÖSSE */

.logos img{
max-width:210px;
height:auto;
}












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

.impressum-page{
background:#f2f2f2;
font-family:"sofia-pro-narrow", sans-serif;
color:#2f3d36;
margin:0;
}

.impressum-container{
max-width:900px;
margin:0 auto;
padding:100px 40px 120px;
}


/* HEADER */

.impressum-header{
text-align:center;
margin-bottom:70px;
position:relative;
}

.impressum-header h1::before {
  display: none;
}

/* Brush */

.impressum-header h1::before{
content:"";
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-55%);
width:520px;
height:150px;
background:url("assets/brush-links.png") center/contain no-repeat;
z-index:-1;
}


/* TEXT */

.impressum-content{
font-size:18px;
line-height:1.7;
max-width:700px;
margin:0 auto;
text-align:center;
}

.impressum-content p{
margin-bottom:24px;
}

/* ================= LEGAL SECTION ================= */

.legal-section {
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.legal-section h2 {
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 600;
  margin: 0 0 40px;
}

.legal-section h3 {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  margin: 36px 0 10px;
}

.legal-section p {
  margin-bottom: 16px;
}

.legal-section a {
  color: #2d4a3e;
}