@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

   ------------------------------------------------------- */
/* =========================
   GRID-LINES
   ========================= */
body {
  position: relative;
}

#smooth-wrapper,
#smooth-content {
  position: relative;
  z-index: 20;
}

:root {
  --grid-color: var(--wp--preset--color--grid-design);
  --grid-color-horzontral: var(--wp--preset--color--grid-design);
  --side-color: var(--wp--preset--color--side-design);
  --grid-line-opacity: 0.45;
  --grid-horizontal-opacity: 0.5;
}

/* Raster-Overlay über dem Content */
#smooth-content::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background-image: linear-gradient(to bottom, var(--grid-color) 0%, var(--grid-color) 100%), linear-gradient(to bottom, var(--grid-color) 0%, var(--grid-color) 100%), linear-gradient(to bottom, var(--grid-color) 0%, var(--grid-color) 100%); /* rechte Linie */
  background-repeat: no-repeat;
  background-position: 80px 0, 50% 0, calc(100% - 80px) 0;
  background-size: 1px 100%, 1px 100%, 1px 100%;
  opacity: var(--grid-line-opacity);
}

/* horizontale Linien: Container muss positioniert sein */
.page-grid {
  position: relative;
}

.page-grid > * {
  position: relative;
}

.page-grid > :not(.left-margin):not(.right-margin) {
  z-index: 20;
}

.left-margin,
.right-margin {
  z-index: 0;
}

/* horizontale Linie oben */
.page-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--grid-color-horzontral);
  opacity: var(--grid-horizontal-opacity);
  pointer-events: none;
  z-index: 10;
}

/* horizontale Linie unten */
.page-grid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--grid-color-horzontral);
  opacity: var(--grid-horizontal-opacity);
  pointer-events: none;
  z-index: 10;
}

/* Keine Doppel-Linie zwischen direkt aufeinanderfolgenden Grid-Blöcken */
.page-grid + .page-grid::before {
  content: none;
}

/* responsive */
@media screen and (max-width: 849.98px) {
  #smooth-content::after {
    background-position: 10px 0, 50% 0, calc(100% - 10px) 0;
  }
}
@media screen and (min-width: 850px) {
  .left-margin, .right-margin {
    background: repeating-linear-gradient(to bottom, var(--side-color), var(--side-color) 1px, transparent 1px, transparent 12px);
  }
}
.before-after-wrapper {
  position: relative;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 849.98px) {
  .before-after-wrapper {
    max-width: 400px;
  }
  .before-after-wrapper .handle {
    left: calc(50% - 0.5px);
  }
}
.before-image-wrapper {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 10;
}

.before-image {
  background-size: cover;
  height: 100%;
  width: 100%;
}

.after-image {
  background-size: cover;
  inset: 0;
  position: absolute;
}

.handle {
  align-items: center;
  background: var(--wp--preset--color--grid-design);
  bottom: 0;
  cursor: col-resize;
  display: flex;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px;
  z-index: 20;
}

.handle::before {
  content: "";
  position: absolute;
  inset: 0 -20px;
}

.handle::after {
  align-items: center;
  background: var(--wp--preset--color--black);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24" width="24" viewBox="0 0 512 512"><path fill="rgb(255, 255, 255)" d="M505.7 265.7c3-3 3.1-7.9 .2-11.1l-104-112c-3-3.2-8.1-3.4-11.3-.4s-3.4 8.1-.4 11.3L481.7 252 23.3 252l90.3-90.3c3.1-3.1 3.1-8.2 0-11.3s-8.2-3.1-11.3 0l-104 104c-3.1 3.1-3.1 8.2 0 11.3l104 104c3.1 3.1 8.2 3.1 11.3 0s3.1-8.2 0-11.3L23.3 268l457.4 0-90.3 90.3c-3.1 3.1-3.1 8.2 0 11.3s8.2 3.1 11.3 0l104-104z"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  content: "";
  display: flex;
  font-size: 16px;
  font-weight: bold;
  justify-content: center;
  max-height: 40px;
  max-width: 40px;
  min-height: 40px;
  min-width: 40px;
}

/* =========================
   Carousel Container
   ========================= */
.carousel {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.carousel-cell {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.carousel-cell img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.carousel {
  width: 99vw;
  margin-left: calc(50% - 49.5vw);
  overflow: hidden;
}

/* Einzelne Carousel-Zelle */
.carousel-cell {
  flex-shrink: 0; /* wichtig für Flickity cellSpacing */
  margin-right: 15px;
  margin-left: 15px;
  border-radius: 10px;
  overflow: hidden; /* Rundungen wirken oben + unten */
}

/* Bilder in Carousel-Zellen */
.carousel-cell img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

/* Slider 1: 1 Bild pro Slide auf Desktop */
.slider-1 .carousel-cell {
  width: calc(24.75vw - 30px);
}

/* Slider 2: 2 Bilder pro Slide auf Desktop */
.slider-2 .carousel-cell {
  width: calc(24.75vw - 30px);
}

/* =========================
   Responsive Anpassungen
   ========================= */
@media screen and (max-width: 849.98px) {
  .slider-1 .carousel-cell {
    width: calc(99vw - 15px);
  }
  .slider-2 .carousel-cell {
    width: calc(49.5vw - 15px);
  }
  .carousel-cell {
    margin-right: 7.5px;
    margin-left: 7.5px;
    border-radius: 5px;
  }
}
.sl-overlay {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sl-wrapper {
  font-family: "Inter";
}

.sl-wrapper .sl-close {
  color: var(--wp--preset--color--heading);
  font-size: 2.5rem;
}

.sl-wrapper .sl-navigation button {
  color: var(--wp--preset--color--heading);
}

.sl-wrapper .sl-image .sl-caption {
  color: var(--wp--preset--color--heading);
  background: transparent;
  text-align: center;
  font-size: 0.95rem;
}

/* =========================
   CHILD HEADER
   ========================= */
#logo-img {
  width: auto;
  transition: height 0.3s ease;
}

@media screen and (min-width: 850px) {
  #logo-img {
    height: calc(var(--header-height) - 20px);
    width: auto;
  }
}
@media screen and (max-width: 849.98px) {
  #logo-img {
    height: clamp(28px, 5vw, 40px);
  }
  .menu-overlay .menu-secondary .social-network {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
  }
  .menu-overlay .menu-secondary a.link-item {
    display: block;
    width: 100%;
    font-size: 1rem;
    text-align: center;
  }
}
/* =========================
   CHILD FOOTER
   ========================= */
.app-icon-container {
  --icon-size: clamp(56px, 6vw, 80px);
  --icon-gap: clamp(10px, 2.2vw, 18px);
  --icon-min: 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--icon-min)), 1fr));
  gap: var(--icon-gap);
  max-width: calc(3 * var(--icon-min) + 2 * var(--icon-gap));
  width: 100%;
  margin: 0 auto;
  place-content: center;
  justify-items: center;
  padding: 20px 0;
  overflow: hidden;
}

.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  color: var(--wp--preset--color--heading);
  transition: transform 0.25s ease;
  will-change: transform;
}

.app-icon:hover {
  filter: brightness(0.85);
}

.app-whatsapp .icon-box {
  background-color: #25D366;
}

.app-instagram .icon-box {
  background-color: #DD2A7B;
}

.app-mail .icon-box {
  background-color: #20a6ff;
}

.icon-box {
  width: 80px;
  height: 80px;
  background-color: var(--wp--preset--color--color-accent-3);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18), 0 2px 4px rgba(0, 0, 0, 0.12);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.icon-svg {
  width: 80%;
  height: 80%;
  display: block;
  pointer-events: none;
  color: var(--wp--preset--color--heading);
}

.icon-label {
  font-size: 14px;
  color: var(--wp--preset--color--heading);
}

.footer-infos {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-infos p {
  margin: 0;
}

.footer-infos h3 {
  margin-bottom: 1rem;
}

.footer-container {
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.link-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: inherit;
}

.link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.link-icon svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

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

@media screen and (min-width: 850px) {
  .footer-head {
    margin: 0;
  }
  .button {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 849.98px) {
  .footer-head {
    margin: 0;
  }
  .button {
    margin-bottom: 25px;
  }
}
/* =========================
   Body
   ========================= */
.carousel-cell {
  width: 50%; /* Desktop */
}

.quote-block p {
  font-size: 5vw;
  line-height: 1.3;
  color: var(--wp--preset--color--heading);
  text-align: left;
}

.quote-block cite {
  display: block;
  text-align: left;
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--wp--preset--color--writing);
  font-style: normal;
}

.slogan-svg {
  margin-top: 20px;
  display: block;
  width: 250px;
  color: var(--wp--preset--color--heading);
}

/* ======================================
   SLOGAN / BACKGROUND SECTION (DESKTOP)
   ====================================== */
.slogan-bg {
  position: relative;
  /* Hintergrund */
  background-image: url("/wp-content/uploads/2025/11/IMG_4991.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Layout */
  min-height: 600px;
  padding: 0px 0;
}

/* Dieser Block soll nicht global auf z(content) angehoben werden */
.page-grid > .main-wide.slogan-bg {
  z-index: 0;
}

/* Wenn slogan-bg auf main-wide liegt: 2-Spalten Grid für die zwei half-wide */
.main-wide.slogan-bg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; /* vertikal zentrieren */
}

/* Inhalte über dem Overlay */
.slogan-bg > * {
  position: relative;
  z-index: 20;
}

/* Overlay */
.slogan-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 31, 0.4);
  z-index: 0;
}

/* ======================================
   BREAKPOINT: MAX 850PX (MOBILE)
   ====================================== */
@media screen and (max-width: 849.98px) {
  /* Slider */
  .carousel-cell {
    width: 100%;
  }
  /* Zitate */
  .quote-block p {
    text-align: center;
    font-size: 10vw;
    margin-left: 20px;
  }
  .quote-block cite {
    text-align: center;
  }
  .main-wide.slogan-bg {
    grid-template-columns: 1fr;
    z-index: 0;
  }
  /* Slogan Mobile */
  .slogan-bg {
    padding: 100px 0;
  }
  .slogan-svg {
    margin-left: auto; /* mobil: zentriert */
    margin-right: auto;
  }
  .main-wide.slogan-bg > .half-wide {
    position: relative;
    z-index: 20;
  }
}
/* =========================
   Page-Gallery
   ========================= */
.header-gallery-background {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.header-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}

.header-gallery-titel {
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertikal */
  align-items: center; /* horizontal */
  position: relative;
  z-index: 20;
}

.gallery-container {
  margin: 20px;
}

.dynamic-gallery {
  display: flex;
  flex-wrap: wrap; /* Zeilen umbrechen */
  justify-content: center;
  gap: 20px; /* sorgt für gleiche Abstände zwischen Zeilen UND Spalten */
  justify-content: center;
}

.dynamic-gallery a {
  position: relative;
  overflow: hidden; /* wichtig für den Zoom */
  flex: 1 1 360px;
  border-radius: 12px;
}

.dynamic-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Hover-Effekt Desktop */
.dynamic-gallery a:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Touch-Effekt Mobile */
.dynamic-gallery a:active img,
.dynamic-gallery a:focus img {
  opacity: 1;
  transform: scale(1.05);
}

/* Filter Navigation */
.gallery-filter {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.gallery-filter a {
  font-size: 20px;
}

@media screen and (max-width: 849.98px) {
  .gallery-filter {
    justify-content: center; /* zentriert die Links */
    text-align: center;
    flex-wrap: wrap; /* Zeilenumbruch wenn nötig */
  }
}
/* =========================
   Page: Produktfotografie
   ========================= */
.produkt-bg {
  position: relative;
  z-index: 0;
  padding: 0px 0;
}

.produkt-bg-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Overlay */
.produkt-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 31, 0.4);
  z-index: 0;
}/*# sourceMappingURL=child.css.map */