/* =========================================
   CODINGCLAP RESPONSIVE STYLES
   ========================================= */

/* ========= LARGE TABLETS ========= */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero {
        padding-top: 8rem;
    }

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

    .section-title {
        font-size: 2.3rem;
    }
}

/* ========= TABLETS ========= */

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 5rem 0;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
    }
}

/* ========= MOBILE ========= */

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

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

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

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .nav-logo {
        height: 36px;
    }

    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.78rem;
    }
}
