/* 
 * SMPS-Sarl - Responsive Stylesheet
 * Contains: Mobile, Tablet, and Desktop Adjustments
 */

/* --- TABLET AND SMALLER (Max 992px) --- */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        background-color: var(--white);
        flex-direction: column;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
        padding-top: var(--spacing-lg);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: var(--spacing-md) 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MOBILE (Max 768px) --- */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-btn {
        display: none;
        /* Hide top CTA on mobile, rely on in-menu link if added or hero CTA */
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* --- SMALL MOBILE (Max 480px) --- */
@media (max-width: 480px) {
    .navbar {
        height: 60px;
    }

    .hero {
        padding-top: 60px;
    }

    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }
}