/* =====================================================================
   Luca Brinkmeier – Marken-Recolor (Override)
   Wird als LETZTES Stylesheet geladen und überschreibt die
   Theme-Variablen aus main.css (Single Source of Truth fürs Branding).
   Palette: Bronze-Gold auf warmem Schwarz – ruhig, vertrauensvoll, B2B.
   ===================================================================== */

:root {
  /* --- Akzente: Bronze/Gold-Familie (ersetzt Blau/Pink/Cyan/…) --- */
  --theme:  #B08D57;   /* Primär-Akzent · Bronze-Gold (Buttons, Links, Icons) */
  --theme2: #C9A876;   /* helleres Gold */
  --theme3: #8A6D40;   /* tiefes Bronze */
  --theme4: #B08D57;   /* = Primär (vereinheitlicht statt Orange) */
  --theme5: #D9C089;   /* Champagner */
  --theme6: #EFE8DC;   /* warmes Off-White */

  /* --- Dunkle Flächen + Überschriften: warmes Fast-Schwarz (ersetzt Navy) --- */
  --header:  #1A1613;  /* Überschriften-Tinte + dunkle Flächen */
  --header2: #14110E;
  --header3: #1E1A15;
  --header4: #14110E;

  /* --- Fließtext: warmer Ton statt kühlem Slate --- */
  --text: #4A443C;

  /* --- Helle Flächen: warm statt kühl --- */
  --body: #ffffff;
  --bg:  #F6F3EC;      /* warmes Hellgrau (war kühles #F2F5F7) */
  --bg2: #14110E;      /* dunkle Sektion · warmes Schwarz (war Navy) */
  --bg3: #F6F1E8;
  --bg4: #F2EBDD;
  --bg5: #FBF7EE;
  --bg6: #F3EAD6;

  /* --- Schatten: neutral-warm --- */
  --box-shadow: 0px 1px 14px 0px rgba(26, 22, 19, 0.13);
}

/* ---------------------------------------------------------------------
   Hero-Feinschliff fürs Branding
   --------------------------------------------------------------------- */

/* Brevon-Wasserzeichen (Fremd-Branding) ausblenden */
.hero-1 .brevon-text {
  display: none;
}

/* Blauen Deko-Glow in Bronze umfärben */
.hero-1 .light-bg img {
  filter: sepia(1) saturate(1.7) hue-rotate(-12deg) brightness(0.95);
}

/* Warmer Schleier über dem (noch blaustichigen) Hero-Foto */
.hero-section.hero-1 {
  background-color: #15110d;
  background-blend-mode: multiply;
}

/* Balken-Icon im FAQ-Badge von Blau auf Bronze umfärben */
.incrase-box img {
  filter: sepia(1) saturate(1.7) hue-rotate(-12deg) brightness(0.95);
}

/* Anker-Sprünge nicht unter dem fixierten Header verstecken */
html {
  scroll-padding-top: 110px;
}

/* CTA: blaues Hintergrundfoto komplett raus -> warmer Bronze-Verlauf wie Hero */
.cta-newsletter-section {
  background-image: radial-gradient(130% 110% at 25% 0%, rgba(176, 141, 87, 0.18), transparent 55%) !important;
  background-color: #15110d !important;
}
/* CTA: Abstand zwischen Text und Button + beides größer */
.cta-newsletter-wrapper .newsletter-form p {
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 30px;
}
/* (Button-Größe wieder Standard – keine Overrides mehr) */

/* FAQ aufräumen: Platzhalter-Bild weg, zentriert, Fragen über volle Box-Breite */
.faq-section {
  padding-block: 90px 110px;
}
.faq-section .row {
  --bs-gutter-x: 0;
  max-width: 980px;
  margin-inline: auto;
  padding-inline: 20px;
}
.faq-section .col-lg-6:first-child {   /* Platzhalter-Bild-Spalte ausblenden */
  display: none;
}
.faq-section .col-lg-6:last-child {    /* Inhalt volle Breite */
  flex: 0 0 100%;
  max-width: 100%;
}
.faq-content-1 {
  padding: 56px 56px !important;       /* gleichmäßige Innenpolsterung der Creme-Box */
}
.faq-content-1 .section-title {
  text-align: center;
  margin-bottom: 36px !important;
}
.faq-content-1 .accordion-box {
  max-width: 100% !important;          /* Fragen füllen die gesamte Box-Breite */
  margin-top: 0 !important;
}

/* ---------------------------------------------------------------------
   Mobile-Optimierung
   --------------------------------------------------------------------- */
@media (max-width: 991px) {
  /* CTA: Überschrift, Text und Button sauber untereinander statt gequetscht */
  .cta-newsletter-wrapper {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 28px;
  }
  .cta-newsletter-wrapper .newsletter-form {
    max-width: 100%;
    margin: 0 auto;
  }
  .cta-newsletter-wrapper .newsletter-form .theme-btn {
    display: inline-flex;
  }
}
@media (max-width: 767px) {
  /* FAQ-Box: weniger Polsterung, damit Fragen nicht eingequetscht sind */
  .faq-content-1 {
    padding: 30px 20px !important;
  }
  .faq-section {
    padding-block: 56px 64px;
  }
  .faq-section .row {
    padding-inline: 14px;
  }
  .cta-newsletter-wrapper .newsletter-form p {
    font-size: 18px;
  }
  /* Akkordeon: Fragen-Einzug auf Mobile etwas kleiner */
  .faq-content-1 .accordion-box .block {
    padding-left: 44px;
  }
}

/* Hero-Stat (80 %) + Platzhalter-Avatare links raus */
.hero-1 .hero-info {
  display: none !important;
}
/* Such-Lupe + Such-Popup komplett raus (Desktop + Mobile) */
.search-toggler,
.search-popup {
  display: none !important;
}

/* ---------------------------------------------------------------------
   Bugfixes Layout/Animation
   --------------------------------------------------------------------- */

/* Angebot: alle 4 Karten gleich hoch */
.service-section .advance-wrap {
  align-items: stretch;
}
.service-section .advance-item {
  display: flex;
}
.service-section .service-card-item {
  width: 100%;
  height: 100%;
}

/* Angebot-Slider: alle Karten gleich hoch (Info-Box bündig unten) */
.feature-box-slider .swiper-wrapper {
  align-items: stretch;
}
.feature-box-slider .swiper-slide {
  height: auto;
}
.feature-box-items {
  height: 100%;
  margin-top: 0;            /* sonst Overflow: height:100% + altes Top-Margin -> Bodenpolster verschwindet */
  display: flex;
  flex-direction: column;
}
/* Abstand Titel -> Karten wandert vom Karten-Margin auf den Slider-Container */
.feature-wrapper {
  margin-top: 30px;
}
/* Pills + Pfeil in EINE Zeile, Schrift klein genug; Info-Box mit klarem Bodenabstand */
.feature-box-items .feature-info-box {
  margin-top: auto;
  margin-bottom: 4px;
  flex-wrap: nowrap;
  gap: 10px;
}
.feature-box-items .feature-info-box ul {
  flex-wrap: nowrap;
  gap: 6px;
}
.feature-box-items .feature-info-box ul li {
  font-size: 11px;
  padding: 0 8px;
  white-space: nowrap;
}
.feature-box-items .feature-info-box .icon {
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------
   Auf Wunsch entfernt
   --------------------------------------------------------------------- */
#preloader { display: none !important; }            /* Preloader komplett weg */
.mouseCursor { display: none !important; }           /* Mauszeiger-Kreis weg */
body { cursor: auto !important; }                    /* normalen Cursor sicherstellen */
.color-palate { display: none !important; }          /* Dark/Light-Einstellungs-Button links weg */
.hero-1 .box-1, .hero-1 .box-2 { display: none !important; }  /* schwebende Hero-Badges weg */
.marquee-section2 { display: none !important; }      /* Themen-Band (Marquee) weg */

/* ---------------------------------------------------------------------
   Logo (quadratisches BC-Mark) – passende Größen
   --------------------------------------------------------------------- */
.logo img {
  height: 48px !important;
  width: auto !important;
}
.footer-logo img {
  height: 58px !important;
  width: auto !important;
}
.offcanvas__logo img {
  height: 46px !important;
  width: auto !important;
}

/* Fallstudien-Stapel: Flackern beseitigen (kein backdrop-blur, solide Fläche) */
.des-portfolio-panel {
  background: #1c1813 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Themen-Band unter FAQ: Luft + dezente Trennlinien */
.marquee-section2 {
  padding-block: 3rem;
  border-top: 1px solid rgba(176, 141, 87, 0.18);
  border-bottom: 1px solid rgba(176, 141, 87, 0.18);
}

