/* ==========================================
   Hero Alanı - Index Sayfası
   ========================================== */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s ease;
}

.hero-overlay {
  position: absolute;
  top:0; left:0;
  width: 100%; height: 100%;
  background: rgba(75, 10, 43, 0.5); /* böğürtlen overlay */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons a {
  margin: 0 0.5rem;
}

/* Hover efektleri */
.hero-buttons a.btn {
  background-color: var(--color-accent);
  color: #fff;
  font-style: italic;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.hero-buttons a.btn:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Mobil */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-buttons a {
    width: 60%;
  }
}
