/* Mobile Social Media Icons */
.mobile-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-icons a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.mobile-social-icons svg {
    width: 24px;
    height: 24px;
}

/* Animation for social icons when mobile menu opens */
#mobile-nav.active .mobile-social-icons {
    animation: fadeInUp 0.5s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}