/* =========================================
   HERO TEXT – VIDEO ÜZERİ ANİMASYON
========================================= */

/* Konumlandırma */
.hero-content {
  position: fixed;
  left: calc(var(--sidebar-width, 260px) + 80px);
  bottom: 120px;
  max-width: 720px;
  z-index: 6;
  color: #f2f2f2;
  pointer-events: none;
}

/* Büyük slogan */
.hero-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 18px 0;
  letter-spacing: 0.18em;
  opacity: 0;
  transform: translateY(24px);
}

/* Alt metin */
.hero-subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0;
  transform: translateY(18px);
}

/* AKTİF animasyon durumu */
.hero-content.is-visible .hero-title {
  animation: heroTitleIn 1.2s ease forwards;
}

.hero-content.is-visible .hero-subtitle {
  animation: heroSubtitleIn 1.2s ease forwards;
  animation-delay: 0.4s;
}

/* Animasyonlar */
@keyframes heroTitleIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
    letter-spacing: 0.28em;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.08em;
  }
}

@keyframes heroSubtitleIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 0.75;
    transform: translateY(0);
  }
}

/* Mobil ayar */
@media (max-width: 768px) {
  .hero-content {
    left: 24px;
    right: 24px;
    bottom: 80px;
  }

  .hero-title {
    font-size: 28px;
  }
}


/* =========================================
   HERO TEXT – TAM ORTA HİZALAMA
========================================= */

.hero-content {
  position: fixed;
  inset: 0;                 /* tüm ekran */
  display: flex;
  flex-direction: column;
  align-items: center;      /* yatay merkez */
  justify-content: center;  /* dikey merkez */
  text-align: center;
  max-width: none;
  padding: 0 24px;
  z-index: 6;
  pointer-events: none;
}

/* Başlık */
.hero-title {
  max-width: 900px;
}

/* Alt metin */
.hero-subtitle {
  max-width: 600px;
}
