/* Social Links Section */
.social-links {
    width: 100vw;
    padding: 50px 0;
    background-color: #FFFADD;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 6;
    margin-top: -1px;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.social-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    transform: translateZ(0);
}

.social-icon {
    color: #1b3241;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    transform: translateZ(0);
}

.social-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.5px;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Hover Effects */
.social-icon:hover {
    color: #CE155E;
    transform: translateY(-3px);
}

.social-icon:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(206, 21, 94, 0.3));
}

/* Performance Optimizations */
.social-links * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .social-links {
        padding: 30px 0;
    }

    .social-container {
        gap: 20px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}