.footer {
  padding: 40px 20px;
  color: #ccc;
  font-family: sans-serif;
}

/* Wrapper */
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Linke Seite */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* Logo-Box → jetzt mit Bild */
.logo-box {
  background-color: #def0fd;
  padding: 12px;
  border-radius: 13px;
  margin-right: 15px;
  box-shadow: 0 0 25px rgba(157, 200, 243, 0.618);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Branding-Bild rechts vom Logo */
.footer-logo-image img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* Footer Beschreibung */
.footer-description {
  font-size: 14px;
  color: #1e1e1e;
  margin-top: 0;
  padding-left: 0px;
  line-height: 1.5;
  max-width: 500px;
}

/* Rechte Seite */
.footer-right {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 140px;
}

.column-heading {
  color: #45aaf2;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.column-content {
  display: flex;
  align-items: flex-start;
}

.column-line {
  width: 3px;
  height: 110px;
  background: linear-gradient(to bottom, #4b7bec, #45aaf2);
  border-radius: 2px;
  margin-right: 10px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 5px;
}

.footer-list a {
  color: #1e1e1e;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-list a:hover {
  color: #45aaf2;
  transform: translateX(2px);
}

/* Trennlinien */
.footer-separator {
  height: 1px;
  background: linear-gradient(to right, transparent 10%, #4b7bec 15%, #4b7bec 85%, transparent 90%);
  margin: 20px auto 20px;
  max-width: 1600px;
}

.footer-separator-up {
  height: 1px;
  background: linear-gradient(to right, transparent 10%, #4b7bec 15%, #4b7bec 85%, transparent 90%);
  margin: 0px auto 40px;
  max-width: 1600px;
}

/* Unterer Footer */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #1e1e1e;
  gap: 10px;
}

.footer-bottom-links a {
  color: #1e1e1e;
  margin-left: 20px;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    align-items: center;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .column-content {
    justify-content: center;
  }

  .footer-list {
    text-align: left;
  }

  .footer-description {
    padding-left: 0;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-links {
    margin-left: 0;
  }

  /* Branding-Bild responsive */
  .footer-logo-image img {
    height: 45px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  animation: fadeInUp 0.8s ease-out;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.6s ease-out;
}

.footer.footer-visible {
  opacity: 1;
  transform: translateY(0);
}
