/**
 * Nexelio Footer — CSS
 * ====================
 * Locatie: /wp-content/uploads/nexelio/footer.css
 * Laden:   Globaal via mu-plugin nexelio-enqueue.php (alle pagina's)
 * Versie:  1.0 (2026-02-21)
 *
 * Fonts:   Lexend + Outfit via GP Font Library
 */

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #F8FAFC;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0C1A1A;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-brand .footer-logo span {
  color: #0F766E;
}

.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #64748B;
  margin-bottom: 12px;
}

.footer-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
}

.footer-col-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0C1A1A;
  margin-bottom: 16px;
}

.footer-col-title.footer-col-title--logo {
  text-transform: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.footer-col-title--logo span {
  color: #0F766E;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #334155;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: #64748B;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social {
  margin-top: 16px;
}

.footer-social a {
  color: #64748B;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #0D9488;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid #E2E8F0;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-left,
.footer-bottom-right {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: #64748B;
}

.footer-bottom-right a {
  color: #64748B;
  text-decoration: none;
}

.footer-bottom-right a:hover {
  color: #0D9488;
}

/* ========================================
   RESPONSIVE — TABLET (1024px)
   ======================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}
