/**
 * Mobile Hero Fix
 * Keep SAME design as desktop, just fix visibility issues
 */

@media (max-width: 991px) {
    /* Keep the hero looking like desktop, just fix spacing */
    .iya-hero {
        min-height: 100vh !important;
        padding-top: 80px !important;
    }
    
    /* KEEP all background elements visible - same as desktop */
    .iya-hero .hero-bg-layers,
    .iya-hero .gradient-mesh,
    .iya-hero #heroCanvas,
    .iya-hero .hero-glow,
    .iya-hero .hero-glow-1,
    .iya-hero .hero-glow-2,
    .iya-hero .hero-glow-3 {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Fix text visibility - keep same colors as desktop */
    .iya-hero .hero-badge {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .iya-hero .hero-title,
    .iya-hero #leading-title {
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .iya-hero .hero-subtitle {
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 1rem !important;
    }
    
    /* Fix buttons - keep same style as desktop */
    .iya-hero .hero-cta {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .iya-hero .btn-hero-primary,
    .iya-hero .btn-hero-secondary {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Fix the row height */
    .iya-hero .row.min-vh-80 {
        min-height: 80vh !important;
    }
    
    /* Ensure canvas is visible */
    #heroCanvas {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Center the badge and bigger button */
@media (max-width: 991px) {
    /* Center the hero badge */
    .iya-hero .hero-badge {
        display: flex !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        width: fit-content !important;
    }
    
    .iya-hero .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Bigger Book Appointment button */
    .iya-hero .btn-hero-primary {
        padding: 16px 40px !important;
        font-size: 1.1rem !important;
        min-width: 250px !important;
    }
}
