

@font-face {
  font-family: "IBM Plex Serif";
  src: url("../fonts/IBMPlexSerif-Regular.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "IBM Plex Serif", serif;
}

@font-face {
  font-family: "IBM Plex Serif Bold";
  src: url("../fonts/IBMPlexSerif-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: bold;
  font-display: swap;
}

@font-face {
  font-family: "Inter-Bold";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: bold;
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Black';
  src: url('../fonts/Inter-Black.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter-Variable';
  src: url('../fonts/InterVariable.woff2') format('woff2');
}


* { box-sizing: border-box; }
body { margin: 0; line-height: 1.5; color: #111; background: #fff; }
a { color: inherit; }

h1 {
  font-family: 'Inter-Variable', sans-serif;
  font-weight: 700;
}
h2 {
  font-family: 'IBM Plex Serif Bold', serif;
  font-weight: 700;
}

h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}

h2 {
  font-size: 2.50em !important;
}
h3 {
  font-size: 1.22em !important;
}
h4 {
  font-size: 1.15em !important;
}

:root {
  /* Primary Greens / Teal */
  --color-green-a: #0fbbcc;
  --color-green-b: #155769;
  --color-green-c: #52b7c1;

  /* Neutral */
  --color-white: #ffffff;
}

.bg-green-b {
  background: var(--color-green-b) !important;
  color: var(--color-white);
}

.hr-green {
  width: 80px;
  height: 5px;
  background-color: #52B7C1;
  border: 1px solid #52B7C1;
  margin-top: -20px;
  margin-left: 0px;
}

.container { width: min(1320px, calc(100% - 32px)); margin-inline: auto; padding: 12px 100px 12px 100px; }
.main { padding: 0; }

/* Header / Navigation */
.site-header { background: #fff; position: sticky; top: 0; z-index: 99 }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 100px 12px 100px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { width: 34px; height: 34px; display: block; }
.brand-name { font-weight: 600; }

.nav { display: flex; align-items: center; gap: 10px; text-transform: uppercase; font-family: 'Inter-Variable', serif; font-weight: 400; }
.nav-link { text-decoration: none; padding: 8px 10px; border-radius: 0px; }
.nav-link.is-active { background: #f2f2f2; }

.nav-toggle { display: none; padding: 8px 10px; border-radius: 0px; border: 1px solid #e6e6e6; background: #fff; }

/* Social Icons */
.social { display: inline-flex; align-items: center; gap: 10px; }
.social-icon { width: 22px; height: 22px; display: block; }


/* Zweigeteilter Contentbereich */
.content-oben { padding: 24px 0; }
.unterbereich { padding: 24px 0 50px 0; border-top: 0px solid #e6e6e6; }


/* Hero (Hintergrund wechselt per Überblenden) */
.hero { position: relative; min-height: 360px; color: #fff; margin: 0 auto; width: min(1320px, calc(100% - 32px)); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; border-radius: 0px; }

.hero-bg__layer{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  background-color:#111;
  opacity:0;
  transition: opacity 1400ms linear;
  transform: scale(1.02);
}
.hero-bg__layer.is-visible{ opacity:1; }

.hero-bg__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; align-items: end; padding: 40px 100px 0 100px; min-height: 360px; }
.hero-left { align-self: center; }
.hero-chip {
  display: inline-block;
  background: #0fbbcc; /* blauer Layer */
  color: #fff;
  padding: 10px 14px;
  border-radius: 0px;
  font-family: 'IBM Plex Serif Bold', serif;
  font-weight: 600;
  max-width: 34ch;
}
.hero-title { margin: 40px 0 0; font-size: clamp(48px, 5vw, 80px); line-height: 1.05; }

.hero-right { display: grid; justify-items: end; align-items: end; }
.hero-person { width: min(420px, 100%); height: auto; display: block; /*filter: drop-shadow(0 12px 28px rgba(0,0,0,0.25));*/ }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: 420px; padding:40px 40px 0 40px; }
  .hero-right { justify-items: start; }
  .hero-person { width: min(320px, 95%); }
  .main .container { padding: 12px 20px 0px 20px; }
}

/* =========================
   Content Oben – 2er Grid
========================= */

.content-oben {
  padding: 20px 0;
}

.content-oben>.container {
  width: 1320px;
  max-width: 100%;
  margin-inline: auto;
  padding-left: 50px;
  padding-right: 50px;
}

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

.content-box {
  background: transparent;
}

.content-box h2 {
  margin-top: 0;
}

.content-box a {
 font-family: 'Inter-Variable', sans-serif;
}

.content-box.green-box{
  padding-top: 10px;
  padding-right: 10px;
  background: var(--color-green-b) !important;
  color: var(--color-white);
  font-family: 'Inter-Variable', sans-serif;
}

.green-box h2 {
  font-family: 'Inte-Variable', sans-serif;
}



@media (max-width: 900px) {
.content-oben>.container {
    width: 1320px;
    max-width: 100%;
    margin-inline: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Terminliste – 2 Spalten */

.terminliste {
  list-style: none;
  margin: 20px 40px 0 0;
  padding: 0;
}

.termin {
  display: grid;
  grid-template-columns: 60px 1fr;
  /* schmale Datums-Spalte */
  gap: 30px;
  padding: 8px 0;
}

.termin:last-child {
  border-bottom: none;
}

.termin__datum {
  font-weight: 300;
  font-size: .8rem;
  white-space: nowrap;
  background: var(--color-green-a) !important;
  text-align: center;
  padding: 5px;
}

.termin__text {
  line-height: 1.4;
}

/* 2-grid Button: volle Breite, links Text, rechts Icon */
.content-box__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-green-c) !important;
  font-weight: 700;
  color: var(--color-white);
  width: 60%;
  margin: 50px 0 0 0;
  padding: 15px 55px;
  text-decoration: none;
  border-radius: 0;
  /* kein Radius */
}

@media (max-width: 900px) {
  .content-box__btn {
    width: 100%;
    display: block;
    text-align: center;
  }
}


/***** Unterbereich: H2 auf Weiß, darunter boxed grauer Bereich */

/* H2 oben: weiß/transparent */
.unterbereich-kopf {
  padding-bottom: 12px;
  margin: 0 auto;
}

/* Grauer Bereich ist boxed (weil .container) */
.unterbereich-grau {
  background: #F7F7F7;
  border-radius: 0px;
  padding: 40px 100px;
}

/* Kein Background hier, damit Schatten sichtbar ist */
.unterbereich-gridwrap {
  background: transparent;
}

/* 3er Grid */
.unterbereich-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Boxen */
.ub-box {
  background: #ebebeb;
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
  overflow: hidden;
  padding: 0;
}


/* Bild oben */
.ub-box__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Text */
.ub-box__text {
  margin: 12px 12px 0;
}

/* Button: volle Breite, links Text, rechts Icon */
.ub-box__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  margin: 20px 0 0 0;
  padding: 12px 14px;

  border-top: 2px solid #ffffff;
  background: #ebebeb;

  text-decoration: none;
  border-radius: 0; /* kein Radius */
}

.ub-box__btn-text {
  font-weight: 600;
}

/* Icon rechts */
.ub-box__btn-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .unterbereich-grau { padding: 32px 24px; }
}

@media (max-width: 900px) {
  .unterbereich-grid { grid-template-columns: 1fr; }
  .unterbereich-grau { padding: 24px 16px; }
  .ub-box__img { height: auto; }
}


/* =========================
   Accordion Styling
========================= */

.acc {
  border-top: 1px solid #e6e6e6;
  padding: 14px 0;
}

.acc:last-of-type {
  border-bottom: 1px solid #e6e6e6;
}

.acc__sum {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.acc__sum::-webkit-details-marker {
  display: none;
}

.acc__h {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #52B7C1;
}

/* PLUS / MINUS */
.acc__icon::before {
  content: "+";
  color: #52B7C1;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.acc[open] .acc__icon::before {
  content: "−";
}

.acc__body {
  padding: 12px 0 0 0;
}

.acc__body p {
  margin: 0 0 10px 0;
}

.acc__body ul {
  margin: 10px 0 0 18px;
}

/*********************** AB HIER DER FOOTER ******************************/
.site-footer {
  background: #000;
  color: #fff;
  font-family: 'Inter-Variable';
}

.footer-wrap {
  padding: 70px 100px;
}

/* DAS ist die schmale linke Spalte */
.footer-inner {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Logo */
.footer-logo {
  width: 180px;
  height: auto;
  display: block;
  background: #fff;
  padding: 18px 22px;
}

/* Text */
.footer-text p {
  margin: 0 0 14px 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: .9;
}

/* Social 32x32 PNG */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social img {
  width: 32px;
  height: 32px;
  display: block;
}

/* Footer-Menü */
.footer-nav {
  display: flex;
  gap: 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  opacity: .85;
}

.footer-nav a:hover {
  opacity: 1;
}

/* Unterer Balken */
.footer-bottom {
  background: #52B7C1;
}

.footer-bottom .container {
  padding: 18px 100px;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-wrap {
    padding: 40px 0 32px;
  }

  .footer-inner {
    max-width: 100%;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}


/* =========================
   Header: Mobile sauber
========================= */
@media (max-width: 900px) {

  .header-inner {
    padding: 12px 20px;
    position: relative;
  }

  /* Layout: Hamburger links, Social rechts */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  /* Social bleibt rechts */
  .social {
    display: inline-flex;
    gap: 10px;
    align-items: center;
  }

  /* Navigation wird Dropdown */
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);

    flex-direction: column;
    align-items: stretch;
    gap: 0;

    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0px;
    overflow: hidden;
    z-index: 999;
  }

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

  .nav-link {
    padding: 14px 16px;
    border-bottom: 1px solid #e6e6e6;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

}