/* Social Media Icons Styles */
.nexus-social-media-icons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.nexus-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(114, 24, 147, 0.1); /* nexus-purple with transparency */
    color: #721893; /* nexus-purple */
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nexus-social-icon:hover {
    background-color: #721893; /* nexus-purple */
    color: #ffffff;
    transform: translateY(-3px);
}

/* Header specific styling */
.nexus-header-social {
    margin-left: auto;
}

/* Footer specific styling */
.nexus-footer-social {
    justify-content: center;
    margin-top: 1.5rem;
}

/* Mobile specific styling */
@media (max-width: 768px) {
    .nexus-social-media-icons {
        gap: 0.75rem;
    }
    
    .nexus-social-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
}
