/* ==========================================
   RESPONSIVE CSS
   FILE: responsive.css
========================================== */


/* LARGE LAPTOP */
@media(max-width: 1200px){

    .hero-content h1,
    .about-content h2,
    .business-content h2,
    .cta-container h2{
        font-size: 46px;
    }

}


/* TABLET */
@media(max-width: 992px){

    section{
        padding: 80px 0;
    }

    .container{
        width: 92%;
    }


    /* NAVBAR */
    .navbar{
        display: none;
    }

    .mobile-menu-btn{
        display: block;
        font-size: 32px;
        cursor: pointer;
        color: #222;
    }

    .header-action{
        display: none;
    }


    /* HERO */
    .hero-container{
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons{
        justify-content: center;
    }

    .hero-content h1{
        font-size: 48px;
    }

    .hero-image{
        margin-top: 50px;
    }


    /* ABOUT */
    .about-container{
        grid-template-columns: 1fr;
    }

    .about-content{
        text-align: center;
    }


    /* BUSINESS */
    .business-container{
        grid-template-columns: 1fr;
    }

    .business-content{
        text-align: center;
    }


    /* FEATURES */
    .features-grid{
        grid-template-columns: repeat(2, 1fr);
    }


    /* PRODUCTS */
    .products-grid{
        grid-template-columns: repeat(2, 1fr);
    }


    /* BENEFITS */
    .benefits-grid{
        grid-template-columns: repeat(2, 1fr);
    }


    /* TESTIMONIAL */
    .testimonial-grid{
        grid-template-columns: 1fr;
    }


    /* FOOTER */
    .footer-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */
@media(max-width: 768px){

    section{
        padding: 70px 0;
    }

    .topbar{
        display: none;
    }


    /* HERO */
    .hero-section{
        padding-top: 140px;
    }

    .hero-content h1{
        font-size: 38px;
        line-height: 1.3;
    }

    .hero-content p{
        font-size: 16px;
    }

    .hero-buttons{
        flex-direction: column;
        gap: 20px;
    }

    .btn-secondary{
        margin-left: 0;
    }


    /* TITLES */
    .section-title h2,
    .about-content h2,
    .business-content h2,
    .cta-container h2{
        font-size: 34px;
    }


    /* FEATURES */
    .features-grid{
        grid-template-columns: 1fr;
    }


    /* PRODUCTS */
    .products-grid{
        grid-template-columns: 1fr;
    }


    /* BENEFITS */
    .benefits-grid{
        grid-template-columns: 1fr;
    }


    /* FOOTER */
    .footer-grid{
        grid-template-columns: 1fr;
    }

    .footer-bottom-container{
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }


    /* NEWSLETTER */
    .newsletter-container{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .newsletter-form form{
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input{
        width: 100%;
    }

}


/* SMALL MOBILE */
@media(max-width: 576px){

    .hero-content h1{
        font-size: 32px;
    }

    .section-title h2,
    .about-content h2,
    .business-content h2,
    .cta-container h2{
        font-size: 28px;
    }

    .feature-card,
    .product-card,
    .benefit-box,
    .testimonial-card{
        padding: 30px 20px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-white{
        width: 100%;
        text-align: center;
    }

}

/* ==========================================
   TRUSTED ORGANIC WELLNESS SOLUTION
   MOBILE FIX
========================================== */

@media(max-width: 768px){

    .features-section{
        padding: 60px 0;
    }

    .features-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card{
        padding: 30px 22px;
        border-radius: 20px;
        text-align: center;
    }

    .feature-card img{
        width: 65px;
        margin-bottom: 20px;
    }

    .feature-card h3{
        font-size: 22px;
        margin-bottom: 12px;
    }

    .feature-card p{
        font-size: 15px;
        line-height: 1.7;
    }

    .section-title{
        margin-bottom: 40px;
    }

    .section-title span{
        font-size: 13px;
        letter-spacing: 1px;
    }

    .section-title h2{
        font-size: 30px;
        line-height: 1.3;
        padding: 0 10px;
    }

}