/* ============================================
   FOOTER - Weißer Hintergrund, Anthrazit Text
   ============================================ */

.site-footer {
  background-color: #FFFFFF !important;
  color: #353F52 !important;
  padding: 4rem 1rem 2rem;
  border-top: 1px solid rgba(53, 63, 82, 0.1);
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Grid - 4 Spalten */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Brand Spalte */
.footer-brand h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #353F52;
  margin: 0 0 1rem 0;
}

.footer-brand p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: #353F52;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  background-color: #D1A000 !important;
  border-radius: 50% !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: transform 0.2s, background-color 0.2s !important;
}

.footer-social a:hover {
  background-color: #B89400 !important;
  transform: scale(1.1) !important;
}

.footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  background-color: #D1A000 !important;
  border-radius: 50% !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: transform 0.2s, background-color 0.2s !important;
}

.footer-social a:hover {
  background-color: #B89400 !important;
  transform: scale(1.1) !important;
}

.footer-social svg {
  width: 20px !important;
  height: 20px !important;
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
  color: #FFFFFF !important;
}

/* Links Spalten */
.footer-links h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #353F52;
  margin: 0 0 1rem 0;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  color: #353F52;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(53, 63, 82, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: #353F52;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .site-footer {
    padding: 3rem 1rem 1.5rem;
  }
}
