/* ============================= */
/* HERO */
/* ============================= */
.hero { 
  padding: 140px 0 90px; 
  text-align: center; 
  background: var(--dark-navy); 
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  /* Arka plan efekti */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 193, 7, 0.08), transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
  color: var(--yellow);
}

.hero-content p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  margin: 0 auto 2rem;
  max-width: 780px;
  color: var(--text-on-dark);
  line-height: 1.6;
  opacity: 0.95;
}

/* ============================= */
/* CTA BUTTON */
/* ============================= */
.cta-button {
  display: inline-block;
  padding: 16px 34px;
  background: var(--yellow);
  color: var(--dark-navy);
  text-decoration: none;
  border-radius: 48px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 10px 28px rgba(255, 175, 0, 0.35);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-button:hover {
  box-shadow: 0 14px 34px rgba(255, 175, 0, 0.45);
  background: #ffc233;
  transform: translateY(-3px);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 1024px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }

  .cta-button {
    font-size: 1rem;
    padding: 14px 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 90%;
  }

  .cta-button {
    width: 80%;
    max-width: 250px;
    font-size: 0.95rem;
    padding: 14px 26px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 50px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
}
