/* Share Button Hover Effects */
.share-btn {
    position: relative;
    overflow: hidden;
}

.share-btn::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;
}

.share-btn:hover::before {
    width: 300px;
    height: 300px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.share-btn:active {
    transform: translateY(0);
}

.share-btn-twitter:hover {
    background: linear-gradient(135deg, #2db3f5, #1DA1F2);
}

.share-btn-whatsapp:hover {
    background: linear-gradient(135deg, #34e077, #25D366);
}

.share-btn-linkedin:hover {
    background: linear-gradient(135deg, #0e8dd6, #0077B5);
}

.share-btn-copy:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(0,255,136,0.3);
}

/* Mobile Responsiveness for Share Buttons */
@media (max-width: 768px) {
    .share-buttons {
        flex-direction: column !important;
    }
    
    .share-btn {
        min-width: 100% !important;
    }
}
