/* =========================
   Footer Styles
   ========================= */

footer {
  background-color: #f9f9f9;
  padding: 20px 10px;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Copyright-Zeile */
footer p {
  margin: 5px 0;
  color: #666;
  font-size: 14px;
}

/* Footer-Menü */
.footer-nav {
  margin-top: 10px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-menu li {
  display: inline;
  position: relative;
  margin: 0 8px;
}

/* Punkte zwischen Links */
.footer-menu li::after {
  content: "•";
  position: absolute;
  right: -12px;
  color: #aaa;
}

.footer-menu li:last-child::after {
  content: ""; /* kein Punkt hinter dem letzten Link */
}

.footer-menu a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-menu a:hover {
  color: #000;
  opacity: 0.8;
}
