/* DEFAULT */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: #151515;
    font-size: 1rem;
}

li {
    text-decoration: none;
    list-style-type: none;
}

a:hover {
    color: #616161;
}

p {
    color: #616161;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #151515;
}

h1 {
    font-size: 2.9863rem;
}

h2 {
    font-size: 2.4881rem;
}

h3 {
    font-size: 1.44rem;
}

.hamburger-menu-icon {
    display: none;
}

/* --------------------------------------------------------- */

/* BUTTONS & TAGS */

.button__green {
    padding: 14px 28px;
    background-color: #C3F393;
    color: #151515;
    border-radius: 24px;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.button__green:hover {
    background-color: #CEFF9E;
}

.button__white {
    padding: 14px 28px;
    background-color: #FEFEFE;
    color: #151515;
    border-radius: 24px;
    border: 1px solid #bbbbbb;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.button__white:hover {
    background-color: #f9f9f9;
    border: 1.2px solid #a1a1a1;
}

.tag {
    padding: 0.438rem 1.438rem;
    background-color: #ECFFF0;
    color: #3D6B00;
    font-size: 0.875rem;
    border-radius: 16px;
}

/* --------------------------------------------------------- */

/* HEADER MENU */

.header {
    display: flex;
    justify-content: space-between;
    background-color: #F5FDED;
    padding: 1.125rem 5rem;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.navigation__items {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    gap: 1.5rem;
}

/* --------------------------------------------------------- */

/* MAIN */

.main__section {
    border-bottom: 24px solid #C3F393;
    padding: 6.25rem 5rem;
    background-image: url(Images/Hero\ Image.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main__box {
    border: 1px solid #e2e2e2;
    box-shadow: 8px 8px 24px rgba(196, 196, 196, 0.25);
    padding: 3rem;
    width: 50%;
    background-color: #FFFFFF;
    border-radius: 8px;
}

main h1 {
    width: 384px;
}

.main__box h1 {
    margin-bottom: 1rem;
}

.main__box p {
    margin-bottom: 1.5rem;
}

.main__box button {
    margin-bottom: 1.5rem;
}

.main__box ul {
    margin-top: 0.5rem;
}

.main__box ul li {
    margin-bottom: 0.5rem;
}

/* Center align img with li */
.main__box ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --------------------------------------------------------- */

/* HOW IT WORKS SECTION */

.how-it-works__section {
    background-color: #FAFAFA;
    padding: 6.25rem 5rem;
}

.how-it-works__title {
    margin-bottom: 1rem;
}

.how-it-works__usps {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 3rem;
}

.how-it-works__text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    margin-bottom: 4rem;
}

.cta-group-one {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.how-it-works__usps {
    margin-bottom: 3rem;
}

.how-it-works__usps > div {
    text-align: center;
    width: 230px;
}

.how-it-works__usps img {
    margin-bottom: 1rem;
}

.how-it-works__usps h3 {
    margin-bottom: 1rem;
}

/* --------------------------------------------------------- */

/* USP SECTION */

.usp__section {
    background-color: #FEFEFE;
    padding: 6.25rem 5rem;
}

.usp__section h2 {
    max-width: 400px;
    margin-bottom: 1rem;
}

.usp__section p {
    max-width: 285px;
    margin-bottom: 3rem;
}

.usp__section-row {
    display: flex;
    justify-content: space-between;
}

.usp__section-icon-text {
    display: flex;
    justify-content: space-between;
    gap: 5.75rem;
}   

.usp__section-icon-text div {
    max-width: 270px;
}

.usp__section-icon-text img {
    margin-bottom: 1rem;
}

.usp__section-icon-text h3 {
    margin-bottom: 1rem;
}

.usp__section-icon-text p {
    max-width: 230px;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.cta-group-two {
    display: flex;
    gap: 1rem;
}

/* --------------------------------------------------------- */

/* MENU ITEMS SECTION */

.menu-items__section {
    background-color: #F5FDED;
    padding: 6.25rem 5rem;
}

.menu-items__text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    margin-bottom: 4rem;
}

.menu-items__text-block h2 {
    margin-bottom: 1rem;
}

.menu-items__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-items__card {
    width: 30%;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    box-shadow: 8px 8px 24px rgba(196, 196, 196, 0.25);
}

.menu-items__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-items__card-content {
    padding: 1.5rem;
    background-color: #FFFFFF;
}

.menu-items__card-content h3 {
    margin-bottom: 0.5rem;
}

.menu-items__card-content p {
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------- */

/* REVIEW SECTION */

.review__section {
    background-color: #FEFEFE;
    padding: 6.25rem 5rem;
}

.review__row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.review__card {
    padding: 3rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    box-shadow: 8px 8px 24px rgba(196, 196, 196, 0.25);
    width: 405px;
    height: 250px;
}

.review__card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* --------------------------------------------------------- */

/* STATISTICS SECTION */

.statistics__section {
    background-color: #FAFAFA;
    padding: 6.25rem 5rem;
}

.statistics__column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.statistics__section-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.statistics__section-row h3 {
    font-size: 2.488rem;
    width: 480px;
}

.statistics__row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.statistics__row p {
    font-size: 2.074rem;
    font-weight: 700;
    color: #151515;
    margin: 0;
}

.statistics__text {
    margin-top: 0.4rem;
    font-size: 1.2rem;
}

/* --------------------------------------------------------- */

/* PRICING SECTION */

.pricing__section-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    margin-bottom: 4rem;
}

.pricing__section-text-block h2 {
    margin-bottom: 1rem;
}

.pricing__section {
    background-color: #FEFEFE;
    padding: 6.25rem 5rem;
}

.pricing__section-row {
    display: flex;
    justify-content: space-between;
}

.pricing__basic, .pricing__monthly, .pricing__weekly {
    border: 1px solid #e2e2e2;
    box-shadow: 8px 8px 24px rgba(196, 196, 196, 0.25);
    padding: 3rem;
    border-radius: 8px;
    width: 405px;
}

.pricing__icon {
    height: 40px;
    width: 40px;
}

.pricing__box ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.pricing__box h3 {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.pricing__box hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 0.1px solid #d5d5d5;
}

.pricing__checkmark {
    height: 20px;
    width: 20px;
}

.pricing__box ul {
    margin-bottom: 2rem;
}

.pricing__monthly {
    background-color: #F5FDED;
}

.price {
    font-size: 2.074rem;
    font-weight: 700;
    color: #259F00;
    margin-top: 0.5rem;
}

.pricing-line {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

/* --------------------------------------------------------- */

/* FAQ SECTION */

.faq__section {
    background-color: #FAFAFA;
    padding: 6.25rem 5rem;
}

.faq__section-description-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    margin-bottom: 3rem;
}

.faq__section-description-block h2 {
    margin-bottom: 1rem;
}

.question__box {
    display: flex;
    justify-content: space-between;
    width: 628px;
    padding: 1rem;
    border: 1px solid #e2e2e2;
    box-shadow: 8px 8px 24px rgba(196, 196, 196, 0.25);
    background-color: #f3f3f3;
    border-radius: 8px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.question__box-questions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question__box:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.question__box img {
    display: flex;
    justify-content: flex-end;
}

.question__box-group1 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* --------------------------------------------------------- */

/* CTA SECTION */

.cta__section {
    background-image: url(Images/CTA-image.webp);
    padding: 6.25rem 5rem;
    background-size: cover;
}

.cta__section p, 
.cta__section h2 {
    color: #F5F5F5;
}

.cta__section p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* --------------------------------------------------------- */

/* FOOTER */

footer {
    padding-top: 3.75rem;
    padding-bottom: 1.25rem;
    padding-left: 5rem;
    padding-right: 5rem;
    background-color: #F5FDED;
}

.footer__top-section {
    display: flex;
    justify-content: space-between;
    border-bottom: #616161 solid;
    border-width: 0.5px;
    padding-bottom: 4.5rem;
}

.footer__logo-links .logo {
    margin-bottom: 3rem;
}

.footer__social-links {
    display: flex;
    gap: .5rem;
}

.footer__top-section-right {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer__top-section-right ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.footer__top-section-contact li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer__top-section-contact li a img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer__bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
}

.footer__bottom-section-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem
}

.footer__bottom-section p, 
.footer__bottom-section a {
    font-size: 0.8rem;
}

/* --------------------------------------------------------- */

/* MEDIA QUERIES */

/* --------------------------------------------------------- */

/* HEADER */

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .header {
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        padding: 1rem;
    }

    .logo {
        margin-bottom: 0; 
    }

    .navigation {
        flex-direction: row;
        align-items: center;
        width: auto; 
        gap: 1rem;
    }

    .navigation__items {
        display: none; 
    }

    .hamburger-menu-icon {
        display: block;
    }

    .navigation .button__green {
        display: flex; 
        padding: 10px 20px; 
        font-size: 0.9rem; 
    }
}

/* --------------------------------------------------------- */

/* HERO SECTION */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {

    .main__section {
        padding: 4rem 2rem;
    }

    .main__box {
        width: 75%;
        padding: 2rem;
    }

    main h1 {
        font-size: 2.5rem;
        width: auto;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {

    .main__section {
        padding: 3rem 1rem;
    }

    .main__box {
        width: 95%;
        padding: 1.5rem;
        margin: 0 auto;
        box-shadow: none;
        border: none;
    }

    main h1 {
        font-size: 2rem;
        width: auto;
        margin-left: auto; 
        margin-right: auto;
    }

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

    .main__box ul {
        text-align: left; 
        font-size: 0.8rem; 
    }

    .main__box ul li {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
    }
}

/* --------------------------------------------------------- */

/* HOW IT WORKS SECTION */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .how-it-works__section {
        padding: 4rem 2rem;
    }

    .how-it-works__usps {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .how-it-works__usps > div {
        width: 30%;
        max-width: 280px;
    }

    .how-it-works__usps img {
        height: 70px;
        width: 70px;
    }

    .how-it-works__usps h3 {
        font-size: 1.2rem;
    }

    .how-it-works__usps p {
        font-size: 0.9rem;
    }

    .cta-group-one {
        gap: 0.8rem;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .how-it-works__section {
        padding: 2.5rem 1rem;
    }

    .how-it-works__text-block {
        margin-bottom: 1.5rem;
    }

    .how-it-works__title {
        font-size: 2rem;
    }

    .how-it-works__usps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .how-it-works__usps > div {
        width: 80%;
        max-width: 300px;
        padding: 1.5rem;
    }

    .how-it-works__usps img {
        height: 60px;
        width: 60px;
        margin-bottom: 1rem;
    }

    .how-it-works__usps h3 {
        font-size: 1.4rem;
    }

    .how-it-works__usps p {
        font-size: 1rem;
    }

    .cta-group-one {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* --------------------------------------------------------- */

/* USP SECTION */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .usp__section {
        padding: 4rem 2rem;
    }

    .usp__section-row {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .usp__section-row > div {
        width: 90%;
    }

    .usp__section-row img {
        max-width: 100%;
        margin: 0 auto;
    }

    .usp__section-text-block {
        text-align: center;
    }

    .usp__section-text-block h2 {
        max-width: none;
        font-size: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .usp__section-text-block p {
        max-width: none;
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .usp__section-icon-text {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .usp__section-icon-text div {
        max-width: 80%;
        text-align: center;
    }

    .usp__section-icon-text img {
        height: 60px;
        width: 60px;
    }

    .usp__section-icon-text h3 {
        font-size: 1.4rem;
    }

    .usp__section-icon-text p {
        font-size: 0.9rem;
    }

    .cta-group-two {
        justify-content: center;
        gap: 0.8rem;
    }

    .usp__section-row .usp__section-text-block {
        order: 2; /* Assign order 2 to the text block */
    }

    .usp__section-row > div:nth-child(2) { /* Target the div containing the image */
        order: 1; /* Assign order 1 to the image div */
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .usp__section {
        padding: 2.5rem 1rem;
        flex-direction: column-reverse;
    }

    .usp__section-row {
        flex-direction: column;
        align-items: center;
    }

    .usp__section-row > div {
        width: 100%;
    }

    .usp__section-text-block {
        text-align: center;
    }

    .usp__section-text-block h2 {
        font-size: 1.8rem;
    }

    .usp__text-block p {
        font-size: 1rem;
    }

    .usp__section-icon-text {
        flex-direction: column;
    }

    .usp__section-icon-text div {
        max-width: 90%;
        padding: 1rem;
    }

    .usp__section-icon-text img {
        height: 60px;
        width: 60px;
        margin-bottom: 0.5rem;
    }

    .usp__section-icon-text h3 {
        font-size: 1.4rem;
    }

    .usp__section-icon-text p {
        font-size: 1rem;
    }

    .cta-group-two {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .usp__section-row .usp__section-text-block {
        order: 2; /* Assign order 2 to the text block */
    }

    .usp__section-row > div:nth-child(2) { /* Target the div containing the image */
        order: 1; /* Assign order 1 to the image div */
    }
}

/* --------------------------------------------------------- */

/* MENU ITEMS SECTION */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .menu-items__section {
        padding: 4rem 2rem;
    }

    .menu-items__text-block {
        margin-bottom: 3rem;
    }

    .menu-items__text-block h2 {
        font-size: 2rem;
    }

    .menu-items__cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .menu-items__card {
        width: 48%;
        max-width: 400px;
    }

    .menu-items__card img {
        height: 180px;
    }

    .menu-items__card-content {
        padding: 1.2rem;
    }

    .menu-items__card-content h3 {
        font-size: 1.4rem;
    }

    .menu-items__card-content p {
        font-size: 0.9rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .menu-items__section {
        padding: 2.5rem 1rem;
    }

    .menu-items__text-block {
        margin-bottom: 2rem;
    }

    .menu-items__text-block h2 {
        font-size: 1.8rem;
    }

    .menu-items__cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .menu-items__card {
        width: 100%;
        max-width: none;
    }

    .menu-items__card img {
        height: 160px;
    }

    .menu-items__card-content {
        padding: 1.5rem;
    }

    .menu-items__card-content h3 {
        font-size: 1.4rem;
    }

    .menu-items__card-content p {
        font-size: 1rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.8rem;
    }
}

/* --------------------------------------------------------- */

/* REVIEWS SECTION */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .review__section {
        padding: 4rem 2rem;
    }

    .review__card {
        height: auto;
    }

}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .review__section {
        padding: 2.5rem 1rem;
    }

    .review__row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .review__card {
        width: 100%;
        max-width: none;
        padding: 2rem;
    }

}

/* --------------------------------------------------------- */

/* STATISTICS SECTION */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .statistics__section {
        padding: 4rem 2rem;
    }

}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .statistics__section {
        padding: 2.5rem 1rem;
    }

    .statistics__section-row h3 {
        font-size: 1.4rem;
        text-align: left;
        width: 300px;
        text-align: center;
    }

    .statistics__section-row {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .statistics__row img {
        height: 20px;
        width: 20px;
    }

    .statistics__row p {
        font-size: 1.5rem;
    }

    .statistics__text {
        font-size: 1rem;
    }


}

/* --------------------------------------------------------- */

/* PRICING SECTION */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .pricing__section {
        padding: 4rem 2rem;
    }

    .pricing__section-row {
        display: flex;
        flex-wrap: wrap;
        flex-direction: center;
        gap: 1.5rem;
    }

    .pricing__box {
        width: 48%;
        max-width: 400px;
    }

}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .pricing__section {
        padding: 2.5rem 1rem;
    }

    .pricing__section-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .pricing__section-text-block {
        margin-bottom: 2rem;
    }

    .pricing__box {
        width: 100%;
        max-width: none;
        padding: 2rem;
    }

    .pricing__section h2 {
        font-size: 1.8rem;
    }

    .pricing__section h3 {
        font-size: 1.4rem;
    }

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

    .price {
        font-size: 2rem !important;
    }

    .pricing__box li {
        font-size: 1rem;
    }

    hr {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}


/* --------------------------------------------------------- */

/* FAQ SECTION */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .faq__section {
        padding: 4rem 2rem;
    }
}


/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .faq__section {
        padding: 2.5rem 1rem;
    }

    .faq__section h2 {
        font-size: 1.8rem;
    }

    .question__box {
        width: 100%;
        max-width: none;
    }
}

/* --------------------------------------------------------- */

/* CTA SECTION */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .cta__section {
        padding: 4rem 2rem;
    }
}


/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .cta__section {
        padding: 2.5rem 1rem;
    }

    .cta__section h2 {
        font-size: 1.8rem;
    }

    .cta__section img {
        background-size: cover;
    };
    }

/* --------------------------------------------------------- */

/* FOOTER SECTION */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    footer {
        padding: 4rem 2rem;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    footer {
        padding: 2.5rem 1rem;
    }

    footer a,
    footer p {
        font-size: 0.8rem;
    }

    .footer__logo-links {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
    }

   .footer__top-section {
        flex-direction: column;
        gap: 2rem;
    }

    .footer__logo-links {
        align-items: flex-start;
        text-align: left;
    }

    .footer__logo-links .logo {
        margin-bottom: 1rem;
    }

    .footer__top-section {
        padding-bottom: 1rem;
    }

    .footer__top-section-right {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 0rem;
    }

    .footer__bottom-section {
        flex-direction: column;
        gap: 15px;
    }

    .footer__bottom-section-links {
        flex-direction: column;
        gap: 8px;
    }
}