/* Mobile Fix CSS */
@media screen and (max-width: 768px) {
    /* Ensure proper mobile viewport */
    html {
        font-size: 100% !important;
        -webkit-text-size-adjust: 100% !important;
        -ms-text-size-adjust: 100% !important;
    }
    
    body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Fix container widths */
    .site, .wrap {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Fix images */
    img, video, iframe {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix content width */
    .site-content, .content-area {
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Fix navigation */
    .main-navigation {
        display: block !important;
    }
    
    /* Facebook feed mobile fixes */
    .cff-item {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    /* Text should be readable */
    body, p, div {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
}

/* Tablet specific fixes */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .site-content {
        padding: 0 20px !important;
    }
}
