/* ===========================
   /css/sectie5-footer.css
   FOOTER (alles footer-gerelateerd)
   =========================== */

footer{
  background: #0f0f12;
  color: rgba(255,255,255,.88);
  position: relative;
  z-index: 10;
}

.footer-top{
  padding: 54px 0 34px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.2fr; /* 5 kolommen */
  gap:24px;
}

@media (max-width: 980px){
  .footer-grid{grid-template-columns: 1fr}
}

.footer-title{
  font-weight:950;
  margin:0 0 12px;
  letter-spacing:.2px;
}

/* ===========================
   FOOTER MENU LINKS (kolommen)
   - altijd onder elkaar
   - underline midden -> buiten
   - alleen tekst underline (span)
   =========================== */

.footer-links a{
  display:block;                    /* ✅ altijd onder elkaar */
  padding:7px 0;
  color: rgba(255,255,255,.78);
  font-weight:600;                  /* ✅ minder dik */
  text-decoration:none;
}

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

/* span = alleen tekst underline */
.footer-links a > span{
  display:inline-block;
  position:relative;
  padding-bottom:2px;
}

/* underline midden -> buiten */
.footer-links a > span::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  height:2px;
  width:100%;
  background: var(--brand-orange);
  transform: translateX(-50%) scaleX(0);
  transform-origin:center;
  transition: transform .18s ease;
  border-radius:999px;
}

.footer-links a:hover > span::after{
  transform: translateX(-50%) scaleX(1);
}

/* ===========================
   NEWSLETTER
   =========================== */

.newsletter-note{
  margin:0 0 12px;
  color: rgba(255,255,255,.70);
  font-weight:650;
  line-height:1.55;
}

/* input velden wit achtergrond */
.newsletter input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:#fff;                  /* ✅ wit */
  color:#0f0f12;
  outline:none;
  margin-bottom:10px;               /* ✅ ruimte tussen velden */
}

.newsletter input::placeholder{
  color: rgba(15,15,18,.55);
  font-weight:650;
}

.newsletter input:focus{
  box-shadow:0 0 0 4px rgba(225,85,44,.20);
  border-color: rgba(225,85,44,.35);
}

/* button half breedte links */
.newsletter button{
  border:none;
  border-radius:14px;
  padding:12px 14px;
  font-weight:900;
  cursor:pointer;
  background: linear-gradient(135deg, var(--brand-orange), #ff6b3a);
  color:#fff;
  box-shadow: 0 14px 26px rgba(225,85,44,.22);

  width:50%;                        /* ✅ half */
  min-width: 180px;
  display:block;
}

/* consent: klein + niet dik */
.newsletter-consent{
  display:flex;                     /* ✅ checkbox naast tekst */
  gap:10px;
  align-items:flex-start;
  color: rgba(255,255,255,.76);
  font-weight:500;                  /* ✅ niet dik */
  font-size: 12.5px;                /* ✅ kleiner */
  line-height:1.45;
  margin-top:10px;
}

.newsletter-consent input{
  width:16px;
  height:16px;
  margin-top:2px;
  accent-color: var(--brand-orange);
  flex: 0 0 auto;
}

/* privacy tekst kleiner + niet dik */
.newsletter-privacy{
  margin: 8px 0 0;
  color: rgba(255,255,255,.70);
  font-weight:500;
  font-size: 12.5px;
  line-height:1.45;
}

/* privacy link = underline midden -> buiten (alleen tekst via span) */
.privacy-link{
  color: rgba(255,255,255,.82);
  text-decoration:none;
  font-weight:650;
}

.privacy-link:hover{ color:#fff; }

.privacy-link > span{
  display:inline-block;
  position:relative;
  padding-bottom:2px;
}

.privacy-link > span::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  height:2px;
  width:100%;
  background: var(--brand-orange);
  transform: translateX(-50%) scaleX(0);
  transform-origin:center;
  transition: transform .18s ease;
  border-radius:999px;
}

.privacy-link:hover > span::after{
  transform: translateX(-50%) scaleX(1);
}

.req{ color: var(--brand-orange); font-weight:900; }

/* LinkedIn tekstlink: rechts, alleen tekst underline midden -> buiten */
.newsletter-li{
  display:block;
  margin-top:12px;
  text-align:right;
  color: rgba(255,255,255,.82);
  font-weight:650;
  text-decoration:none;
}

.newsletter-li:hover{ color:#fff; }

.newsletter-li > span{
  display:inline-block;
  position:relative;
  padding-bottom:2px;
}

.newsletter-li > span::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  height:2px;
  width:100%;
  background: var(--brand-orange);
  transform: translateX(-50%) scaleX(0);
  transform-origin:center;
  transition: transform .18s ease;
  border-radius:999px;
}

.newsletter-li:hover > span::after{
  transform: translateX(-50%) scaleX(1);
}

/* ===========================
   SOCIAL (boven in kolom)
   =========================== */

.social{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.social a{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  transition: transform .15s ease, border-color .15s ease;
  color: rgba(255,255,255,.88);
}

.social a:hover{
  transform: translateY(-2px);
  border-color: rgba(225,85,44,.45);
}

/* ===========================
   LEGAL LINKS BAR
   =========================== */

.footer-legal{
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-legal-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.72);
  font-weight:650;                 /* ✅ minder dik */
  font-size: 13px;
}

.footer-legal-links .legal-link{
  display:inline-block;
  color: rgba(255,255,255,.72);
  text-decoration:none;
}

.footer-legal-links .legal-link:hover{ color:#fff; }

/* alleen tekst underline via span */
.footer-legal-links .legal-link > span{
  display:inline-block;
  position:relative;
  padding-bottom:2px;
}

.footer-legal-links .legal-link > span::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  height:2px;
  width:100%;
  background: var(--brand-orange);
  transform: translateX(-50%) scaleX(0);
  transform-origin:center;
  transition: transform .18s ease;
  border-radius: 999px;
}

.footer-legal-links .legal-link:hover > span::after{
  transform: translateX(-50%) scaleX(1);
}

.footer-legal-links .sep{
  color: rgba(255,255,255,.22);
  font-weight:900;
}

/* ===========================
   FOOTER BOTTOM
   =========================== */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  padding:18px 0;
  color: rgba(255,255,255,.72);
  font-weight:650;
}

.footer-bottom .bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.footer-bottom-social{
  display:flex;
  gap:10px;
  align-items:center;
}

.footer-bottom-social a{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  transition: transform .15s ease, border-color .15s ease;
  color: rgba(255,255,255,.88);
}

.footer-bottom-social a:hover{
  transform: translateY(-2px);
  border-color: rgba(225,85,44,.45);
}

.footer-claim{
  text-align:center;
  padding: 0 0 24px;
  color: rgba(255,255,255,.80);
  font-weight:700;
}

.footer-claim span{
  color:#fff;
  font-weight:950;
}
