@charset "UTF-8";
/* -------------------------------------------------------
   SCSS STRUKTUR – EMPFOHLENE REIHENFOLGE

   1. SETTINGS
      - Variablen (Farben, Schriften, Abstände)
      - Mixins & Funktionen
      Beispiel: settings/variables, settings/mixins

   2. BASE
      - Reset / Normalize
      - Standard HTML-Elemente (body, h1–h6, p, ul, img)
      - Grundtypografie
      Beispiel: base/reset, base/typography

   3. LAYOUT
      - Globale Layout-Bereiche
      - Header, Footer, Navigation, Grid, Sidebar
      Beispiel: layout/header, layout/footer

   4. COMPONENTS
      - Wiederverwendbare UI-Komponenten
      - Buttons, Slider, Before/After, Karten, Module
      Beispiel: components/buttons, components/image-slider

   5. PAGES
      - Seitenspezifische Styles
      - Home, Kontakt, Landingpages
      Beispiel: pages/home

   6. UTILITIES / OVERRIDES
      - Kleine Helferklassen
      - Hotfixes & !important-Überschreibungen
      Beispiel: utilities/overrides

   ------------------------------------------------------- */
/* =========================
   GLOBAL STYLING
   ========================= */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

.content {
  position: relative;
  z-index: 20;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
  color: var(--wp--preset--color--heading);
  background: rgba(20, 26, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.16s;
}

.btn:hover {
  background: rgba(20, 26, 31, 0.75);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.btn:active {
  transform: none;
}

.btn:focus-visible {
  outline: 2px solid var(--wp--preset--color--heading);
  outline-offset: 4px;
}

.text-center-vertical {
  align-self: center;
}

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

@media screen and (min-width: 850px) {
  .height-title,
  .image-slider-text,
  .footer-text {
    height: auto;
    min-height: 37.5vh;
  }
  .height-page-title {
    height: auto;
    min-height: 18.75vh;
  }
}
@media screen and (max-width: 849.98px) {
  .height-title {
    height: auto;
    min-height: 28svh;
  }
  .height-page-title {
    height: auto;
    min-height: 10svh;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --scrollbar-size: 12px;
    --scrollbar-track: var(--wp--preset--color--background);
    --scrollbar-thumb: var(--wp--preset--color--grid-design);
    --scrollbar-thumb-hover: var(--wp--preset--color--color-accent-2);
  }
  html {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  }
  /* Chrome, Edge, Safari */
  *::-webkit-scrollbar {
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
  }
  *::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
  }
  *::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 999px;
    border: 3px solid var(--scrollbar-track);
  }
  *::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover);
  }
}
/* =========================
   FONTS
   ========================= */
.hero-title {
  font-size: clamp(36px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin: 10px 0;
}

.hero-text {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  margin-top: 20px;
}

h1, h2, h3 {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;
  color: var(--wp--preset--color--heading);
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  margin-top: 20px;
}

h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  margin-top: 20px; /* mehr Luft OBEN */
  margin-bottom: 15px; /* weniger UNTEN */
}

a {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--wp--preset--color--writing);
  margin: 10px 0;
  text-decoration: none;
}

p {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--wp--preset--color--writing);
  line-height: 1.6;
  margin: 10px 0;
}

ul, li {
  color: var(--wp--preset--color--writing);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  margin: 10px 0;
}

/* Tabellen allgemein */
.cookie-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--wp--preset--color--writing);
}

/* Tabellenkopf */
.cookie-table-wrapper th {
  text-align: left;
  padding: 12px 10px;
  font-weight: 600;
  color: var(--wp--preset--color--heading);
  border-bottom: 2px solid var(--wp--preset--color--writing);
}

/* Tabellenzellen */
.cookie-table-wrapper td {
  padding: 10px;
  border-bottom: 1px solid var(--wp--preset--color--writing);
  color: var(--wp--preset--color--writing);
}

/* Optional: leichte Zeilenabstände für besseres Lesen */
.cookie-table-wrapper tr:last-child td {
  border-bottom: none;
}

.text-content {
  padding-left: clamp(20px, 3vw, 60px);
  padding-right: clamp(20px, 3vw, 60px);
}

a.active {
  color: var(--wp--preset--color--color-accent-3);
}

.is-style-default {
  font-size: clamp(20px, 10vw, 60px);
}

.is-style-default p {
  font-style: italic;
}

body {
  background: var(--wp--preset--color--background);
  font-family: "Inter", sans-serif;
  font-size: clamp(20px, 10vw, 60px);
}

#copyright {
  font-size: 15px;
  text-align: center;
  padding: 10px;
  color: var(--wp--preset--color--accent);
}

@media screen and (max-width: 849.98px) {
  /* Große Überschrift – stark, aber nicht übertrieben */
  .hero-title {
    font-size: clamp(35px, 10vw, 50px);
  }
  h1 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  /* Mittlere Überschrift */
  h2 {
    font-size: 1.4rem;
    font-weight: 700;
  }
  /* Kleine Überschrift */
  h3 {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 0.6rem;
  }
  /* Optional: mehr Text-Luft für bessere Lesbarkeit */
  p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.navbar:hover, a:hover, .navicon i:hover, .main-nav a:hover, .main-nav .wp-block-navigation-item__content:hover, .menu-secondary a:hover {
  color: var(--wp--preset--color--color-accent-2);
  text-decoration: none;
  transition: 0.3s;
}

/* Basis-Textgröße für Smartphones */
body {
  font-size: 16px;
  line-height: 1.6;
}

/* Horizontal zentrieren (Text zentriert) */
.text-center-horizontal {
  text-align: center;
}

/* Links */
.text-left {
  text-align: left;
}

/* Rechts */
.text-right {
  text-align: right;
}

/* Vertikal zentrieren (perfekt für div + Flexbox) */
.text-center-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertikal zentrieren */
}

/* =========================
   LISTEN – Custom & bündig
   ========================= */
.text-content ul {
  list-style: none;
  padding-left: 0;
  margin: 1.4rem 0;
}

.text-content ul li {
  position: relative;
  margin: 0.4rem 0;
  padding-left: 1.2rem;
}

.text-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wp--preset--color--heading);
  opacity: 0.6;
}

/* ==========================================
   GLOBAL OVERFLOW-PROTECTION FOR TEXT PAGES
   ========================================== */
/* Verhindert, dass lange Wörter oder URLs das Layout sprengen */
.text-content,
.text-content p,
.text-content a,
.text-content ul,
.text-content li {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

/* Listen immer auf sichere Breite begrenzen */
.text-content ul,
.text-content li {
  overflow-x: hidden;
}

/* Speziell für Datenschutz/Impressum/Gerätebreite */
.page-grid {
  max-width: 100%;
  overflow-x: hidden;
}

/* Absolut sicher:
   Verhindert horizontales Scrollen auf der gesamten Seite */
html, body {
  max-width: 100%;
}

/* =========================
   HEADER
   ========================= */
.desktop-header {
  top: 0;
  width: 100%;
  z-index: 500;
  transition: padding 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

body {
  scrollbar-gutter: stable;
}

.mobile-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.site-logo-text {
  color: var(--wp--preset--color--heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1;
}

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

/* =========================
   MENU TOGGLE + OVERLAY
   ========================= */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--wp--preset--color--writing);
  cursor: pointer;
  position: relative;
  z-index: 30;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--wp--preset--color--heading);
  outline-offset: 3px;
}

.menu-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 18px;
  transform-origin: center center;
}

.menu-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
}

.menu-line--top {
  top: 4px;
}

.menu-line--bottom {
  bottom: 4px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: var(--wp--preset--color--background);
  display: grid;
  align-items: start;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.menu-overlay__inner {
  padding: calc(var(--header-height) + 24px) 20px 32px;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--wp--preset--color--background);
  box-shadow: 0 30px 60px rgba(20, 19, 18, 0.18);
}

.menu-secondary {
  margin-top: auto;
  display: grid;
  gap: 12px;
  opacity: 0.85;
}

.menu-secondary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-secondary a {
  display: block;
  width: 100%;
  color: var(--wp--preset--color--heading);
  font-size: 1rem;
}

/* =========================
   HEADER ONLY DESKTOP
   ========================= */
@media screen and (min-width: 850px) {
  :root {
    --header-height: 90px;
  }
  .desktop-header {
    position: fixed;
    top: 0;
    background-color: var(--wp--preset--color--color-accent-1);
    height: var(--header-height);
    padding: 0 80px;
    will-change: transform;
  }
  .menu-toggle,
  .menu-overlay {
    display: none;
  }
  .header-nav {
    display: flex;
    align-items: center;
  }
  .mobile-bar {
    height: 100%;
  }
  .logo-link {
    padding: 10px 0;
  }
  body {
    padding-top: var(--header-height);
  }
  body.has-scroll-smoother {
    padding-top: 0;
  }
  body.has-scroll-smoother #smooth-content {
    padding-top: var(--header-height);
  }
  .editor-styles-wrapper {
    padding-top: var(--header-height);
  }
  .main-nav {
    display: flex;
    font-size: clamp(18px, 1.8vw, 35px);
    margin-left: 10px;
    flex-wrap: nowrap;
  }
  .main-nav .wp-block-navigation__submenu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: -moz-max-content;
    width: max-content;
    max-width: 320px;
    padding: 0;
    background: var(--header-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
    list-style: none;
    margin: 0;
    z-index: 1000;
    display: grid;
    gap: 2px;
  }
  .main-nav .wp-block-navigation__submenu-container::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
  }
  .main-nav .wp-block-navigation-item:hover > .wp-block-navigation__submenu-container,
  .main-nav .wp-block-navigation-item:focus-within > .wp-block-navigation__submenu-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav .wp-block-navigation__submenu-container .wp-block-navigation-item {
    margin: 0;
  }
  .main-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    display: block;
    border-radius: 8px;
  }
  .main-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}
/* =========================
   HEADER ONLY SMALL SCREENS
   ========================= */
@media screen and (max-width: 849.98px) {
  :root {
    --header-color: var(--wp--preset--color--color-accent-1);
    --header-height: 50px;
  }
  .desktop-header {
    position: fixed;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    height: var(--header-height);
  }
  .mobile-bar {
    padding: 0 15px;
    width: 100%;
    height: var(--header-height);
    position: relative;
    z-index: 500;
    background-color: var(--wp--preset--color--color-accent-1);
  }
  body {
    margin-top: var(--header-height);
  }
  body.has-scroll-smoother {
    margin-top: 0;
  }
  body.has-scroll-smoother #smooth-content {
    padding-top: var(--header-height);
  }
  @supports (padding: max(0px)) {
    #smooth-content {
      padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
  }
  .header-nav {
    display: none;
  }
  .menu-overlay__inner {
    display: flex;
    flex-direction: column;
  }
  .menu-overlay .menu-primary {
    width: 100%;
  }
  .menu-overlay .menu-primary .wp-block-navigation,
  .menu-overlay .menu-primary .wp-block-navigation__responsive-container,
  .menu-overlay .menu-primary .wp-block-navigation__responsive-container-content,
  .menu-overlay .menu-primary .wp-block-navigation__container {
    width: 100%;
    max-width: none;
  }
  .menu-overlay .menu-primary .wp-block-navigation__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    margin-top: 50px;
    padding: 0;
    list-style: none;
  }
  .menu-overlay .menu-primary .wp-block-navigation__container > li {
    margin: 0;
  }
  .menu-overlay .menu-primary a {
    display: inline-block;
    text-align: left;
    white-space: nowrap;
    line-height: 1.2;
    font-weight: 800;
    margin: 0;
    padding: 0;
    font-size: clamp(2.2rem, 12vw, 4.5rem);
  }
  .menu-overlay .menu-primary .wp-block-navigation__submenu-container {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
    display: grid;
  }
  .menu-overlay .menu-secondary {
    margin-top: auto;
    padding-top: 24px;
    opacity: 0.85;
  }
  .menu-overlay .menu-secondary ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
}
/* =========================
   FOOTER
   ========================= */
.footer {
  flex-direction: column;
  text-align: center;
  gap: 2rem;
  align-items: center;
  position: relative;
  background: var(--wp--preset--color--color-accent-1);
  z-index: 20;
}

/* =========================
   Grid Design
   ========================= */
.page-grid {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr 1fr 80px;
  gap: 0px;
  max-width: 100%;
  margin: 0 auto;
}

.main-wide {
  grid-column: 2/4;
}

.full-wide {
  grid-column: 1/5;
}

.image-slider {
  height: auto;
}

.grid-content {
  margin: 20px;
}

@media screen and (max-width: 849.98px) {
  .page-grid {
    grid-template-columns: 10px 1fr 1fr 10px;
  }
  /* Mittlere Spalten für mobile Ansicht */
  .page-grid > .half-wide {
    grid-column: 2/4;
  }
  /* Reihenfolge für Block 1 */
  .block1-text {
    order: 1;
  }
  .block1-image {
    order: 2;
  }
  /* Reihenfolge für Block 2 */
  .block2-text {
    order: 3;
  }
  .block2-image {
    order: 4;
  }
}/*# sourceMappingURL=style.css.map */