/* ==== HERO ==== */
.hero {
  height: 100vh; /* Sayfa yüksekliğini tam olarak alacak şekilde ayarlandı */
  background: url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092?auto=format&fit=crop&w=1600&q=80") no-repeat center center/cover; /* Resim URL'si burada */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Görselin üzerine transparan siyah bir katman ekliyoruz */
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f5f5f5;
}
