/* Seelenbalsam — Feature Band ("Die Harmonie von Licht und Energie")
 * Full-bleed section, image bg, text overlay on the left. */

.sb-feature-band {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: clamp(480px, 47vw, 860px);
  display: flex;
  align-items: center;
  background-color: #4a0d24;
  background-image: var(--sb-fb-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Left-to-right overlay for text readability.
   Color + opacity come from the Elementor "Overlay" style controls. */
.sb-feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--sb-fb-ov-color, #121016) 0%,
    var(--sb-fb-ov-color, #121016) 28%,
    transparent 78%);
  opacity: var(--sb-fb-ov-opacity, 0.55);
  z-index: 0;
  pointer-events: none;
}

/* Subtle dark vignette around outer edges */
.sb-feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 50%, rgba(18,16,22,0) 62%, rgba(18,16,22,0.20) 100%);
  z-index: 0;
  pointer-events: none;
}

.sb-feature-band__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 96px) clamp(22px, 4.6vw, 64px);
  box-sizing: border-box;
}

.sb-feature-band__eyebrow {
  margin: 0 0 14px;
  font-family: 'Suisse Intl', "Aileron", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffd9ec;
  text-shadow: 0 1px 8px rgba(40,25,55,0.3);
}

.sb-feature-band__heading {
  margin: 0 0 clamp(16px, 1.4vw, 24px);
  max-width: 620px;
  font-family: 'Gelica', 'Tiempos Headline', 'Suisse Intl', "Aileron", Georgia, serif;
  font-size: clamp(34px, 4.4vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(40,25,55,0.35);
}

.sb-feature-band__body {
  margin: 0 0 clamp(24px, 2.4vw, 40px);
  max-width: 540px;
  font-family: 'Suisse Intl', "Aileron", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.75;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(40,25,55,0.28);
}

.sb-feature-band__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 38px;
  border-radius: 68px;
  background: linear-gradient(267deg, #F372B3 0.6%, #FF60AF 99.4%);
  color: #ffffff !important;
  font-family: 'Suisse Intl', "Aileron", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
}
.sb-feature-band__cta:hover,
.sb-feature-band__cta:focus-visible {
  background: linear-gradient(267deg, #F92D93 0.6%, #FF60AF 99.4%);
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .sb-feature-band {
    min-height: 0;
    align-items: flex-end;
    background-position: center top;
    padding-top: clamp(260px, 60vw, 420px);
  }
  .sb-feature-band__heading { font-size: clamp(30px, 9vw, 44px); }
  .sb-feature-band__body { font-size: 16px; }

  /* Homepage band: portrait mobile photo, text anchored to the bottom */
  .page-id-5 .sb-feature-band {
    background-image: url('../images/farbtherapie-bg-mobile.webp') !important;
    background-size: cover !important;
    background-position: center top !important;
    align-items: flex-end !important;
    min-height: 78svh !important;
    padding-top: clamp(280px, 70vw, 440px);
  }
  .page-id-5 .sb-feature-band__inner {
    padding-bottom: clamp(36px, 9vw, 64px);
  }
  /* Über-mich band: shift focus right so the woman's face is visible */
  .page-id-7 .sb-feature-band {
    background-position: 72% 18% !important;
  }
}

/* ── Responsive padding fix ── */
@media (max-width: 1024px) {
    .sb-feature-band__inner { padding-left: 40px !important; padding-right: 40px !important; }
}
@media (max-width: 1024px) {
    .sb-feature-band__inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 40px !important;
    }
}

/* ── Button overflow fix on mobile ── */
@media (max-width: 1024px) {
    .sb-feature-band__cta {
        max-width: 100% !important;
        box-sizing: border-box !important;
        min-width: 0 !important;
        white-space: normal !important;
        text-align: center !important;
    }
}
