/* ============================
   Footer Styling
============================ */

footer {
  background-color: var(--kleur-footer-bg);
  color: var(--kleur-footer-tekst);
  padding: 1rem 0.8rem;
  font-size: 0.85rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-top: none;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-left h2,
.footer-right h2 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--kleur-footer-tekst);
}

.footer-left p,
.footer-right p,
.footer-links li,
.footer-bottom {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 0.8rem;
}

.footer-links i {
  color: var(--kleur-footer-link);
  transition: color 0.3s ease;
}

.footer-links a:hover i {
  color: var(--kleur-footer-link-hover);
}

footer a {
  color: var(--kleur-footer-link);
  text-decoration: none;
}

footer a:hover {
  color: var(--kleur-footer-link-hover);
  text-decoration: underline;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.sponsor-logos img {
  max-height: 45px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.sponsor-logos img:hover {
  filter: grayscale(0%);
}

.footer-bottom {
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
  font-size: 0.75rem;
}

.footer-bottom a {
  color: var(--kleur-cta);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--kleur-cta-hover);
  text-decoration: underline;
}

/* ============================
   Responsive Footer
============================ */

@media (max-width: 600px) {
  .footer-left,
  .footer-right {
    flex: 1 1 100%;
  }

  .sponsor-logos {
    justify-content: center;
  }
}
