/* Genel Ayarlar */
.site-footer {
  background: #f8f8f8;
  color: #333;
  font-family: Arial, sans-serif;
  padding-top: 40px;
  margin-top: 40px;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

/* Üst Bölüm */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* E‑posta & Sosyal */
.footer-subscribe {
  flex: 1 1 280px;
}

.footer-subscribe h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.subscribe-form input {
  flex: 1;
  padding: 8px;
  border: 1px solid #bbb;
  border-radius: 4px;
}

.subscribe-form button {
  padding: 8px 14px;
  background: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background: #b88a00;
}

.social-icons {
  margin-top: 12px;
}

.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #b88a00;
}

/* Link Grupları */
.footer-links {
  display: flex;
  flex: 3 1 600px;
  flex-wrap: wrap;
  gap: 20px;
}

.links-group {
  flex: 1 1 150px;
}

.links-group h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-group ul li {
  margin: 6px 0;
}

.links-group ul li a {
  text-decoration: none;
  color: #555;
  font-size: 15px;
  transition: color 0.3s;
}

.links-group ul li a:hover {
  color: #b88a00;
}

/* Alt Bölüm */
.footer-bottom {
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 18px 0;
  margin-top: 30px;
}

.footer-bottom a {
  text-decoration: none;
  color: #444;
  margin: 0 4px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #b88a00;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
  }
  .links-group {
    flex: none;
    width: 100%;
  }
  .subscribe-form {
    flex-direction: column;
  }
  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }
}
