/* FOOTER */
.main-footer {
  width: 100%;
  background: #965FD4;
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
  box-sizing: border-box;  /* Zorgt ervoor dat padding en marges niet de breedte overschrijden */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%; /* Zorg ervoor dat de container de volledige breedte van de pagina inneemt */
}

.footer-logo img {
  height: 100px;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%; /* Zorgt ervoor dat de footer links de volledige breedte beslaat */
}

.footer-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
}

.footer-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: #90FF40;
  box-shadow: 0 0 5px #90FF40, 0 0 10px #90FF40;
  transition: width 0.3s ease-in-out;
}

.footer-links li a:hover::after {
  width: 100%;
}

.footer-copy {
  font-size: 14px;
  color: #e2d6f7;
  margin-top: 10px;
  text-align: center; /* Zorgt ervoor dat de copyright tekst gecentreerd is */
}


/* SOCIAL ICONEN */
.page-wrapper {
  background-color: #965FD4; /* Achtergrondkleur voor de hele pagina */
  height: 100%;  /* Zorgt ervoor dat de pagina de volledige hoogte heeft */
  display: flex; /* Flexbox om alles binnen de pagina te centreren */
  flex-direction: column;  /* Verticaal gestapeld */
  justify-content: flex-start;  /* Zorgt ervoor dat de inhoud niet naar beneden verschuift */
  align-items: center;        /* Horizontaal centreren van de inhoud */
}

.social-container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;  /* Ruimte tussen de social iconen en de footer */
  justify-content: center;  /* Zorg ervoor dat de iconen goed gecentreerd zijn */
}

.social-icon {
  font-size: 30px;
  color: #fff;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 0 10px #fff;
}

.social-icon:hover {
  transform: scale(1.2);
  color: #000;
}

.instagram:hover {
  background-color: #96FF41;
  box-shadow: 0 0 30px #96FF41, 0 0 30px #96FF41;
}

.tiktok:hover {
  background-color: #96FF41;
  box-shadow: 0 0 30px #96FF41, 0 0 30px #96FF41;
}
	  
	  .youtube:hover {
  background-color: #96FF41;
  box-shadow: 0 0 30px #96FF41, 0 0 30px #96FF41;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .social-container {
    gap: 15px;  /* Kleinere ruimte tussen de iconen */
  }

  .social-icon {
    font-size: 24px;
    width: 50px;  /* Kleinere iconen */
    height: 50px;
  }
}
