*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
a{
    color: inherit;
    text-decoration: none;
}
ul{
    list-style: none;
}

header{
    z-index: 1000;
    position: fixed;
    background-color: #ffffff7e;
    border: 1px solid #ddd;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    width: 90%;
    margin: 20px 5%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .logo{
        height: 50px;
        img{
            height: 100%;
        }
    }

    .nav{
        display: flex;
        gap: 30px;

        li{
            font-size: 14px;
            font-weight: 500;
            transition: .3s ease;
        }
        li:hover{
            color: #e78b00;
        }
    }
    .hamburger{
        display: none;
    }
    .header-cta{
        padding: 10px 20px;
        background-color: #073b00;
        border: 2px solid white;
        color: white;
        border-radius: 100px;
        transition: .3s ease;
    }
    .header-cta:hover{
        background-color: #e78b00;
        color: white;
    }
}

.hero{
    padding: 30px;
    background: linear-gradient(120deg, #073b00, #e78b00);
    color: white;

    .hero-cont{
        z-index: 1;
        position: relative;
        padding-top: 150px;
        padding-bottom: 30px;
        display: flex;
        gap: 20px;
        justify-content: space-around;

        .fallig-pepper{
            position: absolute;
            top: 10px;
            right: -10px;
            z-index: -1;
            height: 100%;
        }
        .hero-txt{
            width: 45%;
            h1{
                font-size: 65px;
                line-height: 75px;
                font-weight: 400;
                margin-bottom: 20px;

                span{
                    font-family:cursive;
                    font-size: 60px;
                    margin-left: -30px;
                    color: #e78b00;
                    font-style: italic;
                }
            }
            .hero-p{
                margin-bottom: 0;
                padding: 10px 25px;
                border: 1px solid #fff;
                width: fit-content;
                border-radius: 100px;
            }
            p{
                font-size: 14px;
                margin-bottom: 20px;
            }
            a{
                padding: 10px 90px;
                background-color: #e78b00;
                border-radius: 50px;
                color: black;
            }
            ul{
                margin-top: 30px;

                li{
                    font-size: 12px;
                    margin-bottom: 10px;
                }
            }
        }

        .hero-img{
            position: relative;
            text-align: right;
            width: 40%;
            img{
                width: 100%;
                margin-top: -60px;
            }

            div{
                z-index: -2;
                width: 100%;
                height: 50%;
                background-color: #fff;
                position: absolute;
                right: -65px;
                top: 30px;
                border-top-left-radius: 200px;
                border-bottom-left-radius: 200px;
            }


        }
    }
}


.popular-meals{
    padding: 30px;
    background-color: #fff;
    text-align: center;

    h2{
        padding-left: 20px;
        margin-bottom: 0;
        text-align: left;
        font-size: 35px;
        font-weight: 500;
    }
    .menu-link{
        padding: 10px 20px;
        background-color: black;
        color: #fff;
        border-radius: 50px;
    }

    .meals-cont{
        text-align: left;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin: 30px;

        .meals{
            margin-top: 20px;
            width: 250px;
            border: 1px solid #ddd;
            border-radius: 20px;

            img{
                border-top-right-radius: 20px;
                border-top-left-radius: 20px;
                width: 100%;
                height: 280px;
                margin-bottom: 10px;
            }
            h4{
                font-size: 17px;
                margin: 10px;
                font-weight: 500;
            }                
            p{
                margin: 10px;
                font-size: 11px;
            }
            .desc-nd-price{

                display: flex;
                gap: 5px;
                justify-content: space-between;
                align-items: center;
                margin: 10px;
                margin-bottom: 15px;

                div{
                    width: 40%;
                }
                a{
                    width: 50%;
                    text-align: center;
                    padding: 10px;
                    font-size: 13px;
                    background-color: #e78b00;
                    color: white;
                    border-radius: 100px;
                    transition: .3s ease;
                }
            }
            
            a:hover{
                background-color: #073b00;
            }
        }
    }

}


.web-banner{
    padding: 50px 30px;

    .banner{
        background-color: #ddd;
        height: 220px;
        border-radius: 20px;
        background-image: url(images/just-chow-web-banner.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}


.testimonial{
    padding: 30px;

    h4{
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 5px;
    }
    h2{
        font-size: 45px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .test-cont{
        display: flex;
        overflow-x: scroll;
        gap: 30px;
        margin-bottom: 50px;


        .test-box{
            border: 1px solid #ddd;
            border-radius: 20px;
            width: 450px;
            padding: 20px;

            p{
                font-size: 13px;
                margin-bottom: 10px;
            }
            .test-profile{
                display: flex;
                justify-content: space-between;

                img{
                    width: 30px;
                    height: 30px;
                    border-radius: 100px;
                    background-color: grey;
                }

                .profile{
                    font-size: 12px;
                }
                .rating{
                    font-size: 11px;
                }
            }
        }
    }
}


.about{
    text-align: center;
    padding: 30px;

    h2{
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 5px;
    }
    p{
        width: 50%;
        margin: 0px auto;
        font-size: 13px;
    }
    .about-cont{
        margin-top: 30px;
        display: flex;
        text-align: left;
        justify-content: center;
        gap: 20px;

        .about-img{
            width: 35%;
            height: 400px;
            background-color: #43c23285;
            border-radius: 20px;
            position: relative;
            z-index: 1;

            .img-1{
                z-index: -1;
                background-image: url(images/Lunch\ is\ ready.jpg);
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                height: 280px;
                border-radius: 10px;
                width: 240px;
                background-color: #ddd;
                position: absolute;
                top: 40px;
                left: 60px;
                transform: rotate(-3deg);
            }
            .img-2{
                background-image: url(images/African\ dish.jpg);
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                z-index: -2;
                height: 280px;
                border-radius: 10px;
                width: 240px;
                background-color: #ddd;
                position: absolute;
                top: 70px;
                left: 140px;
                transform: rotate(3deg);
            }
            img{
                height: 350px;
                padding-top: 50px;
                padding-left: 70px;
            }
        }
        .about-txt{
            width: 45%;
            height: 400px;
            background-color: #43c23285;
            border-radius: 20px;
            padding: 40px;
            display: flex;  
            flex-direction: column;
            justify-content: center;

            div{
                width: 30px;
                height: 30px;
                border: 2px solid #073b00;
                border-radius: 200px;
                margin-bottom: 20px;
            }

            h3{
                font-size: 35px;
                line-height: 40px;
                font-weight: 500;
                color: #073b00;
                margin-bottom: 10px;
            }
            p{
                width: 100%;
                margin-bottom: 30px;
                color: #073b00;
            }
            a{
                padding: 10px 20px;
                background-color: #e78b00;
                border-radius: 100px;
                width: fit-content;
                box-shadow: 3px 3px #533201;
                transition: .3s ease;
            }
            a:hover{
                background-color: #fff;
                color: black;
            }
        }
    }
    .orange{
        .about-img{
            background-color: #fad193d0;
        }
        .about-txt{
            background-color: #fad193d0;
            
            div{
                border: 2px solid #533201;
            }
            h3, p{
                color: #533201;
            }
            a{
                background-color: #073b00;
                color: white;
                box-shadow: 3px 3px #000;
            }
        }
    }
}


.chef{
    padding: 30px;
    background-color: #ffdaa33a;
    text-align: center;
    font-weight: 500;

    h4{
        font-weight: 500;
        font-size: 15px;
        margin-bottom: 10px;
        color: #e78b00;
    }
    h2{
        font-size: 35px;
        font-weight: 500;
        margin-bottom: 30px;

        span{
            color: #e78b00;
        }
    }
    .chef-cont{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        align-items: center;

        .chef-box{
            border-radius: 10px;

            .chef-img{
                height: 350px;
                width: 300px;
                margin-bottom: 10px;
                border-top-right-radius: 300px;
                border-top-left-radius: 300px;
                background-color: #ddd;
                background-position: top;
                background-size: cover;
                background-repeat: no-repeat;
            }

            h5{
                font-weight: 500;
                font-size: 14px;
                margin-bottom: 5px;
            }
            p{
                font-size: 13px;
                color: #e78b00;
            }
        }
    }
}


.cta-banner{
    background-color: #ffcb7d57;
    padding: 30px;

    .cta-cont{
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;

        .icon{
            background-color: #073b00;
            padding: 15px 20px 20px 20px;
            border-radius: 200px;
            font-size: 30px;
        }
        .txt{
            width: 400px;
            h4{
                font-size: 19px;
                font-weight: 500;
            }
            p{
                font-size: 13px;
            }
        }
        .input{
            input{
                margin-right: 0;
                padding: 13px;
                width: 300px;
                border: none;
                outline: none;
            }
            button{
                padding: 13px 70px;
                border: none;
                outline: none;
                background-color: #073b00;
                color: #fff;
                margin-left: -5px;
                cursor: pointer;
            }
        }
    }
}


footer{
    padding: 30px;
    background-color: #000;
    color: #fff;

    #copyright{
        text-align: center;
        margin-top: 20px;
        font-size: 12px;
        color: #ddd;
    }

    .footer-cont{
        display: flex;
        justify-content: space-around;
        gap: 30px;

        .footer-logo{
            p{
                font-size: 15px;
                line-height: 25px;
                margin-bottom: 20px;
            }
            .f-logo{
                display: flex;
                align-items: center;
                img{
                    height: 90px;
                }
                .logo-name{
                    h3{
                        font-size: 25px;
                        font-weight: 500;
                        margin-bottom: 0;
                    }
                    h5{
                        font-weight: 500;
                        color: #ddd;
                        font-size: 12px;
                    }
                }
            }
        }

        .f-l{
            h3{
                font-size: 25px;
                font-weight: 500;
                margin-bottom: 15px;
            }
            ul{
                li{
                    font-size: 13px;
                    margin-bottom: 15px;
                }
            }
        }
        
    }
}






@media (max-width: 850px) {

    header{
        z-index: 1000;
        .hamburger{
            align-content: center;
            margin-top: 15px;
            display: block;
            cursor: pointer;
            height: 100%;
            transition: transform .5s ease-in-out;
        }
        .bar{
            width: 35px;
            height: 2px;
            background-color: #000000;
            margin-bottom: 6px;
            border-radius: 10px;
            transition: transform .5s ease-in-out;
        }
        .hamburger.change .bar1{
            -webkit-transform: rotate(-45deg) translate(-9px, 6px);
            transform: rotate(-45deg) translate(-5px, 6px);

        }
        .hamburger.change .bar2{
            opacity: 0;
        }
        .hamburger.change .bar3{
            -webkit-transform: rotate(45deg) translate(-8px, -8px);
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav {
            z-index: 99;
            height: 100vh;
            text-align: left;
            left: -500px;
            top: 0;
            width: 70%;
            margin: -22px -6%;
            padding: 30px;
            padding-top: 90px;
            backdrop-filter: blur(10px);
            position: fixed;
            display: block;
            background-color: #ffffffee;
            transition: left .5s ease-in-out;
            color: #000000;
        }
        .nav.visible{   
            z-index: 99;
            width: 70%;
            left: 0;
            margin: -22px -6%;
            text-align: left;
        }
        
        .nav li {
            text-align: left;
            line-height: 80px;
            font-size: 15px;
            margin: 0;
        }
        
    }

    .hero{

        
        .hero-cont{
            padding-top: 100px;
            flex-direction: column;

            .fallig-pepper{
                position: absolute;
                top: 0px;
                right: 0px;
                z-index: -1;
                height: 100%;
            }
            .hero-txt{
                width: 100%;

                h1{
                    font-size: 60px;
                    line-height: 65px;
                }
                p{
                    font-size: 12px;
                }
            }
            .hero-img{
                width: 100%;

            div{
                z-index: -2;
                width: 93%;
                height: 50%;
                background-color: #fff;
                position: absolute;
                right: -30px;
                top: 120px;
                border-top-left-radius: 200px;
                border-bottom-left-radius: 200px;
            }

                img{
                    width: 100%;
                    margin-top: 10px;
                }
            }
        }
    }

    .popular-meals{
        h2{
            text-align: center;
            font-size: 33px;
        }
        .meals-cont{
            justify-content: center;
            margin: 0px;
            margin-bottom: 30px;

            .meals{
                width: 230px;
            }
        }
    }

    .web-banner{
        padding: 50px 30px;
        .banner{
            height: 130px;
        }
    }

    .testimonial{
        h2{
            font-size: 40px;
        }
        .test-cont{

            .test-box{
                p{
                    font-size: 10px;
                }
            }
        }
    }

    .about{
        .about-cont{
            flex-direction: column;
            .about-img{
                width: 100%;
            }
            .about-txt{
                width: 100%;
            }
        }
    }

    .cta-banner{
        .cta-cont{
            flex-direction: column;

            .txt{
                width: 100%;
            }
            .input{
                width: 100%;
                button{
                    margin-left: 0px;
                }
            }
        }
    }

    footer{
        .footer-cont{
            flex-direction: column;
        }
    }
}











@media (max-width: 500px) {
    .hero{
        .hero-cont{
            .hero-txt{
                h1{
                    font-size: 40px;
                    line-height: 45px;

                    span{
                        font-size: 45px;
                    }
                }
            }
        }
    }
    .popular-meals{
        .meals-cont{

            .meals{
                width: 270px;
            }
        }
    }

    .about{
        h2{
            font-size: 35px;
        }

        p{
            width: 100%;
            font-size: 12px;
        }
        .about-cont{
            .about-img{
                .img-1{
                    z-index: -1;
                    background-image: url(images/Lunch\ is\ ready.jpg);
                    background-position: center;
                    background-size: cover;
                    background-repeat: no-repeat;
                    height: 170px;
                    border-radius: 10px;
                    width: 150px;
                    background-color: #ddd;
                    position: absolute;
                    top: 100px;
                    left: 30px;
                    transform: rotate(-3deg);
                }
                .img-2{
                    background-image: url(images/African\ dish.jpg);
                    background-position: center;
                    background-size: cover;
                    background-repeat: no-repeat;
                    z-index: -2;
                    height: 170px;
                    border-radius: 10px;
                    width: 150px;
                    background-color: #ddd;
                    position: absolute;
                    top: 70px;
                    left: 140px;
                    transform: rotate(3deg);
                }
                img{
                    height: 250px;
                    padding-top: 0px;
                    padding-left: 0px;
                    margin-left: 35px;
                    margin-top: 70px;
                }
            }
        }
    }

    .cta-banner{
        .cta-cont{
            flex-direction: column;

            .txt{
                width: 100%;
            }
            .input{
                width: 100%;
                button{
                    margin-left: 0px;
                }
            }
        }
    }
}