/* --- footer.css --- */
/* Benötigt global.css für Farben! */

footer {
  background: #111;
  color: #aaa;
  padding: 60px 0 0;
  font-size: 0.9rem;
  margin-top: auto;
  border-top: 5px solid var(--ukraine-blue);
}

/* Haupt-Layout Container */
.footer-grid {
  display: flex; /* Flexbox statt Grid für bessere Links-Rechts Verteilung */
  justify-content: space-between; /* Schiebt Inhalte maximal auseinander */
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px;
  gap: 40px;
  flex-wrap: wrap; /* Damit es auf Handy umbricht */
}

/* Linker Bereich (Info Text) */
.footer-info {
  flex: 1;
  min-width: 280px;
  max-width: 450px; /* Begrenzt die Breite, damit der Text gut lesbar bleibt */
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Social Icons Style */
.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-socials a:hover {
  color: var(--ukraine-blue);
  transform: translateY(-3px);
}

/* Rechter Bereich (Die Menüs) */
.footer-menus {
  display: flex;
  gap: 80px; /* Abstand zwischen "Verein" und "Rechtliches" */
}

.footer-menu-col {
  min-width: 120px;
}

/* Links Styling */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--ukraine-yellow);
  padding-left: 5px; /* Kleiner Hover-Effekt nach rechts */
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid #222;
  background: #0d0d0d;
  padding: 20px 0;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Made with Love Banner */
.made-with-love-banner {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.made-with-love-banner:hover {
  background: #252525;
  border-color: #555;
  color: #fff;
}
.made-with-love-banner i {
  color: #e63946;
  transition: transform 0.3s;
}
.made-with-love-banner:hover i {
  transform: scale(1.2);
}

/* Responsive Anpassung für Tablets und Handys */
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 50px;
  }
  
  .footer-info {
    max-width: 100%;
  }

  .footer-menus {
    width: 100%;
    justify-content: flex-start;
    gap: 60px;
    flex-wrap: wrap;
  }
}