/* Styles pour les boutons de partage sur les réseaux sociaux */

.social-share {
  margin: 15px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.social-share-title {
  margin-right: 10px;
  font-weight: 500;
  color: #555;
  font-size: 0.9rem;
}

.social-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.share-btn:active {
  transform: translateY(0);
}

.share-btn-facebook {
  background-color: #3b5998;
}

.share-btn-twitter {
  background-color: #1da1f2;
}

.share-btn-linkedin {
  background-color: #0077b5;
}

.share-btn-whatsapp {
  background-color: #25d366;
}

.share-btn-telegram {
  background-color: #0088cc;
}

.share-btn-email {
  background-color: #7F7F7F;
}

.share-btn i {
  font-size: 16px;
}

.share-btn-text {
  display: none;
  margin-left: 8px;
  font-size: 14px;
}

/* Boutons avec texte */
.share-btn-with-text {
  width: auto;
  border-radius: 18px;
  padding: 0 15px;
}

.share-btn-with-text .share-btn-text {
  display: inline-block;
}

/* Style pour les boutons de partage inline */
.social-share-inline {
  display: inline-flex;
  margin: 0 0 0 10px;
}

.social-share-inline .share-btn {
  width: 32px;
  height: 32px;
  margin-right: 5px;
}

.social-share-inline .share-btn i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 576px) {
  .social-share {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .social-share-title {
    margin-bottom: 8px;
  }
}

/* Animation au survol */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.share-btn:hover {
  animation: pulse 0.5s ease-in-out;
}
