/* LINKS */
.footer-link {
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #ffd166;
  transform: translateX(4px);
}

/* DONATE LINK */
.donate-link {
  color: #ffd166;
  font-weight: 500;
}

/* SOCIAL ICON */
.social-icon {
  width: 22px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
  opacity: 1;
  filter: drop-shadow(0 0 6px #ffd166);
}

/* LEGAL LINKS */
.legal-link {
  position: relative;
  transition: 0.3s;
}

.legal-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #ffd166;
  transition: 0.3s;
}

.legal-link:hover {
  color: #ffd166;
}

.legal-link:hover::after {
  width: 100%;
}

/* SUBTLE FADE-IN */
.footer {
  opacity: 0;
  transform: translateY(30px);
}