/* ==========================================================================
   hero.css
   - Homepage hero / carousel / overlay
   - Hero typography + CTA buttons
   ========================================================================== */

/* 1) Hero Shell */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: #0b1d36;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

/* 2) Overlay (okunabilirlik) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 48%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 2;
}

/* 3) Content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-col {
  max-width: 820px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-title {
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.05;
  font-size: clamp(34px, 4.2vw, 58px);
  margin: 0 0 14px;
}

.text-accent {
  color: var(--brand-gold);
}

.hero-lead {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 70ch;
}

.hero-ctas {
  
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 4) CTA Buttons (Hero'ya özel kaynak) */
.hero-cta-main {
  background: #0b1d36;
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration:none;
  border: 2px solid transparent;
  display: inline-block;
}

.hero-cta-main:hover {
  filter: brightness(1.03);
}

.hero-cta-outline {
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #fff !important;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  display: inline-block;
}

.hero-cta-outline:hover {
  background: #fff;
  color: #0b1d36 !important;
}
/* 4) CTA Buttons (Hero'ya özel kaynak) */
.hero-cta-main{
  background: #0b1d36;   /* LACİ */
  color: #fff !important;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.10);
  display: inline-block;

  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.hero-cta-main:hover{
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}

.hero-cta-main:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}


/* 5) Animations (varsa kullanıyorsan) */
@keyframes scroll {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 22px;
  }
}

/* 6) Responsive */
@media (max-width: 576px) {
  .hero {
    min-height: 560px;
  }
}
