/* ===== FOOTER (PRO CLEAN + CONTRAST) ===== */
.footer {
  background: #f2f2f2; /* mehr Kontrast */
  border-top: 1px solid #ddd;
  margin-top: 80px;
  padding: 45px 20px;
  font-size: 14px;
  color: #444;
}

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

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

/* Links & Bereiche */
.footer .left,
.footer .right {
  display: flex;
  align-items: center;
}

/* Copyright */
.footer .copyright {
  font-size: 13px;
  color: #555;
}

/* Legal Links */
.footer .legal {
  display: flex;
  gap: 30px; /* MEHR ABSTAND */
}

/* Links */
.footer a {
  color: #444;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}

/* Hover */
.footer a:hover {
  color: #C1121F;
}

/* Linie */
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #C1121F;
  transition: width 0.25s ease;
}

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

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

  .footer .legal {
    justify-content: center;
  }
}