.social-sites {
  margin: 2rem 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.social-item {
  margin: 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
}

.social-link svg {
  flex-shrink: 0;
}

.social-link span {
  font-size: 0.9rem;
}

/* Platform-specific colors */
.social-link.facebook {
  background-color: #1877F2;
  color: white;
}
.social-link.facebook:hover {
  background-color: #166fe5;
  color: white;
}

.social-link.twitter {
  background-color: #1DA1F2;
  color: white;
}
.social-link.twitter:hover {
  background-color: #1a94da;
  color: white;
}

.social-link.linkedin {
  background-color: #0A66C2;
  color: white;
}
.social-link.linkedin:hover {
  background-color: #095bb0;
  color: white;
}

.social-link.youtube {
  background-color: #FF0000;
  color: white;
}
.social-link.youtube:hover {
  background-color: #e60000;
  color: white;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: white;
}
.social-link.instagram:hover {
  background: linear-gradient(45deg, #e6883c 0%,#d55a35 25%,#c5203c 50%,#b51c5f 75%,#a51581 100%);
  color: white;
}

.social-link.pinterest {
  background-color: #BD081C;
  color: white;
}
.social-link.pinterest:hover {
  background-color: #a70719;
  color: white;
}

.social-link.tiktok {
  background-color: #000000;
  color: white;
}
.social-link.tiktok:hover {
  background-color: #333333;
  color: white;
}

.social-link svg path {
  fill: currentColor;
}

@media (max-width: 768px) {
  .social-links {
    flex-direction: column;
  }
  
  .social-link {
    justify-content: center;
  }
}