/* Footer sabit değil, sayfa sonunda normal akar */
.footer {
 background-color: black;
  background-size: cover; /* Resim footer alanını tamamen kaplasın */
  background-position: center; /* Resim ortalansın */
  background-repeat: no-repeat;
  color: white;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  width: 100%;
}

/* İçerik genişliği ve flex yapısı */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

/* Footer bölümleri genişliği ve min genişlik */
.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #007BFF;
}

.footer-section p {
  margin: 0.5rem 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 1rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.social-icons a:hover img {
  filter: brightness(0) invert(0.6) sepia(1) saturate(5) hue-rotate(190deg);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  color: #aaa;
}

/* Responsive - mobilde alt alta sıralanır */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    opacity: 0.9;
}

.footer-logo {
    width: 32px;      /* küçük logo */
    height: auto;
}

.footer-name {
    font-size: 14px;  /* küçük yazı */
    color: #fff;      /* footera göre beyaz */
    letter-spacing: 0.5px;
}

