.social-links-strip {
    background-color: var(--color-accent);
    /* Site Accent Color */
    padding: 40px 0;
    width: 100%;
}

.social-icons-container {
    display: flex;
    justify-content: space-evenly;
    /* Distribute icons evenly */
    align-items: center;
    gap: 20px;
    /* Fallback gap */
    flex-wrap: wrap;
    max-width: 1200px;
    /* Ensure it doesn't stretch too wide on huge screens */
    margin: 0 auto;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy effect */
    padding: 15px;
    border-radius: 50%;
}

/* Make standard SVG images white */
.social-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    /* Remove scale from container */
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon:hover img {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .social-icons-container {
        justify-content: center;
        gap: 30px;
    }

    .social-icon img {
        width: 30px;
        height: 30px;
    }
}