/* ==========================================================================
   FOOTER - THEWORLDES (Figma Style)
   ========================================================================== */
.footer {
  background-color: var(--bg-secondary) !important;
  border-top: 1px solid var(--border-color) !important;
}

.footer-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-accent);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-speed);
  font-size: 1.25rem;
}

.footer-link:hover {
  background: linear-gradient(135deg, var(--color-sky), var(--color-cosmic));
  color: white !important;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.footer .small {
  color: var(--text-secondary);
}

/* Style pour les petits liens du bas de footer */
.footer-text-hover {
  transition: color var(--transition-speed);
}
.footer-text-hover:hover {
  color: var(--color-sky) !important;
}