/* Social Media Icons - Global Styles */
.social-float {
  display: none; /* Hidden by default on all devices */
}

/* Show on desktop */
@media (min-width: 992px) {
  .social-float {
    display: flex;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
  }
  
  .social-float__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary); /* Forest Green */
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-float__link:hover {
    background: var(--primary-hover); /* Golden Amber */
    transform: translateY(-3px);
  }
}

/* Ensure icons are hidden on mobile */
@media (max-width: 991px) {
  .social-float {
    display: none !important;
  }
}
