/* Social media links styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Enhanced hover shadow effect when shadow is enabled */
.social-link:hover {
    box-shadow: var(--hover-shadow, none) !important;
}
