/* ═══════════════════════════════════════════════════════
   Flatsome Hero Slider – Frontend CSS v1.3
   ═══════════════════════════════════════════════════════ */

/* ── Wrap ───────────────────────────────────────────── */
.fhs-slider-wrap {
  position: relative;
  width: 100%;
}

/* ── Slider ─────────────────────────────────────────── */
.fhs-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 900px;
  min-height: 480px;
  overflow: hidden;
  background: #111;
}

/* ── Slide ──────────────────────────────────────────── */
.fhs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}
.fhs-slide.fhs-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* ── Arka plan resim – EFEKTSİZ, TAM KALİTE ───────── */
.fhs-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Hiçbir transform/scale/zoom yok – resim bozulmuyor */
}

/* ── Arka plan video ───────────────────────────────── */
.fhs-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ── Overlay (sadece bu aktif) ─────────────────────── */
.fhs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.38) 55%,
    rgba(0,0,0,0.60) 100%
  );
  z-index: 1;
}

/* ── İçerik ─────────────────────────────────────────── */
.fhs-content {
  position: absolute;
  bottom: 90px;
  left: 60px;
  right: 60px;
  z-index: 3;
  color: #fff;
  transform: translateY(22px);
  opacity: 0;
  transition: transform 0.85s 0.3s ease, opacity 0.85s 0.3s ease;
}
.fhs-slide.fhs-active .fhs-content {
  transform: translateY(0);
  opacity: 1;
}

.fhs-heading {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.fhs-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #fff;
  margin: 12px 0 0;
}

.fhs-subheading {
  font-size: clamp(0.8rem, 1.5vw, 1.05rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  line-height: 1.7;
}

/* ── CTA Buton ─────────────────────────────────────── */
.fhs-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #111;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.fhs-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* ── Progress Bar ───────────────────────────────────── */
.fhs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.fhs-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
  transition: none;
}

/* ── Oklar ──────────────────────────────────────────── */
.fhs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
}
.fhs-arrow:hover { background: rgba(255,255,255,0.28); }
.fhs-prev { left: 20px; }
.fhs-next { right: 20px; }
.fhs-arrow svg { width: 22px; height: 22px; }

/* ── Dots – kaldırıldı ──────────────────────────────── */
.fhs-dots { display: none !important; }

/* ── Aşağı Kaydır ───────────────────────────────────── */
.fhs-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: rgba(255,255,255,0.82);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  user-select: none;
  white-space: nowrap;
}

@keyframes fhs-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* ── Mobilde gizle ──────────────────────────────────── */
@media (max-width: 767px) {
  .fhs-slide.fhs-hide-mobile {
    display: none !important;
  }
}

/* ═══════════════════
   MOBİL
   ═══════════════════ */
@media (max-width: 768px) {
  .fhs-slider {
    height: 65vw;
    min-height: 300px;
    max-height: 560px;
  }
  .fhs-content {
    bottom: 52px;
    left: 20px;
    right: 20px;
  }
  .fhs-arrow { width: 38px; height: 38px; }
  .fhs-prev  { left: 8px; }
  .fhs-next  { right: 8px; }
}
@media (max-width: 480px) {
  .fhs-slider { height: 80vw; min-height: 260px; }
  .fhs-arrow  { display: none; }
  .fhs-content { bottom: 40px; }
}
