/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Video background ─────────────────────────────────────── */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 11, 0.3) 0%,
    rgba(13, 13, 11, 0.2) 40%,
    rgba(13, 13, 11, 0.6) 80%,
    rgba(13, 13, 11, 0.95) 100%
  );
}

/* Ek yan overlay'ler (depth) */
.hero__video-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 13, 11, 0.5) 0%,
    transparent 50%,
    rgba(13, 13, 11, 0.3) 100%
  );
}

.hero__video-inner {
  position: absolute;
  inset: -10%;  /* biraz büyük: scale animasyonu için yer */
  z-index: 1;
  transition: opacity 0.8s ease;
  opacity: 0;
}

.hero__video-inner.is-loaded {
  opacity: 1;
}

.hero__video-inner iframe,
.hero__video-inner #heroYouTubePlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh; /* 16:9 */
  min-width: 100%;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  pointer-events: none;
}

/* Mobil fallback */
.hero__video-fallback {
  position: absolute;
  inset: 0;
  background: var(--bg-surface);
  background-image: url(''); /* PHP'den doldurulacak */
  background-size: cover;
  background-position: center;
  z-index: 0;
}

@media (pointer: coarse) {
  .hero__video-inner { display: none; }
  .hero__video-fallback { display: block; }
}

/* ── Progress line ────────────────────────────────────────── */
.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 10;
}

.hero__progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform-origin: left;
  transform: scaleX(0);
}

/* ── Hero content ─────────────────────────────────────────── */
.hero__content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  height: 100%;
  padding-top: 8rem;
  padding-bottom: 5rem;
  gap: 3rem;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 900px;
}

/* Eyebrow */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__eyebrow-line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

/* Title */
.hero__title {
  line-height: 0.92;
}

.hero__title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em; /* descender için */
}

.hero__title-line--italic {
  font-style: italic;
  padding-left: 0.05em;
}

/* Actions */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Venue quick nav ──────────────────────────────────────── */
.hero__venues-quick {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: heroVenuesFadeIn 0.9s 0.6s both ease-out;
}

@keyframes heroVenuesFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__venues-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero__venue-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: rgba(245,240,232,0.7);
  transition: border-color var(--duration-fast), color var(--duration-fast),
              background var(--duration-fast), transform var(--duration-fast);
  white-space: nowrap;
}

.hero__venue-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 110, 0.06);
  transform: translateY(-1px);
}

.hero__venue-num {
  font-size: 0.625rem;
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
}

.hero__venue-cap {
  font-size: 0.625rem;
  opacity: 0.5;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 0.4rem;
}

/* ── Scroll indicator ─────────────────────────────────────── */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 5rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform-origin: top center;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__content {
    padding-top: 6rem;
    padding-bottom: 3rem;
    grid-template-rows: 1fr;
  }

  .hero__venues-quick {
    display: none; /* mobilde yer yok, mekanlar sayfasına yönlendiriyoruz */
  }

  .hero__scroll-indicator {
    display: none;
  }

  .hero__actions {
    gap: 0.75rem;
  }

  .hero__actions .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.75rem;
  }
}
