/* -------------------------------------------------------- */
/* footer.css – Styles du footer                             */
/* -------------------------------------------------------- */

footer {
  background-color: #111;
  color: #eee;
  text-align: center;
  padding: 20px 0; /* plus confortable que 10px */
  font-size: 1em;
}

/* Liens dans le footer – harmonisés avec les sections */
footer a {
  font-size: 1em;                
  color: #1e90ff;                
  text-decoration: underline;    
  display: inline-block;
  margin: 0 0px;                
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0066B9;                
}

/* -------------------------------------------------------- */
/* Icônes réseaux sociaux                                   */
/* -------------------------------------------------------- */

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  text-decoration: none; /* enlève le underline sur icônes */
  margin: 0 10px;
}

/* Icônes */
.footer-social img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  filter: brightness(0.9);
  transition: transform 0.2s ease, filter 0.3s ease;
}

/* Hover effet léger */
.footer-social img:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

/* 👉 AJOUT IMPORTANT : espace entre icônes et année */
footer p {
  margin: 15px 0 0;
  line-height: 1.5;
}

/* -------------------------------------------------------- */
/* Responsive – pour écrans moyens                          */
/* -------------------------------------------------------- */

@media (max-width: 768px) {
  footer {
    padding: 15px 0;
    font-size: 0.95em;
  }
}

/* -------------------------------------------------------- */
/* Responsive – pour écrans petits / téléphones             */
/* -------------------------------------------------------- */

@media (max-width: 480px) {
  footer {
    padding: 12px 0;
    font-size: 0.9em;
  }

  footer a {
    display: block;               
    margin: 5px 0;                
  }

  /* Taille icônes légèrement réduite sur mobile */
  .footer-social img {
    width: 22px;
    height: 22px;
  }
}