/* ============================================================
   HOME - Startseiten-spezifische Styles
   ============================================================ */

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
  overflow: hidden;

  background-image: url(../../images/hero/kinderhand-mit-bluemchen.webp);
  background-size: 100% auto;
  background-position: 50% 51%;

  padding-top: 128px;
  /* Spacer für Navigation*/
}

@media (max-width: 1200px) {
  .hero {
    background-image: url(../../images/hero/kinderhand-mit-bluemchen-mobile.webp);
    background-size: auto 110%;
    background-position: 65% -4%;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 47, 160, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-shadow: 0 5px 12px rgba(30, 20, 10, 0.4);
}

.hero-content h1 {
  color: var(--farbe-weiss);
  font-weight: 300;
  /* text-shadow: 0 2px 8px rgba(30, 20, 10, 0.3); */
}

.hero-subtitle {
  font-size: calc((4vw + 10px) / 2);

  color: var(--farbe-creme);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-weight: 200;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

/* --- Mobile-Ausnahme: Hero-Überschrift --- */
@media (max-width: 767px) {

  .hero {
    min-height: 40vh;
  }

  .hero h1.text-gradient,
  .hero h1.text-gradient small.text-gradient {
    font-size: calc((11vw + 10px) / 2);
  }

  .hero-subtitle {
    font-size: calc((8vw + 10px) / 2);
  }
}

/* --- Intro Section --- */
.intro-section {
  background: var(--farbe-weiss);
}

.intro-text {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--farbe-text-mittel);
  max-width: 800px;
  margin: 0 auto;
}

/* --- Kontakt-Bereich (Startseite) --- */
.kontakt-section {
  background: var(--farbe-creme);
  text-align: center;
}

.kontakt-box {
  background: var(--farbe-weiss);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.kontakt-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--farbe-text-mittel);
  font-size: var(--text-lg);
}

.kontakt-item a {
  color: var(--farbe-violett);
  text-decoration: none;
  font-weight: 500;
}

.kontakt-item a:hover {
  color: var(--farbe-pink);
  text-decoration: underline;
}

/* Hero-Divider: SVG-Switch Desktop/Mobile per CSS */
.hero-devider .hero-devider-mobile {
  display: none;
}

@media (max-width: 767px) {
  .hero-devider .hero-devider-desktop {
    display: none;
  }

  .hero-devider .hero-devider-mobile {
    display: inline-block;
  }
}

/* Hero-Button "Pflegefamilie werden": Footer-Farbverlauf (gleicher Winkel),
   etwas kompakter, Schrift 2px groesser + leichter (300) mit minimalem Letterspacing */
.hero-buttons .btn-primary {
  background: linear-gradient(101deg, #5ca0cb 25.2%, #ed6ea7 100%);
  padding: 14px 28px;
  font-size: calc(var(--text-lg) + 2px);
  font-weight: 300;
  letter-spacing: 0.5px;
  box-shadow: 0px 4px 12px rgba(40, 20, 0, 0.4), 0 9px 53px rgba(40, 20, 0, 0.3);
}