/* ═══════════════════════════════════════════════════════
   STICKY SOCIAL SIDEBAR — Colorful Vertical Stack
   Left Middle, Desktop Only
   ═══════════════════════════════════════════════════════ */

.sticky-socials {
    position: fixed;
    Left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: none;
}

/* Desktop: Show sticky socials */
@media (min-width: 1280px) {
    .sticky-socials {
        display: flex;
        flex-direction: column;
    }
}

/* Panel: Container for social links */
.sticky-socials__panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
}

/* Only show Facebook by default */
.sticky-socials__panel .sticky-social-link:nth-child(n+2) {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

/* Show all on hover */
.sticky-socials:hover .sticky-social-link:nth-child(n+2) {
    display: flex;
    opacity: 1;
}

/* Social links - Colorful boxes */
.sticky-social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    flex-shrink: 0;
    cursor: pointer;
}

/* Facebook - Blue */
.sticky-social-link[data-social="facebook"],
.sticky-social-link:nth-child(1) {
    background: #3B5998;
}

.sticky-social-link[data-social="facebook"]:hover,
.sticky-social-link:nth-child(1):hover {
    background: #2D4373;
    transform: scale(1.1);
}

/* LinkedIn - Light Blue */
.sticky-social-link[data-social="linkedin"],
.sticky-social-link:nth-child(2) {
    background: #0077B5;
}

.sticky-social-link[data-social="linkedin"]:hover,
.sticky-social-link:nth-child(2):hover {
    background: #005885;
    transform: scale(1.1);
}

/* Instagram - Purple/Pink */
.sticky-social-link[data-social="instagram"],
.sticky-social-link:nth-child(3) {
    background: #E1306C;
}

.sticky-social-link[data-social="instagram"]:hover,
.sticky-social-link:nth-child(3):hover {
    background: #C13359;
    transform: scale(1.1);
}

/* Twitter - Light Blue */
.sticky-social-link[data-social="twitter"],
.sticky-social-link:nth-child(4) {
    background: #1DA1F2;
}

.sticky-social-link[data-social="twitter"]:hover,
.sticky-social-link:nth-child(4):hover {
    background: #1A8CD8;
    transform: scale(1.1);
}

/* SVG styling */
.sticky-social-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: currentColor;
    stroke-width: 0;
}

/* Responsive: Hide on tablets and mobile */
@media (max-width: 1279px) {
    .sticky-socials {
        display: none !important;
    }
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .sticky-social-link {
        transition: none !important;
    }

    .sticky-socials:hover .sticky-social-link:nth-child(n+2) {
        display: flex;
    }
}