.footer {
    background: linear-gradient(to top, #000000, #121212); /* sanfter Farbverlauf */
    color: #999999;
    padding: 60px 40px 30px 40px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* feine obere Linie */
  }
  

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-column a {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Abstand zwischen Logo und Text */
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 12px;
  }
  
  .footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
  }
  
  .footer-brand-logo {
    height: 20px;
    width: auto;
  }
  
  .footer-brand-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
  }
  
  
  .footer-logo-image {
    height: 16px;
    width: auto;
  }
  
  .footer-logo-text {
    user-select: none;
  }
  
.footer-description {
  max-width: 280px;
  font-size: 14px;
  line-height: 1.6;
  color: #999999;
}

.footer-bottom {
  border-top: 1px solid #222222;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #666666;
}

.footer-socials a {
  margin-left: 12px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-socials a:hover {
  opacity: 1;
}

.footer-socials img {
  height: 20px;
}
