/* === Anasayfa === */
.hero-home {
  position: relative;
  min-height: clamp(520px, 85vh, 900px);
  display: flex;
  align-items: center;
  padding: clamp(4rem, 12vw, 7rem) 0;
  overflow: hidden;
  background: #030712;
}

.hero-home__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-home__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}

.hero-home__scrim {
  position: absolute;
  inset: 0;
  /* Karanlık ama hareket okunur; metin kontrastı için alt kısım biraz daha yoğun */
  background: linear-gradient(
      165deg,
      rgba(3, 7, 18, 0.72) 0%,
      rgba(3, 7, 18, 0.52) 38%,
      rgba(3, 7, 18, 0.68) 100%
    ),
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(3, 7, 18, 0.55), transparent 55%);
  pointer-events: none;
}

.hero-home__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(56, 189, 248, 0.14), transparent 42%),
    radial-gradient(circle at 88% 65%, rgba(245, 158, 11, 0.1), transparent 48%);
  mix-blend-mode: screen;
  opacity: 0.85;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-home__video {
    display: none;
  }

  .hero-home__media {
    background: linear-gradient(160deg, #0c1929 0%, #030712 45%, #1a1008 100%);
  }

  .hero-home__glow {
    mix-blend-mode: normal;
    opacity: 0.5;
  }
}

@media (max-width: 575.98px) {
  .hero-home {
    min-height: 64svh;
    min-height: 64vh;
    padding: clamp(2.5rem, 8vw, 7rem) 0;
  }
}

@media (max-width: 767.98px) {
  .hero-home {
    min-height: 62svh;
    min-height: 62vh;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.65);
}

.area-card {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 220px;
  position: relative;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 7, 18, 0.92) 100%);
  z-index: 0;
}

.area-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.area-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.area-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  z-index: 1;
}

.area-kickbox {
  border-color: rgba(220, 38, 38, 0.35);
}
.area-zumba {
  border-color: rgba(236, 72, 153, 0.35);
}
.area-pilates {
  border-color: rgba(132, 169, 140, 0.45);
}
.area-jimnastik {
  border-color: rgba(124, 58, 237, 0.35);
}

@media (max-width: 575.98px) {
  .area-card {
    min-height: 180px;
  }

  .area-card-body {
    padding: 1rem;
  }
}

.stat-strip {
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.15), rgba(245, 158, 11, 0.12));
  border-block: 1px solid var(--surface-border);
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: #f8fafc;
}

.cta-band {
  background: linear-gradient(120deg, #0c4a6e, #0f172a 50%, #78350f);
  border-radius: 1.25rem;
  border: 1px solid rgba(248, 250, 252, 0.12);
}
