/* ----------------------   FOOTER CSS   ------------------------- */

/* CSS intégré pour la démo */

.footer {
  background: #212529;
  color: #ecf0f1;
  padding: 2rem 0;
  margin-top: 10px;
  position: sticky;
  border-radius: 15px;
  /* Le reste en bas */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #299ac6;
  padding-left: 5px;
}

.footer-col .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #ecf0f1;
  transition: 0.3s;
}

.footer-col .social-links a:hover {
  background: #071f37;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #1a252f;
  margin-top: 30px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ----------------------   FOOTER CSS   ------------------------- */
