@charset "UTF-8";
/**
* Theme Name:    Pfürs
* Theme URI:     http://www.df-kreativ.de
* Author:        Daniel Faßbender | df-kreativ
* Author URI:    http://www.df-kreativ.de/
* Description:   Theme für Pfürs
* Version:       1.0
*/
@font-face {
  font-family: "Nunito-Bold";
  src: url("fonts/Nunito-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito-Regular";
  src: url("fonts/Nunito-Regular.woff2") format("woff2");
}
@media (max-width: 650px) {
  .notMobile {
    display: none;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: "Nunito-Light", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  font-size: 20px;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

@media (max-width: 1300px) {
  body {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 16px;
  }
}
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  font-family: "Nunito-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  text-wrap: balance;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 2.5rem;
  line-height: 1.3;
}

@media (max-width: 1300px) {
  h1 {
    font-size: 2.3rem;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  h3 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
p {
  margin: 0;
  margin-bottom: 20px;
}

@media (max-width: 500px) {
  p {
    margin-bottom: 10px;
  }
}
strong {
  font-family: "Nunito-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

a {
  color: rgb(195, 22, 134);
  text-decoration: none;
  transition: all ease-in 0.25s;
}

a:hover {
  color: rgb(227, 203, 219);
  text-decoration: none;
  text-decoration: none;
}

a.btnPrimary {
  background: white;
  border: 2px solid rgb(195, 22, 134);
  color: rgb(195, 22, 134);
  display: inline-block;
  padding: 15px 25px 15px;
  border-radius: 27px;
  margin-top: 20px;
  font-family: "Nunito-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

a.btnPrimary:hover {
  background: rgb(195, 22, 134);
  color: white;
}

a.btnFull {
  background: rgb(195, 22, 134);
  border: 2px solid rgb(195, 22, 134);
  color: white;
  display: inline-block;
  padding: 15px 25px 15px;
  border-radius: 27px;
  margin-top: 20px;
  font-family: "Nunito-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

a.btnFull:hover {
  background: white;
  color: rgb(195, 22, 134);
}

a.btnWhite {
  background: transparent;
  border: 2px solid white;
  color: white;
  display: inline-block;
  padding: 15px 25px 15px;
  border-radius: 27px;
  margin-top: 20px;
  font-family: "Nunito-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

a.btnWhite:hover {
  background: white;
  color: rgb(195, 22, 134);
}

a.wp-block-button__link.wp-element-button {
  background: white;
  border: 2px solid rgb(195, 22, 134);
  color: rgb(195, 22, 134);
  display: inline-block;
  padding: 15px 25px 15px;
  border-radius: 27px;
  margin-top: 20px;
  font-family: "Nunito-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

a.wp-block-button__link.wp-element-button:hover {
  background: rgb(195, 22, 134);
  color: white;
}

.wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.container {
  width: min(90%, 100rem);
}

.grid-auto {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

.grid-header {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.contentContainer {
  display: grid;
  gap: 5rem;
  grid-template-columns: 2fr 1fr;
}

.bigGap {
  gap: 5rem;
}

/* Standard: alle direkten Kinder in .wrap wie .container begrenzen */
.wrap > *:not(.alignfull):not(.container) {
  width: min(90%, 100rem);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Speziell: Gutenberg-Spalten innerhalb von .wrap ebenfalls begrenzen */
.wrap .wp-block-columns:not(.alignfull) {
  width: min(90%, 100rem);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Volle Breite weiterhin erlauben, wenn explizit "Volle Breite" gewählt */
.wrap > .alignfull,
.wrap .wp-block-columns.alignfull {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 1400px) {
  .contentContainer {
    gap: 3rem;
    grid-template-columns: 1fr;
  }
}
:where(.wp-block-columns.is-layout-flex) {
  gap: 5em;
}

.sectionMargin {
  margin-top: 130px;
}

.sectionMarginSmall {
  margin-top: 70px;
}

@media (max-width: 1300px) {
  /* Standard-Gutenberg-Spalten */
  .wp-block-columns {
    flex-wrap: wrap !important; /* falls noch nicht aktiv */
  }
  .wp-block-column {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 500px) {
  .sectionMargin {
    margin-top: 70px;
  }
  .sectionMarginSmall {
    margin-top: 40px;
  }
}
header {
  position: fixed;
  width: 100%;
  background: white;
  border-bottom: 8px solid rgb(195, 22, 134);
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all ease-in 0.25s;
  z-index: 1000;
}

.headerTiny {
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
}

.brand {
  width: 200px;
  transition: all ease-in 0.25s;
}

.brandTiny {
  width: 120px;
}

.mainNav {
  padding-top: 15px;
  transition: all ease-in 0.25s;
}

.mainNavTiny {
  padding-top: 0px;
}

.heroBig .container {
  height: 100vh;
  position: relative;
}

.hero {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.heroBig .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.heroContent {
  width: 70%;
  position: absolute;
  bottom: 2vh;
  text-align: center;
  color: white;
  background: rgba(195, 22, 134, 0.9);
  padding: 2rem 2rem 1rem;
  border-radius: 40px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
}

.has-white-background-color {
  padding: 0 15vw;
}

@media (max-width: 768px) {
  .has-white-background-color {
    padding: 0 0;
  }
}
#weiterbildungen {
  background: rgb(227, 203, 219);
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: -130px;
}

.weiterbildungenIntro {
  margin-bottom: 4rem;
}

.weiterbildungsgrid {
  gap: 5rem;
}

.weiterbildungsBox {
  background: white;
  border-radius: 40px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  padding: 3rem;
}

.weiterbildungsgrid > :last-child {
  grid-column: 1/-1;
}

@media (max-width: 1100px) {
  .weiterbildungsgrid.grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  #weiterbildungen {
    margin-bottom: -70px;
  }
}
.bildContent {
  display: grid;
  gap: 5rem;
  grid-template-columns: 2fr 1fr;
  grid-template-areas: "bild text";
}

.bildContentImg {
  grid-area: bild;
}

.bildContentContent {
  grid-area: text;
}

.bildContentImg img {
  border-top: 8px solid rgb(195, 22, 134);
}

.bildContentContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

@media (max-width: 1300px) {
  .bildContent {
    gap: 2rem;
    grid-template-columns: 1fr;
    grid-template-areas: "bild" "text";
  }
}
.buch {
  background: white;
  border-radius: 40px;
  padding: 3rem;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  margin-top: 5rem;
}

.bookGrid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 3fr;
}

.bookContent a:first-of-type {
  margin-right: 2rem;
}

@media (max-width: 768px) {
  .bookGrid {
    grid-template-columns: 1fr;
  }
}
.mitarbeiterGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.mitarbeiterBox {
  display: grid;
  grid-template-rows: auto 1fr auto; /* Bild | Content | Leistungen */
  border: 2px solid #e10079;
  border-radius: 24px;
  padding: 2.5rem;
  margin-top: 80px;
}

.mitarbeiterBild {
  margin-bottom: 1.5rem;
}

.mitarbeiterContent {
  display: flex;
  flex-direction: column;
}

/* Dieser Block (Headline + Fließtext) streckt,
   NICHT die Headline allein */
.mitarbeiterText {
  flex: 1;
}

/* Leistungen bleibt bündig unten */
.leistungen {
  margin-top: 1.5rem;
}

.mitarbeiterBild {
  margin-top: -100px;
}

.mitarbeiterBild img {
  border-radius: 40px;
  width: 230px;
  height: auto;
}

.leistungen p {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .mitarbeiterGrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .mitarbeiterBild img {
    width: 170px;
  }
}
.heroSmall .container {
  height: 60vh;
  position: relative;
}

.orgaBox {
  background: rgb(195, 22, 134);
  color: white;
  padding: 3rem;
  border-radius: 40px;
}

#buchen {
  background: rgb(227, 203, 219);
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 1500px) {
  .orgaBox h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 500px) {
  .orgaBox h2 {
    font-size: 1.4rem;
  }
}
.pageWrap {
  padding-top: 160px;
}

footer {
  padding-top: 60px;
  padding-bottom: 40px;
  border-top: 8px solid rgb(195, 22, 134);
}

.footerNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footerNav ul li a {
  font-family: "Nunito-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footerNav ul li a:hover {
  color: black;
}

@media (max-width: 380px) {
  footer .grid-header {
    display: block;
  }
  .footerNav {
    margin-top: 40px;
  }
}
.faq-accordion {
  max-width: 100%;
  border-top: 1px solid #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.faq-item {
  border-bottom: 1px solid #000;
}

.faq-header {
  width: 100%;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background-color 0.2s ease;
}

.faq-header:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-title {
  font-family: "Nunito-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Plus-/Minus-Icon (reines CSS) */
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #000;
  transform-origin: center;
  transition: transform 0.2s ease;
}

/* Vertikaler Strich */
.faq-icon::before {
  width: 2px;
  height: 18px;
  transform: translate(-50%, -50%);
}

/* Horizontaler Strich */
.faq-icon::after {
  width: 18px;
  height: 2px;
  transform: translate(-50%, -50%);
}

/* Zustand "offen": Minus anzeigen (vertikale Linie einklappen) */
.faq-item.is-open .faq-icon::before {
  transform: translate(-50%, -50%) scaleY(0);
}

/* Content-Animation */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.faq-content-inner {
  padding: 0 0 1.2rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* offener Zustand */
.faq-item.is-open .faq-content {
  opacity: 1;
}

/* leichte Motion beim Öffnen des Textes */
.faq-item.is-open .faq-content-inner {
  animation: faq-slide-in 0.25s ease;
}

@keyframes faq-slide-in {
  from {
    transform: translateY(-4px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */