@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    list-style: none;
    text-transform: capitalize;
    /* border: 1px solid red; */

}

/* basic class */
.flex{
    display: flex;
    align-items: center;
}
.between{
    justify-content: space-between;
}
.gap-2{
    gap: 2rem;
}
.gap-3{
    gap: 3rem;
}
.wrapper{
    max-width: 1400px;
    margin: 0 auto;
    padding-inline: 1.5rem;
}
.btn{
    padding: 0.6rem 1.5rem;
    background-color: #FCB53B;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: .5s;
    border: 3px solid #ffffff;
    font-weight: bold;
    
}
.btn:hover{
    background: transparent;
    border-radius: 5rem;
    color: #FCB53B;
    border: 3px solid #FCB53B;
    box-sizing: border-box;
    
    
}
a{
    color: #000000;
    text-transform: capitalize;
    text-decoration: none;
 
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
.text-center{
    text-align: center;
}

/* header styling */
nav{
    min-height: 14vh;
}
.logo h1{
    font-size: 2rem;
    color:#FCB53B;
}
.cart{
    color: #000000;
    font-size: 1.3rem;
    position: relative;
}
.cart-value{
    position: absolute;
    background-color: #FCB53B;
    color: #000000;
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    bottom: -5px;
    right: -10px;
    font-weight: bold;
    /* z-index: 100; */
}
.hamburger{
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}
.mobile-navlist{
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}
.mobile-navlist-active{
    display: inline;
}



/* hero section */
.hero-section{
    /* height: calc(100vh - 14vh); */
    flex-wrap: wrap;
}
.hero-content,
.image-container{
    flex: 1;
    flex-basis: 400px;
    
}
.image-container img{
    max-height: 85vh;
    
}
.hero-content h1{
    font-size: 6rem;
    margin-bottom: 1rem;
    font-weight:bold;
}
@media (min-width: 880px) and (max-width: 1320px){
     .hero-content h1{
        font-size: 4.6rem;
    }
}
.hero-content h1 span{
    color: #FCB53B;
}
p{
    font-size: 1.2rem;
    color: grey;
    line-height: 1.8rem;
}
.para{
    margin-block: 2rem;
}
.m-top{
    margin-top: 4rem;
}

/* our services section */
.services{
    width: 100%;
    margin-top: 100px;
    /* background-color: #FCB53B; */
}
 h5{
    font-size: 1.6rem;
    color: #FCB53B;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: bold;
}
 h2{
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
    color: #000000;
}
@media (min-width: 900px) and (max-width: 1180px){
     .content h2{
        font-size: 2.2rem;
    }
}
h3{
    font-weight: bold;
    font-size: 2rem;
    /* text-transform: uppercase; */
    margin: 12px 0px;
}
.services-cards{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    /* margin-top: 4rem; */
}
.services-cards p{
    width: 80%;
}
.services-heading{
    margin-bottom: 4rem;
}
.our-menu-section{
    margin-top: 140px;
}

.menu-img {
    width: 280px;
    height: 230px;
    margin-bottom: 1rem;
}
.cards-container{
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
     flex-wrap: wrap;
     gap: 17px;
    
}
.order-card{
    max-width: 320px;
    height: 500px;
    background-color: #fcb53b70;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    transition: 0.5s;
    border-left: 8px solid #FCB53B;
    /* margin-top: 50px; */
    transition: 0.5s;
    
   
}
@media (max-width: 704px){
    .order-card{
        max-width: 100%;
    }
}
.menu-img img{
 transition: 0.5s;
}
.menu-img img:hover{
    scale: 1.2;
    rotate: 5deg;
}


.order-card:hover{
    background-color: #000000;
    color: white;
    transform: scale(1);
    transition: 0.3s;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    
}
.order-card p{
    font-size: 18px;
    line-height: normal;
}
.menu-details{
    margin-top: 10px;
}
.menu-details a{
    border: none;
    margin-top: 20px;
}
.menu-details span{
    font-size: 25px;
    padding-right: 15px;
}

.reviews-section{
    margin-top: 140px;
}

.content{
    max-width: 50%;
    text-align: left;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    
}


.image-container-profile{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    margin-top: 20px;
}
.image-container-profile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-content{
    /* height: 100px; */
    /* background-color: #FCB53B; */
    display: flex;
    line-height: normal;
    flex-direction: column;

}
.review-content h3{
    margin-bottom: 0.5rem;
}
.review-comment{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 1rem;
    margin-top: -20px;

    width: 100%;
}
.reviews-section i{
    color: #FCB53B;
}






.our-app-section{
    margin-top: 100px;
    background-color: #fcb53b52;
    padding: 3rem 2rem;
    border-radius: 3rem;
}
.our-app-section img{
    width: 50rem;
}
.app-img{
    margin-top: 70px;
}
.app-container a{
    border: none;
}
.our-app-section h2{
    font-size: 4.5rem;
    text-align: left;
}
@media (min-width: 900px) and (max-width: 1180px){
     .our-app-section h2{
        font-size: 2.9rem;
    }
    .our-app-section img{
        width: 1200px;
    }
    .our-app-section p{
        font-size: 17px;
    }
}
.app-container{
    align-items: center;
    justify-content: center;
   
}






.subscribe{
    margin-top: 100px;
}
.newsletter-form{
    margin: 0px auto;
    max-width: 50%;
    background-color: #ffffff;
    align-items: center;
    padding: 7px 10px;
    justify-content: center;
    gap: 3rem;
    border-radius: 7px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.newsletter-form input{
    padding: 1rem;
    width: 400px;
    text-align: left;
    border: none;
    /* background-color: tomato; */
    outline: none;
    font-size: 1rem;
    border-radius: 5px 0px 0px 5px;
}





footer{
    width: 100%;
    color: #ffffff;
    background-color: #000000;
}
.footer-container{
    margin-top: 100px;
    padding-block: 3rem;
    gap: 5rem;
    flex-wrap: wrap;
}
.footer-wrapper{
    width: 50%;
}
footer p{
    font-size: 1rem;
    flex: 1;
    color: grey;
    max-width: 80%;
    padding-bottom: 30px;
}
@media (min-width: 200px) and (max-width: 1000px){
     .footer-wrapper{
        width: 100%;
    }
}
ul h4{
    margin-bottom: 1.8rem;
    font-size: 1.5rem;
    font-weight: bold;
}
footer ul li a{
    color: grey;
    font-size: 1rem;
}
footer ul li a:hover{
    color: #FCB53B;
    transition: 0.3s;
}
footer li{
    margin-bottom: 0.8rem;
}
footer .btn{
    border: none;
    margin-top: 1rem;
}
.footer-links{
    flex-wrap: wrap;
    gap: 4rem;
    
}

.cart-tab{

    position: fixed;
    inset: 0 -500px 0 auto;
    width: 25rem;
    background-color: #ffe3b2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.5rem 0px;
   
    transition: 0.5s ease-in-out;
}
.cart-tab-active{
    box-shadow: 0 0 300px 50px rgba(0, 0, 0, 0.523);
    inset: 0 0 0 auto;
}

.cart-tab .btn{
    background-color: #000000;
    border: none;
    
}
.cart-butttons .btn{
    display: inline-block;
    flex: 1;
    /* height: 200px; */
    width: 150px;
    text-align: center;
}
.cart-tab h3{
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}
.cart-list{
    flex: 1;
    width: 100%;
    overflow-y: scroll;
    /* padding: 0px 10px; */
}
.cart-list::-webkit-scrollbar{
    width: 0;
}
.cart-item{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    gap: .5rem;
    margin-top: 1.3rem;
}
.cart-list .cart-item:nth-child(even){
    background-color: #ffffffaf;
}
.cart-total{
    background-color: #ffa200;
    width: 100%;
    text-align: center;
}
.cart-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}   
.cart-content{
    flex: 1;
}
.cart-content h4{
    font-size: 1.2rem;
    /* margin-bottom: 0.5rem; */
}
.cart-content h5{
    font-size: 1.05rem;
    color: #000000;
    font-weight: 500;
    margin-top: 5px;
}
.cart-plus-minus{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.quantity{
    font-size: 1.1rem;
}
.cart-plus-minus i{
    cursor: pointer;
    font-size: 1rem;
    width: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100vw;
    aspect-ratio: 1;
    background-color: #000000;
    color: #ffffff;
    padding: 2px 8px;
    text-align: center;
}
.wrapper-active{
   animation: blur 1.3s;
   filter: blur(30px);
   opacity:100;


}

@keyframes blur{
    0%{
filter: blur(0);
    }
    50%{
    

        filter: blur(10px);
        opacity: 1;
    }
    100%{
        

    }
}



























/* media queries */

@media (max-width: 900px){
    .navlist,
    .desktop-action > .btn{
        display: none;
    }

    .hamburger{
        display: block;
    }
    a{
        font-size: large;
    }
    .mobile-navlist{
        display: flex;
        position: absolute;
        top: 10%;
        left: -100%;
        transform: translate(-50%);
        align-items: center;
        justify-content: center;
        width: 99%;
        border: 5px solid #FCB53B;
        height: 55vh;
        background-color: black;
        backdrop-filter: blur(2px);
        padding: 0px 20px;
        gap: 30px;
        transition: 0.5s;
        border-radius: 10px;
    
    }
    .mobile-navlist-active{
        left: 50%;
    }
    .mobile-navlist a{
        color: white;
    }
    .mobile-btn{
        padding-top: 20px;
    }
    .mobile-btn .btn{
        border: 2px solid #FCB53B;
        
    }
    /* hero sec */
    .hero-content h1{
        font-size: 12vw;
    }
    .hero-content{
        padding-top: 2rem;
    }
    .image-container{
        margin-top: 1rem;
    }
    .services-cards-container{
        flex-direction: column;
        gap: 3rem;
    }
    .services-cards p{
        font-size: 1rem;
    }
    .reviews-section{
        flex-direction: column;
    }
    .content{
        max-width: 100%;
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .content h2{
        font-size: 40px;
    }
    .content p{
        font-size: 18px;
        text-align: left;
    }
    .content h3{
        font-size: 24px;
    }
    .app-container{
        flex-direction: column;
    }
    .our-app-section{
        padding: 10px;
        border-radius: 20px;
    }
    .app-container h2{
        font-size: 2.3rem;
    }
    .app-container h5{
        font-size: 1.6rem;
    }
    .app-container p{
        font-size: 13px;
        text-align: left;
        line-height: 22px;
    }
    .app-container img{
        width: 300px;
        margin-top: 20px;   
    }
    .app-container a{
        display: block;
        margin-bottom: 20px;
    }
    .newsletter-form{
       max-width: 100%;
       text-align: center;
        flex-direction: column;
        gap: 20px;
       
    }
    .newsletter-form input{
        width: 100%;
        border-radius: 5px;
        text-align: center;
    }
}
@media (max-width: 704px){
    
}

