/* Social Icons / Footer */
.social-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  padding: 16px 0 32px;
  animation: fadeInUp 1.4s ease-out 1.6s both;
  position: relative;
  z-index: 1;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link:hover svg {
  fill: var(--main-accent);
}

.social-link svg {
  width: 100%;
  height: 100%;
  fill: var(--main-white);
}

@media (max-width: 600px) {
  .social-links {
    gap: 24px;
  }
}
