/**
 * Phone CTA Massive Calls Styling
 * Provides styles for the phone call-to-action button in the menu
 */

/* Phone CTA Button in Menu */
.mentora-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #0066cc;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mentora-phone-cta:hover {
    background-color: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.mentora-phone-cta:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 102, 204, 0.3);
}

/* Phone Icon */
.mentora-phone-cta::before {
    content: "📞";
    font-size: 1.2em;
    line-height: 1;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .mentora-phone-cta {
        padding: 6px 12px;
        font-size: 0.9em;
    }
}

/* Menu integration */
#site-navigation .mentora-phone-cta,
.main-navigation .mentora-phone-cta {
    margin-left: 12px;
}

/* Hide phone number on very small screens, show icon only */
@media screen and (max-width: 480px) {
    .mentora-phone-cta .phone-number-text {
        display: none;
    }
    
    .mentora-phone-cta::before {
        font-size: 1.4em;
    }
}