.main-footer {
  color: #fff;
  padding: 10px;
  text-align: center;
  margin-top: 20px;

  background-color: rgba(250, 249, 249, 0.5);
  border-radius: 10px;
}

/* Liens principaux */
.footer-links {
  margin-bottom: 10px;
  font-size: larger;
  font-weight: bold;
}

.footer-links a {
  text-decoration: none;
  font-size: larger;
  color: #0c0c0c;
  margin-right: 20px;
}

.footer-links a:hover {
  color: rgb(250, 238, 67);
  text-shadow:
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535,
    0 0 1px #dd3535;
}

/* Réseaux sociaux */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.icon {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.icon:hover {
  transform: scale(1.1);
}

/* Copyright */
.footer-copy {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-links {
    font-size: medium;
  }

  .footer-links a {
    display: inline-block;
    margin: 5px;
  }
}
