/* ═══════════════════════════════════════
   BatuhanWeb — hero.css
   Hero Bölümü
   ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 2.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

/* Badge */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(230,57,70,.4);
  padding: .38rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

/* Heading */
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

/* Subtitle */
.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Decorative orb */
.hero-orb {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(230,57,70,.1);
  pointer-events: none;
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  border: 1px solid rgba(230,57,70,.18);
}

.hero-orb::after {
  content: '';
  position: absolute;
  inset: 160px;
  border-radius: 50%;
  border: 1px solid rgba(230,57,70,.1);
  background: radial-gradient(circle, rgba(230,57,70,.05) 0%, transparent 70%);
}
