/* VisionAQ Prints - Mobile Footer Styles */

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 30px 0 40px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #007aff;
    background: #f8f9fa;
}

.footer-link:active {
    transform: scale(0.98);
}

.footer-copyright {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
    text-align: center;
}

/* Mobile specific adjustments */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
        gap: 15px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-link {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .footer-logo-img {
        height: 28px;
        max-width: 140px;
    }
    
    .footer-copyright {
        font-size: 11px;
    }
}

/* Touch improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .footer-link:hover {
        color: #666;
        background: transparent;
    }
    
    .footer-link:active {
        color: #007aff;
        background: #f8f9fa;
    }
} 