/* ==========================================
   SOCIAL BUTTONS & PANELS
   ========================================== */

/* Social buttons (visible partout) */
.hero-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
  width: 100%;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  background: rgba(138, 43, 226, 0.2);
  color: rgb(238, 168, 255);
  border: 2px solid rgb(238, 168, 255);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(138, 43, 226, 0.5);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
}

.social-btn svg {
  width: 28px;
  height: 28px;
}

/* Panel buttons (cachés par défaut) */
.social-panel-buttons {
  display: none;
}
