/* remerciements.css (section Footer mise à jour) */

footer {
  background: #141429;
  padding: 25px 0 10px;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.4);
  color: #bbb;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 15px;
}

/* Logo dans le footer */
.logo-footer img {
  height: 70px;
  object-fit: contain;
  vertical-align: middle;
}

/* Navigation du footer */
.nav-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  flex: 1;
  margin: 0 20px;
}
.nav-footer a {
  color: #bbb;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-footer a:hover {
  color: #fff;
}

/* Section des icônes sociales, alignée à droite */
.social-footer {
  display: flex;
  gap: 15px;
  align-items: center;
}
.social-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-footer img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.social-footer a:hover img {
  filter: brightness(0) invert(0.8);
}

/* Texte de droits et crédits centré sous le footer */
.footer-credits {
  margin-top: 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .nav-footer {
    margin: 10px 0;
    justify-content: center;
  }
  .social-footer {
    margin-top: 10px;
  }
}


/* Sol de neige fixé en bas de l'écran quand la neige est active */
body.snow-active::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: -50px;
  height: 70px; /* ajuste selon ton image */
  pointer-events: none;      /* pour ne pas bloquer les clics sur le guide, etc. */
  z-index: 5;                /* en dessous du canvas (#snow-canvas) mais au-dessus du fond */

  background-image: url("/uploads/snow-header.png");
  background-repeat: repeat-x;
  background-size: auto 70px; /* même hauteur que `height` */
}
