/* ============================================
   MINIMAL MOBILE CSS - Logo Button Only
   For screens smaller than 768px (tablets & phones)
   Only affects logo button behavior to make it consistent
   ============================================ */

@media (max-width: 768px) {
    
    /* ============================================
       LOGO BUTTON - Make it clickable like menu button
       ============================================ */
    .navbar .logo {
        cursor: pointer;
        transition: opacity 0.3s ease;
        pointer-events: auto !important;
        position: relative;
        z-index: 1003;
    }
    
    .logo:hover {
        opacity: 0.8;
    }
    
    .logo:active {
        opacity: 0.6;
    }
    
    /* Ensure logo link works */
    .logo a {
        pointer-events: auto !important;
    }
    
    /* ============================================
       EXISTING HAMBURGER MENU FUNCTIONALITY
       (Kept from original mobile.css for menu to work)
       ============================================ */
    
    /* Hamburger menu button - touch optimized */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        cursor: pointer;
        background: white;
        border-radius: 8px;
        border: 2px solid #333;
        padding: 8px;
    }
    
    .hamburger .bar {
        width: 22px;
        height: 2px;
        margin: 3px 0;
        background: #333;
        border-radius: 2px;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Mobile menu - slides from right */
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        transition: right 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        will-change: transform;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        display: block;
        padding: 16px 24px;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
        min-height: 44px;
    }
    
    /* ============================================
       HIDE USE CASES CARDS ON MOBILE
       ============================================ */
    .use-cases {
        display: none;
    }
    
    /* ============================================
       FOOTER LOGO CENTERING ON MOBILE
       ============================================ */
    .footer-brand {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .footer-brand .logo {
        display: block !important;
        margin: 0 auto 16px auto !important;
        text-align: center !important;
    }
    
    .footer-brand .logo-img {
        display: block !important;
        margin: 0 auto !important;
    }
    
    .footer-brand p {
        text-align: center !important;
        margin: 0 auto !important;
    }
}
