/* Mobile Footer Optimization */

/* Mobile version (768px and below): Simplify footer */
@media (max-width: 768px) {
    /* Hide language links on mobile */
    .footer-links a:not([href^="mailto"]) {
        display: none;
    }
    
    /* Keep email link but style it simply */
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
    }
    
    .footer-links a[href^="mailto"] {
        display: block;
        text-align: center;
        width: 100%;
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    /* Center copyright */
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Extra small mobile (480px and below) */
@media (max-width: 480px) {
    .footer-links a[href^="mailto"] {
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}
