@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
   margin: 0;
   padding: 0;
   font-family: "Poppins", sans-serif;
   text-decoration: none;
   list-style: none;
}

.header{
    justify-content: space-between;
    padding: 0 5%;
    min-height: 100vh;
    background:url(images/hero-bg.jpg);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.navBar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7vh;
    width: 100%;
    color: antiquewhite;
}

.logo{
    font-size: 25px;
    letter-spacing: 2px;
}
nav ul{
   display: flex;
}

nav ul li{
    transition: all ease-in-out .5s;
    z-index: 2;
}

nav ul li:hover{
    scale: 1.2;
}


nav ul li a{
    color: white;
    padding: 0 20px;
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
    font-weight: 300;
}

nav ul li a::after{
    content: "";
    position: absolute;
    background-color: rgb(237, 236, 236);
    bottom: 0;
    left: 20px;
    height: 2px;
    width: 0;
    transition: all ease-in-out .9s;
}

nav ul li:hover a::after{
    width: 30%;
}

.mobile-links{
    display: none;
}


@media (max-width:700px) {
    .logo{
        font-size: 18px;
    }
    .nav-links{
        display: none;
    }
    .mobile-links{
        display: block;
        position: relative;
        
    }
    
    .mobile-menu .mobile-icons{
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 15px;
        width: 23px;
        cursor: pointer;
        top: -34px;
        right: 20px;
        transition: all ease-in-out .5s;
        z-index: 1;
    }
    
    .mobile-icons span{
        height: 1.5px;
        width: 100%;
        background-color: rgb(252, 227, 194);
        transition: all ease-in-out .5s;
    }

    .mobile-icons.active span:first-child{
        transform: rotate(45deg)translate(8px,5px);
    }

    .mobile-icons.active span:nth-child(2){
        display: none;
    }

    .mobile-icons.active span:last-child{
        transform: rotate(-45deg)translate(5px,-1px);
    }

    .mobile-links ul{
        position: absolute;
        top: -300px;
        right: 0;
        background-color: aliceblue;
        width: 100%;
        padding: 10px;
        transition: all ease-in-out .25s;
    }

    .mobile-links ul.active{
        top: 0;
        transition: all ease-in-out .25s;
    }

    .mobile-links ul li a{
        color: black;
        font-size: 18px;
        transition: all ease-in-out .4s;
        line-height: 2.5rem;
    }

    .mobile-links ul li a:hover{
        color: orange;
    }



}


/* =========hero section======= */
.header{
    align-items: center;
    justify-content: center;
}


.hero-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85vh;
}

.hero-left{
    flex: 60%;
}

.hero-left .title{
    font-size: 55px;
    color: rgb(220, 220, 220);
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-left .description{
    font-size: 25px;
    color: antiquewhite;
    margin-bottom: 20px;
}

.hero-right{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 30%;
    position: relative;
    height: 100%;
}

.hero-section::after{
    content: "";
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(images/hero-bg-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    z-index: 0;
}

.hero-right img{
    margin-top: 100px;
    z-index: 2;
    position: relative;
}

.hero-right::after{
    content: "";
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(images/hero-banner-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    z-index: 1;
}

.exploreMore{
    width: fit-content;
}

.exploreBtn{
    cursor: pointer;
    padding: 10px 40px;
    border: none;
    background-color: orange;
    color: rgb(241, 238, 238);
    font-size: 20px;
    /* display: none; */
}

@media (max-width:700px) {
    .header{
        min-height: 80vh;
    }


    .hero-section{
        height: 65vh;
        flex-direction: column-reverse;
    }

    .hero-section::after{
        display: none;
    }
    .hero-left{
        width: 100%;
        height: 100%;
        flex: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 7%;
    }

    .hero-left .title{
        font-size: 40px;
    }

    .hero-left .description{
        font-size: 20px;
    }
    .hero-right{
        flex: 100%;
        display: none;
    }

    .exploreBtn{
        display: block;
    }
    .exploreMore a button{
        font-size: 17px;
        padding: 10px 20px;
    }
}


/* ========Categories====== */
.container{
    padding: 0 5%;
}

.categories{
    margin: 5% 0;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.catCard{
    box-shadow: rgba(0, 0, 0, 0.2)2px 1px 5px 2px;
    padding: 15px 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all ease-in-out .7s;
}

.catCard:hover{
    transform: translateY(-10px);
}

.catCard img{
    width: 30%;
}

.cat-title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(106, 106, 106);

}

.cat-desc{
    width: 90%;
    margin-top: 20px;
    font-size: 12px;
    line-height: 18px;
    color: rgb(151, 151, 151);
}


/*================ menu========== */
.title{
 margin-top: 5%;
 font-size: 38px;
 font-weight: 700;
 color: orange;
}

.sub-title{
    color: rgb(156, 156, 156);
}

.menu-list{
    margin: 3% 0;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    grid-gap: 30px;
}

.menu-card{
    box-shadow: rgba(0, 0, 0, 0.2)2px 1px 5px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content; 
    line-height: 2rem;
    border-radius: 10px;
    position: relative;
}

.menu-card img{
    width: 65%;
    margin: 20px 0;
    transition: all ease-in-out .5s;
}

.menu-card .itemName{
    color: rgb(108, 108, 108);
}

.menu-card .price{
    color: rgb(71, 70, 70);
    font-weight: 500;
}

.menu-card img:hover{
    transform: scale(1.1);
}

.menu-card span{
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
}

.menu-card span i{
    margin: 10px;
    padding: 12px;
    justify-content: center;
    font-size: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all ease-in-out .4s;
}

.menu-card:hover span i{
    font-size: 20px;
    background-color: rgb(228, 228, 228);
}

.orderNowBtn a button{
    outline: none;
    border: none;
    padding: 5px 30px;
    border-radius: 3px;
    font-size: 17px;
    background-color: orange;
    margin-bottom: 20px;
    cursor: pointer;
    color: white;
    letter-spacing: 2px;
}

@media (max-width:700px) {
    .menu-card .itemName{
        font-size: 10px;
    }

    .menu-card .price{
        font-size: 15px;
    }
    .orderNowBtn a button{
        letter-spacing: 1px;
        font-size: 12px;
        padding: 3px 10px;
    } 
}

.ctaBox{
    width: 100%;
    margin: 5% 0;
}

.cta{
    min-height: 60vh;
    background-image: url(images/hero-bg.jpg);
    background-position: center;
    background-size:center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content{
    height: 60vh;
    width: 100%;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.cta-content .cta-info{
    color: rgb(221, 221, 221);
    font-size: 40px;
}

.cta-content .cta-info h1{
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content .cta-info p{
    font-size: 25px;
    line-height: 3rem;
    margin-bottom: 20px;
}

.cta-content img{
    width: 45%;
    margin-top: 60px;
    position: relative;
}

.cta-content .cta-info::before{
    content: "";
    position: absolute;
    top: 0; 
    right: 450px; 
    background-image: url(images/sale-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    width: 100%;
    height: 50%;
    z-index: 1;
}

@media (max-width:700px){
    .cta-content .cta-info{
        font-size: 19px;
    }

    .cta-content .cta-info p{
        font-size: 20px;
        line-height: 2rem;
    }
    .cta-content img{
        display: none;
    }
}


/* =========testimonals-card===== */

.testimonals .title{
    font-size: 40px;
    color: orange;
    font-weight: 700;
}

.testimonals .sub-title{
    color: rgb(137, 137, 137);
}

.testimonals-card{
    margin-top: 3%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 30px;
}

.user-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    width: fit-content;
    padding: 20px;
    text-align: left;
    position: relative;
    line-height: 2em;
    transition: all ease-in-out .5s;
    cursor: pointer;
}

.user-info:hover{
    transform: translateY(-10px);
}

.user-info h4{
    font-weight: 600;
}

.user-info .rating i{
    color: gold;
}

.user-info p{
    text-align: center;
    font-size: 13px;
    color: rgb(103, 103, 103);
}

.user-info img{
    border-radius: 50%;
    width: 40%;
}


/* ---------footer-------- */
.footer{
    margin-top: 50px;
    background:url(images/hero-bg.jpg);
    background-position: center;
    background-size: cover;
    padding:30px 0;
    color:#fff;
}

.footer-links{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 30px;
}

.footer-links h2{
    font-weight: 500;
}

.footer-links ul li a{
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}








