/* Social Media Icons in Footer */
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.2rem;
}

.footer-social p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons-footer {
    display: flex;
    gap: 15px;
}

.social-icons-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons-footer a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* LinkedIn */
.social-icons-footer a:nth-child(1):hover {
    background-color: #0077B5;
}

/* GitHub */
.social-icons-footer a:nth-child(2):hover {
    background-color: #333;
}

/* Twitter */
.social-icons-footer a:nth-child(3):hover {
    background-color: #1DA1F2;
}

/* Instagram */
.social-icons-footer a:nth-child(4):hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

/* Facebook */
.social-icons-footer a:nth-child(5):hover {
    background-color: #4267B2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-icons-footer {
        justify-content: center;
    }
    
    .footer-social h3, .footer-social p {
        text-align: center;
    }
}
