/* Social icons */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.social-links a:hover {
  background-color: rgba(255, 204, 128, 0.25);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.social-links a img {
  width: 24px;
  height: 24px;
  transition: filter 0.25s ease;
}

.social-links a:hover img {
  filter: brightness(1.15) drop-shadow(0 0 4px rgba(255, 204, 128, 0.6));
}
