/* social.css */
.social-links {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 1000;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.15) translateY(-3px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-links img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.social-links a:hover img {
    filter: brightness(1);
}

/* Make sure it adapts nicely on smaller screens */
@media (max-width: 768px) {
    .social-links {
        bottom: 20px;
        right: 20px;
        gap: 12px;
        flex-direction: row;
        /* Horizontal on mobile could be better, or keep vertical */
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links img {
        width: 20px;
        height: 20px;
    }
}