/* =============================================
   TEXT-BASED LOGO STYLING
   Professional OpptyWave AI branding
   ============================================= */

/* Header Text Logo */
.text-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-logo .ai-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Footer Text Logo - White version */
.footer-text-logo {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
    font-size: 1.25rem;
}

.footer-text-logo .ai-text {
    color: var(--brand-orange) !important;
    background: none !important;
    -webkit-text-fill-color: var(--brand-orange) !important;
}

/* Hover effects */
.text-logo:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .text-logo {
        font-size: 1.25rem;
    }
    
    .footer-text-logo {
        font-size: 1.1rem;
    }
}

/* Ensure text logos are always visible */
html body .header .text-logo,
html body .footer .text-logo {
    opacity: 1 !important;
    display: inline-block !important;
    visibility: visible !important;
}