.social-icon {
    color: var(--text-color);
    margin: 0 15px;
    transition: all 0.3s ease;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(138, 111, 223, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.github:hover {
    color: #fff;
}

.linkedin:hover {
    color: #0077b5;
}

.email:hover {
    color: #EA4335;
}

@media (max-width: 768px) {
    .social-links {
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
} 