/* ===== FOOTER CLEAN ===== */
.footer-clean {
  background: #f3f4f6; /* passt zu deinen Terminen */
  border-top: 1px solid #e5e5e5;
  margin-top: 0px;
  padding: 25px 0;
}

/* Container */
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family: "Montserrat", sans-serif;

}

/* LINKS */
.footer-left {
  font-size: 0.9rem;
  color: #555;
}

/* RECHTS */
.footer-right {
  display: flex;
  gap: 25px;
}

.footer-right a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  position: relative;
}

/* 🔥 Hover Effekt (dezent!) */
.footer-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #d62828;
  transition: 0.3s;
}

.footer-right a:hover::after {
  width: 100%;
}

.footer-right a:hover {
  color: #000;
}

/* MOBILE */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}