/* ========== FOOTER ========== */

.site-footer {
  background: #0077b6; /* sluit aan op global.css */
  color: #ffffff;
  padding: 2rem 0 1.5rem;
  font-size: 0.95rem;
}

.site-footer .container {
  max-width: 1100px;
}

/* Navigatielinks bovenaan */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 1.4rem;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.97rem;
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.2s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* Adres + licentie */
.footer-info {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.footer-address {
  margin: 0;
  font-weight: 500;
}

.footer-license {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Onderste regel */
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Mobiel wat extra lucht */
@media (max-width: 576px) {
  .site-footer {
    padding: 1.7rem 0 1.4rem;
  }

  .footer-nav {
    gap: 1.1rem;
  }

  .footer-nav a {
    font-size: 0.95rem;
  }
}
