/* Footer Base */
.site-footer {
  width: 100%;
  background-color: #1a1a1a;
  color: #cccccc;
  padding-top: 50px;
  margin-top: 60px;
  clear: both; /* Wichtig für Masonry-Grids! */
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #aaa;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Bottom Bar */
.footer-bottom {
  background-color: #111111;
  padding: 20px 0;
  border-top: 1px solid #2a2a2a;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #888;
}

.footer-note {
  font-size: 0.8rem;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

