/* CSS für den Footer */

/* Footer-Design: Hintergrund, Schrift und Schatten */
footer {
  background-color: #59769C;
  padding: 20px 0;
  font-family: 'Orbitron', sans-serif;
  color: #F2F4FF;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  /* Schatten nach oben */
}

/* Inhalt im Footer ausrichten, zentriert und mit Abstand */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigationsbereich im Footer, Liste ohne Punkte */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Einzelne Navigationspunkte: nebeneinander */
.footer-nav li {
  display: inline;
}

/* Links im Footer: Styling und Übergangseffekt */
.footer-nav a {
  text-decoration: none;
  color: #F2F4FF;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.2s ease;
}

/* leichte Vergrößerung bei Hover */
.footer-nav a:hover {
  color: #ffffff;
  transform: scale(1.05);
}

/* Copyright-Text im Footer */
.footer-copy {
  margin: 0;
  font-size: 14px;
  color: #F2F4FF;
  opacity: 0.85;
}

/* Responsive Anpassung für kleine Bildschirme */
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    /* untereinander anstatt nebeneinander */
    height: auto;
    gap: 12px;
  }

  .footer-nav a {
    font-size: 15px;
  }

  .footer-copy {
    font-size: 13px;
  }
}