

/* ===== Footer Basic ===== */

.footer-basic {
  padding: 32px 0 24px;
  background: #ffffffd5;      /* ⬅️ back to original white */
  color: #4b4c4d;           /* ⬅️ back to original grey text */
  flex-shrink: 0;
  margin-top: auto;
  border-top: none;
}

.footer-basic footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Icônes sociales */
.footer-basic .social {
  text-align: center;
  padding-bottom: 20px;
}

.footer-basic .social > a {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 6px;
  color: inherit;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  background: none;
}

/* 🔥 IMPORTANT : enlever les carrés violets sur les .icon d’Ionicons */
.footer-basic .social .icon {
  background: none;
  box-shadow: none;
  width: auto;
  height: auto;
  line-height: inherit;
  border-radius: 0;
}

/* Hover */
.footer-basic .social > a:hover {
  opacity: 1;
  transform: translateY(-1px);
  border-color: #aaa;
}

/* Liens du footer */
.footer-basic ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px;
}

.footer-basic li {
  display: inline-block;
  padding: 0 10px;
}

.footer-basic ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer-basic ul a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Copyright */
.footer-basic .copyright {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 640px) {
  .footer-basic footer {
    padding: 0 12px;
  }

  .footer-basic ul {
    font-size: 13px;
  }

  .footer-basic li {
    padding: 0 6px;
  }
}
