/* Footer */

.site-footer {
  background-color: #f9f9f9;
  padding: 2rem 0 0 0;
  margin-top: 2rem;
}

.footer-top {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Logo */
.footer-logo img {
  max-width: 160px;
  height: auto;
  margin-bottom: 0.5rem;
}

/* Slogan */
.footer-slogan {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
  margin: 0 0 1.5rem;
}

/* Icon-Container */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Icon Buttons */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #444444;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

/* Icon‐Farbe und Größe */
.social-link i {
  color: white;
  font-size: 1.25rem;
  z-index: 1;
}

.social-link:hover {
  background-color: #666666;
}

.links {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.links a {
  text-decoration: none;
  color: #444444;
  padding: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.links a:hover {
  color: #656565;
}

/* Copyright‐Zeile */
.footer-copy {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.9rem;
  margin: 0;
}

/* Footer bottom */
.footer-bottom {
  background-color: #3E4245;
  padding: 2rem;
}

.footer-bottom a, .footer-bottom p {
  color: #C5C6CA;
}

.footer-bottom .links a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .footer-logo img {
    max-width: 120px;
    margin-bottom: 0.5rem;
  }
  .footer-slogan {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .social-link {
    width: 40px;
    height: 40px;
  }
  .social-link i {
    font-size: 1.1rem;
  }
  .links {
    flex-direction: column;
  }
  .footer-copy {
    font-size: 0.8rem;
  }
}
