/* stylemobile.css - Kompletní mobilní styly pro ECOFIL_MALI (telefony: 320px - 768px) */
/* Mobile-first optimalizace pro tvůj services page - hamburger, gridy, touch-friendly */

* {
    box-sizing: border-box;
}

/* ROOT proměnné pro mobile */
:root {
    --spacing-xs: 0.75rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --radius-mobile: 12px;
}

/* HERO SECTION */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 8rem var(--spacing-xs) 4rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* SERVICES GRID - Stack na mobile */
@media (max-width: 768px) {
    .services {
        padding: 3rem var(--spacing-xs);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }

    .service-icon i {
        font-size: 1.5rem;
        transform: scale(1.8);
    }

    .service-title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .service-text {
        text-align: center;
        font-size: 0.95rem;
    }
}

/* CTA sekce */
@media (max-width: 768px) {
    .container > div[style*="flex-direction: column"] {
        padding: var(--spacing-md) var(--spacing-xs);
        gap: 1rem;
    }

    .container > div[style*="flex-direction: column"] h2 {
        font-size: 1.4rem;
        text-align: center;
    }

    .produkty-all {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* FOOTER - Stack sloupce */
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem var(--spacing-xs);
    }

    .footer-column-title {
        font-size: 1.1rem;
    }

    .footer-links {
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .footer-links span,
    .footer-links a {
        padding: 0.25rem 0;
    }

    .footer-bottom {
        padding: 1.5rem var(--spacing-xs);
        font-size: 0.85rem;
    }
}