/**
 * Footer Social Links Styles
 * Styling cho các link mạng xã hội trong footer
 */

.footer-widget .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-widget .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-widget .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Individual social media colors on hover */
.footer-widget .social-links a[aria-label*="Facebook"]:hover {
    background-color: #1877f2;
    color: #fff;
}

.footer-widget .social-links a[aria-label*="Twitter"]:hover {
    background-color: #1da1f2;
    color: #fff;
}

.footer-widget .social-links a[aria-label*="YouTube"]:hover {
    background-color: #ff0000;
    color: #fff;
}

.footer-widget .social-links a[aria-label*="Telegram"]:hover {
    background-color: #0088cc;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .footer-widget .social-links {
        gap: 10px;
        margin-top: 15px;
    }
    
    .footer-widget .social-links a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}
