/* ===================================================
   FitnessKiezen — Footer component
   =================================================== */

.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 260px;
}
.footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-light);
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== RESPONSIVE (footer) ===== */
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
}
