/* ===========================
   STICKY FOOTER
   =========================== */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

.site-footer {
  margin-top: auto; /* Footer bleibt unten */
}

/* ===========================
   FOOTER DESIGN
   =========================== */

.site-footer {
  background: linear-gradient(to right, #e6f2ff, #cfe6ff);
  padding: 15px 0;              /* kompakter Footer */
  font-family: Arial, sans-serif;
  color: #003b70;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ===========================
   EINE LINIE MIT TRENNSTRICHEN
   =========================== */

.footer-line {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;

  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.footer-line li {
  position: relative;
  padding: 0 8px;
}

/* Trennstrich zwischen allen Elementen */
.footer-line li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -8px;
  color: #003b70;
  font-weight: bold;
}

/* Links */
.footer-line li a {
  color: #003b70;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

.footer-line li a:hover {
  text-decoration: underline;
}

/* Icons */
.footer-line i {
  font-size: 17px;
  color: #003b70;
  transition: 0.3s;
}

.footer-line i:hover {
  color: #00509e;
  transform: translateY(-2px);
}

/* Copyright */
.footer-container p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .footer-line {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-line li {
    padding: 0 5px;
  }

  .footer-line li:not(:last-child)::after {
    right: -6px;
  }
}
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 20px 0;
}

.partner-logos img {
  height: auto;        /* noch kleiner */
  width: 12px;
  object-fit: contain; /* erzwingt saubere Skalierung */
  padding: 0;
  margin: 0;
}


.partner-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

