/* Social Links Fixed */
.social-links-fixed {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  transform: translateX(-5px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--secondary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-link i {
  font-size: 1.2rem;
}

/* Animation pour le scroll */
.social-links-fixed.hidden {
  transform: translateY(-50%) translateX(100px);
  opacity: 0;
}

/* Media Queries */
@media (max-width: 768px) {
  .social-links-fixed {
    right: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link i {
    font-size: 1rem;
  }
}
