/**
 * Vollbreite Hero mit Overlay – /tools/ und Tool-Detailseiten.
 * Edge-to-edge, Titel/Untertitel/Button zentriert auf dem Bild, lesbar auf hell/dunkel.
 */
.bc-hero-full {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .bc-hero-full {
    min-height: 420px;
    padding: 40px 16px;
  }
}

@media (min-width: 1024px) {
  .bc-hero-full {
    min-height: 480px;
    padding: 48px 24px;
  }
}

@media (min-width: 1280px) {
  .bc-hero-full {
    min-height: 520px;
  }
}

.bc-hero-full__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bc-hero-full__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bc-hero-full__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 18, 87, 0.75) 0%,
    rgba(6, 18, 87, 0.45) 35%,
    rgba(6, 18, 87, 0.25) 65%,
    rgba(8, 13, 39, 0.7) 100%
  );
  pointer-events: none;
}

.dark .bc-hero-full__overlay,
@media (prefers-color-scheme: dark) {
  .bc-hero-full__overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(8, 13, 39, 0.85) 100%
    );
  }
}

.bc-hero-full__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.bc-hero-full__inner {
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.bc-hero-full__badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #D4EDFF;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .bc-hero-full__badge {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.bc-hero-full__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 12px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .bc-hero-full__title {
    font-size: 36px;
    margin-bottom: 16px;
  }
}

@media (min-width: 1024px) {
  .bc-hero-full__title {
    font-size: 42px;
  }
}

@media (min-width: 1280px) {
  .bc-hero-full__title {
    font-size: 48px;
  }
}

.bc-hero-full__subtitle {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 20px 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .bc-hero-full__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .bc-hero-full__subtitle {
    font-size: 18px;
  }
}

.bc-hero-full__cta {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  background: var(--color-purple, #A673EE);
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.bc-hero-full__cta:hover {
  background: var(--color-black-pearl, #080D27);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .bc-hero-full__cta {
    padding: 16px 32px;
    font-size: 18px;
  }
}
