@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --primary:#212738;
    --secondary:#F97068;
    --white: #fff;
    --bg-color: #f4f4f4;
    --light-color:#666;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none; text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

section{
    padding: 3rem 9%;
}

.heading{
    text-align: center;
    padding: 2rem 0;
    padding-bottom: 3rem;
    font-size: 3.5rem;
    color: var(--primary);
    text-transform: uppercase;
}

.heading span{
    color: var(--secondary);
    text-transform: uppercase;
}


.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    background: var(--secondary);
    color: var(--white);
    cursor: pointer;
}

.btn:hover{
    background: var(--primary);
}

/* header */

.header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--secondary);
}

.header .navbar a{
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--primary);
}

.header .navbar a:hover{
    color: var(--secondary);
}

.header .icons div{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    color: var(--primary);
    font-size: 2.5rem;
    margin-left: .3rem;
    cursor: pointer;
    text-align: center;
}

.header .icons div:hover{
    color: var(--secondary);
}

#menu-btn{
    display: none;
}

.header .shopping-cart{
    position: absolute;
    top: 110%; right: -110%;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    width: 35rem;
    background: var(--white);
}

.header .shopping-cart.active{
    right: 2rem;
    transition: .4s linear;
}

.header .shopping-cart .box{
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin: 1rem 0;
}

.header .shopping-cart .box img{
    height: 10rem;
}

.header .shopping-cart .box .fa-trash{
    font-size: 2rem;
    position: absolute;
    top: 50%; right: 2rem;
    cursor: pointer;
    color: var(--light-color);
    transform: translateY(-50%);
}

.header .shopping-cart .box .fa-trash:hover{
    color: var(--secondary);
}

.header .shopping-cart .box .content h3{
    color: var(--primary);
    font-size: 1.7rem;
    padding-bottom: 1rem;
}

.header .shopping-cart .box .content .price{
    color: var(--secondary);
    font-size: 1.6rem;
}

.header .shopping-cart .total{
    font-size: 2.5rem;
    padding: 1rem 0;
    text-align: center;
    color: var(--primary);
}

.header .shopping-cart .btn{
    display: block;
    margin: 1rem;
    text-align: center;
}

/* header end */

/* home */

@keyframes fade{
    0%{
        transform: translateY(-4rem) scale(0);
        opacity: 0;
    }
}

.home{
    padding: 0;
}

.home .slide{
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .slide .content{
    width: 70rem;
    text-align: center;
    display: none;
}

.home .slide .content img{
    padding-top: 7.5rem;
    animation: fade 0.4s cubic-bezier(.54,1.3,.63,1.34) .2s backwards;
}

.home .slide .content h3{
    font-size: 5rem;
    letter-spacing: 1.5rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.3;
    padding: 2rem 0;
    animation: fade 0.4s cubic-bezier(.54,1.3,.63,1.34) .4s backwards;
}

.home .slide .content h3 span{
    color: var(--secondary);
    text-transform: uppercase;
}

.home .slide .content .btn{
    animation: fade 0.4s cubic-bezier(.54,1.3,.63,1.34) .6s backwards;
}

.home .swiper-slide-active .content{
    display: inline-block;
}

/* home end */

/* speaciality */

.special{
    background: var(--bg-color);
}

.special .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    padding: 0 8rem;
    text-align: center;
    justify-content: center;
}

.special .box-container .box{
    flex: 1 1 40rem;
}

.special .box-container .box img{
    width: 100%;
}

.special .box-container .box h3{
    font-size: 2.5rem;
    color: var(--secondary);
    padding-top: 1rem;
}

.special .box-container .box p{
    font-size: 1.4rem;
    color: var(--light-color);
    padding: 1rem 0;
    line-height: 2;
}

.special .box-container .box .price{
    color: var(--primary);
    font-weight: bolder;
    margin-right: 1rem;
    font-size: 2.5rem;
}

.special .box-container .box .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
    color: var(--secondary);
}

/* speaciality end*/

/* about */

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

.about .row .image{
    flex: 1 1 40rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content{
    flex: 1 1 40rem;
}

.about .row .content span{
    font-size: 2rem;
    color: var(--light-color);
}

.about .row .content h3{
    font-size: 2.5rem;
    color: var(--primary);
    padding-top:1rem ;
}

.about .row .content p{
    font-size: 1.4rem;
    color: var(--light-color);
    padding: 1rem 0;
    line-height: 2;
}

/* about end*/

/* menu */

.menu{
    background: var(--bg-color);
}

.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2.5rem;
}

.menu .box-container .box{
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.menu .box-container .box img{
    height: 19rem;
    margin: 1rem 0;
}

.menu .box-container .box:hover img{
    transform: scale(1.1);
}

.menu .box-container .box h3{
    color: var(--primary);
    font-size: 2.5rem;
    line-height: 1.8;
}

.menu .box-container .box p{
    font-size: 1.4rem;
    line-height: 1.8;
}

.menu .box-container .box .stars{
    padding: 1rem 0;
}

.menu .box-container .box .stars i{
    font-size: 1.7rem;
    color: gold;
}

.menu .box-container .box .price{
    color: var(--primary);
    font-weight: bolder;
    margin-right: 1rem;
    font-size: 2.5rem;
}

.menu .box-container .box .price span{
    text-decoration: line-through;
    font-size: 1.5rem;
    font-weight: lighter;
    color: var(--secondary);
}

/* menu end */

/* parallex */

.parallex{
    background: url(../images/parallex.jpg);
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
}

.parallex img{
    padding: 12rem 0;
    width: 100%;
    min-height: 100vh;
}

/* parallex end */

/* dessert */

.dessert{
    background: var(--bg-color);
}

.dessert .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
    gap: 2.5rem;
}

.dessert .box-container .box{
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.dessert .box-container .box img{
    height: 19rem;
    margin: 1rem 0;
}

.dessert .box-container .box:hover img{
    transform: scale(1.1);
}

.dessert .box-container .box h3{
    color: var(--primary);
    font-size: 2.5rem;
    line-height: 1.8;
}

.dessert .box-container .box p{
    line-height: 1.8;
    font-size: 1.4rem;
}

.dessert .box-container .box .stars{
    padding: 1rem 0;
}

.dessert .box-container .box .stars i{
    font-size: 1.7rem;
    color: gold;
}

.dessert .box-container .box .price{
    color: var(--primary);
    font-weight: bolder;
    margin-right: 1rem;
    font-size: 2.5rem;
}

.dessert .box-container .box .price span{
    color: var(--secondary);
    font-weight: lighter;
    font-size: 1.5rem;
    text-decoration: line-through;
}

/* dessert end */

/* gallery */

.gallery .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery .box-container .box{
    flex: 1 1 30rem;
    height: 25rem;
    box-shadow: var(--box-shadow);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

.gallery .box-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery .box-container .box .content{
    position: absolute;
    top: -100%; left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,.9);
    padding-top: 5rem;
    text-align: center;
}

.gallery .box-container .box:hover .content{
    top: 0;
}

.gallery .box-container .box .content h3{
    font-size: 2.5rem;
    color: var(--secondary);
}

.gallery .box-container .box .content p{
    font-size: 1.4rem;
    color: var(--light-color);
    padding: 1rem 0;
}

/* gallery end*/

/* review */

.review{
    background: var(--bg-color);
}

.review .review-slider{
    padding: 1rem;
}

.review .slide{
    background: var(--white);
    border-radius: .5rem;
    text-align: center;
    padding: 3rem 2rem;
    box-shadow: var(--box-shadow);
    transition: .2s linear;
}

.review .slide img{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
}

.review .slide p{
    padding: 1rem 0;
    line-height: 1.8;
    color: var(--light-color);
    font-size: 1.5rem;
}

.review .slide h3 {
    padding-bottom: .5rem;
    color: var(--primary);
    font-size: 2.2rem;
}

.review .slide .stars i{
    color: gold;
    font-size: 1.7rem;
}

/* review end*/

/* order */

.order .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.order .row .image{
    flex: 1 1 30rem;
}

.order .row .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order .row form{
    flex: 1 1 50rem;
    padding: 5rem;
    padding-top: 10rem;
}

.order .row form .inputBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.order .row form .inputBox input,
.order .row form textarea{
    padding: 1rem;
    margin: 1rem 0;
    font-size: 1.7rem;
    color: var(--light-color);
    border-radius: .5rem;
    width: 49%;
    border: .1rem solid var(--primary);
}

.order .row form textarea{
    resize: none;
    height: 15rem;
    width: 100%;
}

/* order end */

/* footer */

.footer{
    background: var(--bg-color);
    text-align: center;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.footer .box-container .box h3{
    text-transform: capitalize;
    font-size: 2.2rem;
    color: var(--primary);
    padding: 1rem 0;
}

.footer .box-container .box p {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--primary);
    padding: 1rem 0;
}

.footer .box-container .box .share{
    margin-top: 1rem;
}

.footer .box-container .box .share a{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: 10%;
    font-size: 1.7rem;
    background: var(--secondary);
    color: var(--white);
    margin-right: .3rem;
    text-align: center;
}

.footer .box-container .box .share a:hover{
    background: var(--primary);
}

.footer .box-container .box .link{
    font-size: 1.7rem;
    line-height: 2;
    color: var(--primary);
    padding: .5rem 0;
    display: block;
    text-decoration: underline;
}

.footer .box-container .box .link:hover{
    color: var(--secondary);
    text-decoration: underline;
}

.footer .credit{
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--primary);
    border-top: .1rem solid var(--primary);
}

.footer .credit span{
    color: var(--secondary);
}

/* footer end */

/* media  queries*/

@media (max-width: 991px) {

    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem;
    }

    section{
        padding: 2rem;
    }

}

@media (max-width: 768px) {

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 110%; right: -110%;
        width: 30rem;
        box-shadow: var(--box-shadow);
        border-radius: .5rem;
        background: var(--white);
    }

    .header .navbar.active{
        right: 2rem;
        transition: .4s linear;
    }

    .header .navbar a{
        font-size: 2rem;
        margin: 2rem 2.5rem;
        display: block;
    }

    .home .slide .content h3{
        font-size: 3.5rem;
    }

}

@media (max-width: 450px) {

    html{
        font-size: 50%;
    }

    .home .slide .content h3{
        font-size: 3rem;
    }

}