/* =========================
   HERO (ANA GİRİŞ ALANI)
   → Sayfanın üst ana bölümü
========================= */
.hero{
  padding:40px 20px;
  background:#fff;
}

/* =========================
   HERO BAŞLIK
   → Büyük ana yazı (H1)
========================= */
.hero h1{
  font-size:48px;
  margin-bottom:20px;
}

/* =========================
   FORM INPUT
   → Konum / adres / giriş alanları
========================= */
input{
  width:100%;
  padding:16px;
  border-radius:10px;
  border:none;
  background:#eee;
  margin-bottom:12px;
  font-size:16px;
}

/* =========================
   HERO BUTTON
   → Ana çağrı butonu
========================= */
.hero .btn {
  width:240px;
  display:block;
  text-align:center;
  border-radius:6px; /* Uber daha az oval */
}

/* =========================
   LOGIN TEXT
   → Alt küçük giriş linki
========================= */
.login-text {
  display:inline-block;
  margin-top:24px;
  font-size:14px;
  color:#6b6b6b;
  border-bottom:1px solid #ddd;
  padding-bottom:8px;
  text-decoration:none;
}

/* =========================
   HERO LINK RESET
   → Link alt çizgilerini kaldırır
========================= */
.hero a{
  text-decoration:none !important;
}