/* Hero Section Stilleri */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f0fb 100%);
  padding: 8rem 0 6rem 0;
  overflow: hidden;
  border-radius: 0 0 2rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--primary) 0%, #5e7fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary) 0%, #5e7fff 100%);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(109, 66, 230, 0.25);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.9s both;
  border: none;
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(109, 66, 230, 0.35);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}

.hero-shape {
  position: absolute;
  z-index: 1;
}

.hero-shape-1 {
  top: -5%;
  right: -5%;
  width: 25%;
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  bottom: -5%;
  left: -5%;
  width: 20%;
  opacity: 0.15;
  animation: float 10s ease-in-out infinite reverse;
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Düzenlemeler */
@media (max-width: 900px) {
  .hero-section {
    padding: 6rem 0 4rem 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 5rem 0 3rem 0;
    border-radius: 0 0 1.5rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}
