/* =========================
   HERO (FINAL) – Pisagor hissi + Premium Offset
========================= */

.hero{
  position: relative;
  height: 85vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: #0b1d36;
}

/* slider */
.hero-carousel{
  position: absolute;
  inset: 0;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .8s ease, transform 1.2s ease;
}

.hero-slide.is-active{
  opacity: 1;
  transform: scale(1);
}

/* overlay */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.22) 60%,
    rgba(0,0,0,0.10) 100%
  );
}

/* content */
.hero-content{
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  height: 100%;
  min-height: 0;
}

/* metin bloğu */
.hero-box{
  max-width: 640px;
  color: #fff;

  /* ✅ Senin margin ile yaptığın “içeri alma” etkisi */
  transform: translateX(30px);
}

/* kicker pill (Pisagor style) */
.hero-kicker{
  display: inline-flex;
  align-items: center;

  padding: 10px 14px;
  border-radius: 999px;

  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 12px 26px rgba(0,0,0,0.22);

  margin: 0 0 14px;
}

/* başlık */
.hero-title{
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 52px);
  font-family: 'Poppins', sans-serif;
  line-height: 1.08;
  letter-spacing: -0.4px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);

  text-shadow:
    0 1px 2px rgba(0,0,0,0.25),
    0 8px 30px rgba(0,0,0,0.35);
}

.hero-accent{
  color: #d6b25e;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}

/* açıklama */
.hero-lead{
  margin: 0 0 18px;
  opacity: .92;
  line-height: 1.75;
}

/* actions */
.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* buttons */
.btn-primary, .btn-light{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary{
  background:#0f2443;
  color:#fff;
}

.btn-primary:hover{
  background:#08324e;
}

/* =========================
   HERO BUTTON – Hover & Tap Scale
========================= */
.hero-actions .btn-primary{
  transition:
    transform .22s cubic-bezier(.4,0,.2,1),
    box-shadow .22s cubic-bezier(.4,0,.2,1),
    filter .22s ease;
  will-change: transform;
}

/* Desktop hover */
@media (hover:hover){
  .hero-actions .btn-primary:hover{
    transform: scale(1.04);
    box-shadow: 0 14px 30px rgba(0,0,0,.28);
    filter: brightness(1.03);
  }
}

/* Mobile tap */
.hero-actions .btn-primary:active,
.hero-actions .btn-primary:focus-visible{
  transform: scale(1.03);
  box-shadow: 0 10px 22px rgba(0,0,0,.24);
  filter: brightness(1.02);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px){
  .hero{
    height: 78vh;
    min-height: 520px;
  }

  .hero-content{
    padding: 64px 16px;
    height: 100%;
    min-height: 0;
  }

  /* mobilde offset'i kaldır */
  .hero-box{
    transform: none;
  }

  .hero-kicker{
    padding: 9px 12px;
    font-size: 12px;
  }
}

/* mobile title scale */
@media (max-width: 768px){
  .hero-title{
    font-size: clamp(32px, 6.5vw, 40px);
    line-height: 1.12;
  }

  .hero-lead{
    font-size: 15px;
  }
}
