/* =============================================
   🚨 QUANTUM LOGO EMERGENCY RESTORE
   Correct logo paths - bring back the image!
   ============================================= */

/* 📱 MOBILE LOGO CIRCLE - CORRECT PATHS */
@media (max-width: 1023px) {
    .logo-container-bg {
        /* CORRECT PATHS to actual logo files */
        background-image: 
            url('../images/logo-GolfinThaï.svg'),
            url('../images/logo-golfinthai.jpg') !important;
        
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        
        /* Keep perfect sizing */
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        z-index: 1001 !important;
        position: relative !important;
        
        /* Beautiful fallback if images don't load */
        background-color: #059669 !important;
        border: 2px solid #047857 !important;
        box-shadow: 0 2px 8px rgba(45, 212, 191, 0.15) !important;
        transition: all 0.3s ease !important;
    }
    
    /* 🚫 ENSURE NO UGLY TEXT FALLBACK */
    .logo-container-bg::after {
        content: '' !important;
        display: none !important;
    }
    
    /* ✨ BEAUTIFUL GRADIENT FALLBACK if image fails */
    .logo-container-bg::before {
        content: '' !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%) !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: -1 !important;
    }
}

/* 🔥 LOGO RESTORATION SUCCESS:
   ✅ Correct paths to actual logo files
   ✅ Multiple format support (SVG + JPG)
   ✅ Beautiful gradient fallback (no ugly "GT")
   ✅ Perfect 44px size maintained
   ✅ All positioning and effects preserved
   
   RESULT: Logo image should appear! 🎯
*/