/* ========================================
   Social Sidebar - Clean Icon Design
   ======================================== */

.social-sidebar-wrapper {
    position: fixed;
    left: 20px;
    top: auto;
    bottom: 30px;
    transform: none;
    z-index: 9999;
    pointer-events: none;
}

.social-sidebar {
    display: flex;
    align-items: center;
    gap: 0;
    pointer-events: auto;
}

/* Social Navigation Links */
.social-nav {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
}

.social-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.social-link-item {
    opacity: 0;
    animation: slideInRight 0.6s ease-out forwards;
}

.social-link-item:nth-child(1) { animation-delay: 0.1s; }
.social-link-item:nth-child(2) { animation-delay: 0.2s; }
.social-link-item:nth-child(3) { animation-delay: 0.3s; }
.social-link-item:nth-child(4) { animation-delay: 0.4s; }
.social-link-item:nth-child(5) { animation-delay: 0.5s; }

.social-link-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.social-link-anchor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-link-anchor:hover::before {
    width: 300px;
    height: 300px;
}

.social-link-anchor:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.social-link-anchor i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link-anchor:hover i {
    transform: scale(1.2) rotate(10deg);
}

.social-link-anchor:active,
.social-link-anchor:focus {
    transform: none !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.social-link-anchor:focus {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* Platform-specific colors on hover */
.social-link-item[data-platform="facebook"] .social-link-anchor:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0a66c2 100%);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.social-link-item[data-platform="twitter"] .social-link-anchor:hover {
    background: linear-gradient(135deg, #1da1f2 0%, #1a94da 100%);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.5);
}

.social-link-item[data-platform="instagram"] .social-link-anchor:hover {
    background: linear-gradient(135deg, #e4405f 0%, #fd1d1d 100%);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5);
}

.social-link-item[data-platform="linkedin"] .social-link-anchor:hover {
    background: linear-gradient(135deg, #0077b5 0%, #004d8c 100%);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5);
}

.social-link-item[data-platform="youtube"] .social-link-anchor:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

/* Tooltip */
.social-tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 0.5rem;
    z-index: 1000;
}

.social-link-anchor:hover .social-tooltip {
    opacity: 1;
}

/* Animations */
@keyframes waveAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 600px 0;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-sidebar-wrapper {
        left: 20px;
        bottom: 30px;
        top: auto;
        transform: none;
    }
    
    .social-nav {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }
    
    .social-links-list {
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .social-link-anchor {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .social-sidebar-wrapper {
        display: none;
    }
}
