
/* Claude: entfernt WordPress-Standard-Blockabstand zwischen unseren Full-Width-Sections (sonst doppelter Abstand zur eigenen Section-Padding) */
.entry-content.is-layout-flow > .alignfull {
  margin-block-start: 0;
}

/* Claude: JetFormBuilder-Felder an Formular-Vorlage angleichen (Kontaktformular #305 + Bewerbungsformular #308) */
/* Gescoped auf einzelne Formulare (data-form-id, von JetFormBuilder selbst gesetzt) statt global -
   das Child-Theme hat bereits ein eigenes, projektübergreifendes Floating-Label-Grunddesign fuer
   .jet-form-builder, das hier NICHT angefasst wird (andere Client-Sites nutzen dasselbe Theme). */
/* Der eigentliche Zeilenabstand kommt vom CSS-Grid (row-gap), NICHT von margin-bottom auf .jet-form-builder-row -
   das Grid-Element (data-type="content-area-component") ist der direkte Grid-Container, .jet-form-builder-row
   liegt eine Ebene darunter und beeinflusst die Grid-Zeilenhoehe nicht. */
form[data-form-id="305"] [data-type="content-area-component"],
form[data-form-id="308"] [data-type="content-area-component"],
form[data-form-id="336"] [data-type="content-area-component"] {
  row-gap: 22px !important;
}
form[data-form-id="305"] .jet-form-builder__label-text,
form[data-form-id="308"] .jet-form-builder__label-text,
form[data-form-id="336"] .jet-form-builder__label-text {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #4a5158;
  margin-bottom: 6px;
}
/* Hebt das globale Floating-Label-Padding des Child-Themes auf (Label wird hier oberhalb des Feldes
   gerendert statt hineinzufloaten - die alten Floating-Label-Positionierungsregeln des Child-Themes
   greifen auf dieser JetFormBuilder-Version ohnehin nicht mehr, nur das reservierte Padding stoerte). */
form[data-form-id="305"] .jet-form-builder__field-wrap input,
form[data-form-id="305"] .jet-form-builder__field-wrap textarea,
form[data-form-id="308"] .jet-form-builder__field-wrap input,
form[data-form-id="308"] .jet-form-builder__field-wrap textarea,
form[data-form-id="336"] .jet-form-builder__field-wrap input,
form[data-form-id="336"] .jet-form-builder__field-wrap textarea {
  padding: 13px 16px !important;
}
form[data-form-id="305"] .jet-form-builder__field-wrap select,
form[data-form-id="308"] .jet-form-builder__field-wrap select,
form[data-form-id="336"] .jet-form-builder__field-wrap select {
  width: 100%;
  padding: 8px 16px !important;
  line-height: 1.6;
  border-radius: 12px;
  border: 1.5px solid rgba(10,47,77,0.12);
  font-family: inherit;
  font-size: 15px;
  box-sizing: border-box;
}

/* Claude: Stern-Hover-Effekt auf Desktop-Hauptmenu (absolut positioniert oben rechts am Textende, kein Inline-Versatz mehr) */
.header-menu-1 li {
  position: relative;
}
.header-menu-1 .ct-menu-link {
  position: relative;
  overflow: visible;
}
.header-menu-1 li:not(.nav-icon-home) .ct-menu-link::after {
  content: '';
  display: inline-block;
  position: relative;
  top: -6px;
  margin-left: 3px;
  width: 9px;
  height: 9px;
  background-color: #3fa3e0;
  -webkit-mask-image: url('https://gebaeudereinigung-scheibler.de/wp-content/uploads/2026/08/icon-leistungen.svg');
  mask-image: url('https://gebaeudereinigung-scheibler.de/wp-content/uploads/2026/08/icon-leistungen.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 0;
  transform: scale(.4) rotate(-15deg);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.header-menu-1 li:not(.nav-icon-home) .ct-menu-link:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.header-menu-1 .nav-icon-home .ct-menu-link {
  font-size: 0 !important;
}
.header-menu-1 .nav-icon-home .ct-menu-link::before {
  content: '';
  display: inline-block;
  position: static !important;
  top: auto !important;
  width: 17px;
  height: 17px;
  background-color: #15181d;
  -webkit-mask-image: url('https://gebaeudereinigung-scheibler.de/wp-content/uploads/2026/08/icon-home.svg');
  mask-image: url('https://gebaeudereinigung-scheibler.de/wp-content/uploads/2026/08/icon-home.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: .8;
  transition: opacity .2s ease;
}
.header-menu-1 .nav-icon-home .ct-menu-link:hover::before {
  opacity: 1;
}

/* Claude: Footer-Navigation als natives WP-Menü (footer_nav_menu Shortcode) mit Blocksys nativem Menue-Icon-Feature */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 0;
  padding-left: 0;
}
.footer-nav-list .menu-item a {
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer-nav-list .menu-item a:hover {
  color: #ffffff;
}
.footer-nav-list .ct-icon-container {
  width: 14px;
  height: 14px;
  display: inline-flex;
  flex-shrink: 0;
  opacity: 0.85;
}
.footer-nav-list .ct-icon-container svg {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

/* Claude: Header-Topbar (Blocksy Top-Row) + Menue-Trenner vor Team, analog Original-Design */
[data-row="top"] {
  --height: auto;
  min-height: auto;
}
[data-row="top"] .ct-container,
[data-row="top"] .ct-container-fluid {
  padding-top: 0px;
  padding-bottom: 0px;
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.topbar-icon-img,
.ficon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.topbar-phone svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  opacity: 0.85;
  flex-shrink: 0;
}
.topbar-phone:hover {
  color: #7cc8ec;
}
.header-menu-1 .nav-divider-before .ct-menu-link {
  border-left: 2px solid #3fa3e0;
  padding-left: 20px;
  margin-left: 6px;
  align-self: center;
  height: 1.6em;
}


/* Claude: Video-Card-Scroll-Wachstum (gsbp-lp10019, Keyframe gs_video_scale) auf Mobil enger deckeln als der Desktop-Default (min(122%,80vw)) - hier max 95vw, damit die Karte auf schmalen Screens nicht ueber den Rand waechst */
@media (max-width: 689.98px) {
  @keyframes gs_video_scale {
    0% { width: 100%; }
    100% { width: max(100%, min(122%, 95vw)); }
  }
}

/* Claude: Hauptmenue-Schrift immer schwarz (statt themenabhaengiger --theme-link-initial-color, die je nach transparent/sticky-Zustand wechselt) */
.header-menu-1 .ct-menu-link {
  color: #15181d !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}
.header-menu-1 li:hover > .ct-menu-link {
  color: #1c7fc4 !important;
}

/* Claude: Sticky-Header - etwas mehr Innenabstand fuer die Zeile mit Logo+Menue, damit das Logo nicht am Rand der weissen Sticky-Leiste klebt */
[data-sticky] [data-row*="middle"] .ct-container,
[data-sticky] [data-row*="middle"] .ct-container-fluid {
  padding-top: 10px;
  padding-bottom: 10px;
}


/* Claude: Header-CTA-Button (Angebot anfragen) komplett abgerundet, analog .btn-primary auf der Seite */
.ct-header-cta .ct-button {
  border-radius: 100px;
}




/* header-manual-centering-and-button-weight */
#header .ct-header-cta .ct-button {
  font-weight: 700 !important;
}
#header-menu-1 {
  margin-left: 60px !important;
}


/* rechtstext-seiten-titelbalken: Streifenmuster (wie Startseite Referenzen-Section) laeuft durchgehend ueber Titelbalken + Inhalt bis zum Footer, kein weisser Rand oben/unten - wie bei Barrierefreiheit */
body.page-id-361 .ct-container-full[data-content="normal"],
body.page-id-362 .ct-container-full[data-content="normal"],
body.page-id-364 .ct-container-full[data-content="normal"] {
  padding-top: 0;
  padding-bottom: 0;
}
body.page-id-361 .ct-container-full[data-content="normal"] > article[id="post-361"],
body.page-id-362 .ct-container-full[data-content="normal"] > article[id="post-362"],
body.page-id-364 .ct-container-full[data-content="normal"] > article[id="post-364"] {
  background-color: #f6f8fa;
  background-image: radial-gradient(circle at 12% 15%, rgba(63,163,224,0.18), transparent 45%), radial-gradient(circle at 88% 85%, rgba(10,47,77,0.1), transparent 50%), repeating-linear-gradient(45deg, rgba(10,47,77,0.03) 0 2px, transparent 2px 26px);
  padding-bottom: 70px;
}
body.page-id-361 .hero-section[data-type="type-1"],
body.page-id-362 .hero-section[data-type="type-1"],
body.page-id-364 .hero-section[data-type="type-1"] {
  width: 100%;
  max-width: none;
  text-align: center;
  margin-top: 0;
  padding: 110px 24px 70px;
}
body.page-id-361 .hero-section[data-type="type-1"] .page-title,
body.page-id-362 .hero-section[data-type="type-1"] .page-title,
body.page-id-364 .hero-section[data-type="type-1"] .page-title {
  color: #0a2f4d;
  font-size: clamp(46px,5.8vw,80px);
  font-weight: 700;
  margin: 0;
}
body.page-id-361 .gsbp-imp1cap,
body.page-id-362 .gsbp-dsz1cap,
body.page-id-364 .gsbp-ckl1cap {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 20px 40px -12px rgba(10,47,77,0.18);
  padding: clamp(28px, 5vw, 56px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

/* barrierefreiheit-titelbalken-original: Streifenmuster (wie Startseite Referenzen-Section) laeuft jetzt durchgehend ueber Titelbalken + Inhalt bis zum Footer, kein weisser Rand mehr oben/unten */
body.page-id-363 .ct-container-full[data-content="normal"] {
  padding-top: 0;
  padding-bottom: 0;
}
body.page-id-363 .ct-container-full[data-content="normal"] > article[id="post-363"] {
  background-color: #f6f8fa;
  background-image: radial-gradient(circle at 12% 15%, rgba(63,163,224,0.18), transparent 45%), radial-gradient(circle at 88% 85%, rgba(10,47,77,0.1), transparent 50%), repeating-linear-gradient(45deg, rgba(10,47,77,0.03) 0 2px, transparent 2px 26px);
  padding-bottom: 70px;
}
body.page-id-363 .hero-section[data-type="type-1"] {
  width: 100%;
  max-width: none;
  text-align: center;
  margin-top: 0;
  padding: 110px 24px 70px;
}
body.page-id-363 .hero-section[data-type="type-1"] .page-title {
  color: #0a2f4d;
  font-size: clamp(46px,5.8vw,80px);
  font-weight: 700;
  margin: 0;
}

/* barrierefreiheit-kapsel: weisse Box um den Inhalt, per Greenshift-Block im Content selbst gebaut (kein Blocksy-Boxed-Feature mehr - das war die Ursache des Footer-Bugs) */
body.page-id-363 .gsbp-b4f7c4p {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 20px 40px -12px rgba(10,47,77,0.18);
  padding: clamp(28px, 5vw, 56px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

/* rechtstext-ueberschriften-abstand: mehr Luft ueber H2-H6, aber nicht wenn Ueberschrift erstes Element im Block ist; nur auf den 4 Rechtstext-Seiten, betrifft Startseite/Team/Jobs nicht */
body.page-id-361 .entry-content :is(h2,h3,h4,h5,h6):not(:first-child),
body.page-id-362 .entry-content :is(h2,h3,h4,h5,h6):not(:first-child),
body.page-id-363 .entry-content :is(h2,h3,h4,h5,h6):not(:first-child),
body.page-id-364 .entry-content :is(h2,h3,h4,h5,h6):not(:first-child) {
  margin-block-start: 1.25em;
}

/* impressum-zweispaltig */
.impressum-2col {
  display: grid;
  grid-template-columns: 60% 40%;
  column-gap: 48px;
  align-items: stretch;
}
.impressum-col-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .impressum-2col {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

