/* 
 * NewTech Mobile Header Fix
 * This file ensures the slogan remains visible on mobile devices
 */

/* Base styles reinforcement */
.logo-text .slogan {
    display: block;
    font-size: 12px;
    color: #666;
    line-height: 1.2;
    margin-top: 2px;
}

/* Mobile adjustments with !important to override any conflicting styles */
@media (max-width: 768px) {
    .logo a {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
    }
    
    .logo img {
        margin-right: 0 !important;
    }
    
    .logo-text {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .logo-text h1 {
        margin-bottom: 0 !important;
        line-height: 1.2 !important;
    }
    
    .logo-text .slogan {
        display: block !important;
        font-size: 10px !important;
        line-height: 1.1 !important;
        margin-top: 2px !important;
    }
}

@media (max-width: 576px) {
    .logo-text .slogan {
        font-size: 9px !important;
    }
}

@media (max-width: 480px) {
    .logo-text .slogan {
        font-size: 8px !important;
    }
} 