/* Genel stil */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header, footer {
  text-align: center;
  padding: 20px;
  background: #182439;
  color: #fff;
}

header p {
  margin-top: 10px;
  font-size: 22px;
}

/* Logo */
.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
}

/* Hero görselleri */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  padding: 20px;
}

.hero img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* İletişim bölümü */
.contact {
  padding: 20px;
  background: #f1f1f1;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  text-align: center; /* ✅ Ortalandı */
}

.contact h2 {
  margin-bottom: 15px;
}

.contact p {
  margin: 8px 0;
  font-size: 16px;
}

/* Harita */
.map {
  padding: 20px;
  text-align: center;
}

.map iframe {
  border-radius: 8px;
  width: 100%;
  height: 300px;
}

/* Footer */
footer p {
  font-size: 14px;
  margin: 0;
}

/* Responsive düzen */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  header p {
    font-size: 19px;
  }
  .hero img {
    height: 200px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
}
