/*
 * Mobile Polish CSS
 * Subtle improvements that enhance without breaking existing design
 * Version: 1.0
 */

/* ========================================
   MOBILE ONLY IMPROVEMENTS
   ======================================== */

@media (max-width: 767px) {
    
    /* Better touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Smoother scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better tap feedback */
    a:active, button:active {
        opacity: 0.7;
        transition: opacity 0.1s;
    }
    
    /* Improve spacing */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Better images */
    img {
        max-width: 100%;
        height: auto;
    }
}
