/*
Dosya: css/components/hero.css
Amaç: Hero bölümü stilleri
*/

/* Hero Genel */
#hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.7);
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  color: var(--text-primary);
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: var(--spacing-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-2xl);
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile düzenleme */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    min-width: 200px;
  }
}
