/* floating-btn.css */

/* Container for the entire social group */
.socials-group {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  z-index: 10000;
}

/* Toggle button styling */
.socials-toggle-btn {
  background-color: var(--accent, #E14D25);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.socials-toggle-btn:hover {
  transform: scale(1.1);
}

/* Container for individual social buttons */
.social-floating-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hidden state using opacity and transform for smooth animation */
.social-floating-container.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Individual social button styles */
.social-floating-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent, #E14D25);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-floating-btn:hover {
  transform: scale(1.1);
}

/* Specific button colors */
.social-floating-btn.facebook {
  background-color: #3b5998;
}

.social-floating-btn.tiktok {
  background-color: #000;
}
