/* Follow page specific styles */
.follow-body {
  background-color: white;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* Font family is inherited from default.css */
}

.follow-me-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.social-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
  text-decoration: none;
  transition: 
    transform 1.5s cubic-bezier(0.25, 0.1, 0.25, 1), 
    box-shadow 0.3s ease, 
    opacity 1.5s ease;
  opacity: 0;
  transform: translateX(100px) rotate(180deg);
}

.social-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.social-icon.animate {
  opacity: 1;
  transform: translateX(0) rotate(0);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .social-icons {
    flex-direction: column;
    gap: 20px;
  }
  
  .social-icon {
    width: 60px;
    height: 60px;
  }
  
  .social-icon svg {
    width: 30px;
    height: 30px;
  }
}