/* =========================================
   🔹 Sticky Footer Basislayout
   ========================================= */
 
/* Zorg dat body de hele hoogte gebruikt en footer altijd onderaan komt */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
 
/* Je hoofdinhoud moet flexibel meegroeien */
main {
  flex: 1;
}
 
/* =========================================
   🔹 Footer styling
   ========================================= */
 
footer {
  background: #f8faf9;       /* zelfde achtergrond als je pagina */
  color: #666363;            /* zelfde tekstkleur */
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
 
  display: flex;
  justify-content: space-between; /* alles op 1 lijn */
  align-items: center;
  flex-wrap: wrap; /* breekt netjes bij kleine schermen */
 
  margin-top: auto; /* duwt footer naar beneden bij korte pagina's */
}
 
footer p {
  margin: 0;
}
 
footer nav a {
  text-decoration: none;
  color: #0066cc;
  margin: 0 8px;
}
 
footer nav a:hover {
  text-decoration: underline;
}
 
/* =========================================
   🔹 Social icons
   ========================================= */
 
.socials {
  display: flex;
  gap: 12px;
}
 
.socials img {
  width: 22px;
  height: 22px;
  transition: 0.2s;
}
 
.socials img:hover {
  filter: none;
}
 
/* =========================================
   🔹 Mobiele versie
   ========================================= */
 
@media (max-width: 600px) {
  footer {
    flex-direction: column;    /* stapelt elementen */
    text-align: center;        /* alles centreren */
    gap: 10px;                 /* ruimte ertussen */
  }
 
  footer nav {
    margin: 5px 0;
  }
 
  .socials {
    justify-content: center;
  }
}
 