.nav-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Original brand colors for social icons */
.fa-linkedin {
    color: #0077b5;
}

.fa-youtube {
    color: #ff0000;
}

.fa-spotify {
    color: #1DB954;
}

@media (max-width: 768px) {
    .nav-cta {
        padding: 5px 0;
    }
    
    .social-icons {
        margin-right: 12px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        margin-right: 6px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 3px 0;
    }
    
    .social-icons {
        margin-right: 8px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        margin-right: 4px;
        font-size: 14px;
    }
}
