@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400&family=Caveat&family=Libre+Baskerville&family=Open+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Poppins:ital,wght@1,100&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap');

:root{
    --main-color:#d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: .1rem solid rgba(225,225,225,.3);
}

*{
    font-family: 'Roboto', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none;
     border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}
 html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width: .8rem;
}
html::-webkit-scrollbar-track{
    background: transparent;
}
html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}
/* ===================================================== */
body{
    background: var(--bg);
}
section{
    padding: 2rem 7%;
}
.heading{
    text-align:center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}
.heading span{
    color: var(--main-color);
    text-transform: uppercase;
}
/* ============================================================ */

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
    border-radius: 30px;
}
.btn:hover{
    letter-spacing: .1rem;
    background: #a6865e;
}

/* ============================================================ */

.header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top: 0; left: 0; right: 0;
    /* z-index: 1000; */
 }

.header .logo img{
    height: 6rem;
    width: 10rem;
    
}
.header .navbar a{
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #fff;
}


.header .navbar a:hover{
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}
.header .icons div{
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}
.header .icons div:hover{
    color: var(--main-color);
}  

#menu-btn{
    display: none;
    cursor: pointer;
}

.header .search-form{
    position: absolute;
    top: 115%; right: 7%;
    background: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}
.header .search-form.active{
    transform: scaleY(1);
}

.header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color: var(--black);
    padding: 1rem;
    text-transform: none;
}

.header .search-form label{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color: var(--black);
}
.header .search-form label:hover{
    color: var(--main-color);
}

.header .cart-items-container{
    position: absolute;
    top: 100%; right: -100%;
    height: calc(100vh - 9.5rem);
    width: 35rem;
    background: #fff;
    padding: 0 1.5rem;
}

.header .cart-items-container.active{
    right: 0;
}

.header .cart-items-container .cart-item{
    position: relative;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header .cart-items-container .cart-item .fa-times{
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}
.header .cart-items-container .cart-item .fa-times:hover{
    color: var(--main-color);
}
.header .cart-items-container .cart-item img{
    height: 7rem;
}
.header .cart-items-container .cart-item .content h3{
    font-size: 2rem;
    color: var(--black);
    padding-bottom: .5rem; 
}
.header .cart-items-container .cart-item .content .price{
    font-size: 1.5rem;
    color: var(--main-color);
}

.header .cart-items-container .btn{
    width: 100%;
    text-align: center;
}
/* ---------------------------------------------------------------------------------------------------------  */
/* Login Page CSS */

.login-form-container{
    position: fixed;
    top: -130%;left: 0; /*First top:0;  --> To build login page , then -120% to hide it*/
    z-index: 10000;
    min-height: 100vh;
    width: 100%;
    background: rgba(0,0,0,.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-container.active{
    top: 0;
}

.login-form-container form {
    margin: 2rem;
    padding: 1.5rem 2rem;
    border-radius: .5rem;
    background: #fff;
    width: 50rem;
}
.login-form-container form h3{
    font-size: 3rem;
    color: #444;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 0;
}
.login-form-container form .box{
    width: 100%;
    padding: 1rem;
    font-size: 1.7rem;
    color: #333;
    margin: .6rem 0;
    border: .1rem solid rgba(0,0,0,.3);
    text-transform: none;
}
.login-form-container form .box:focus{
    border-color: var(--orange);
}

.login-form-container form #remember{
    margin: 2rem 0;
}
.login-form-container form .login{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.login-form-container form label{
    font-size: 1.5rem;
}

.login-form-container form .btn1{
    display: block;
    width: 100%;
} 

.login-form-container form p{
    padding: .5rem 0;
    font-size: 1.5rem;
    color: #666;
}
.login-form-container form p a{
    color: #f39c12;
    text-decoration: underline;
}
.login-form-container form p a:hover{
    color: #333;
    text-decoration: underline;
}

/* Form close  */

.login-form-container #form-close{
    position: absolute;
    top: 2rem; 
    right: 3rem;
    font-size: 5rem;
    color: #fff;
    cursor: pointer;
}

#menu{
    color: #fff;
    border: .1rem solid #fff;
    border-radius: .5rem;
    font-size: 3rem;
    padding: .5rem 1.2rem;
    cursor: pointer;
    display: none;
}

/* ---------------------------------------------------------------------------------------------------------  */
/* ================Home CSS=============== */
.home{
    min-height: 100vh;
    display: flex;
    align-content: center;
    background: url(../Images/Pizza_backG.jpg) no-repeat;
    /* filter: blur(8px);
  -webkit-filter: blur(8px); */
    background-size: cover;
    background-position: center;
    /* margin-top: 10rem; */
}
.home .content{
    max-width: 60rem;
    margin-top: 22rem;
}
.home .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color: #fff;
}
.home .content p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding: 1rem 0;
    color: #eee;
}

/* ================About CSS=============== */

.about .row{
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
}

.about .row .image{
    flex: 1 1 45rem;
}

.about .row .image img{
    width: 100%;
}
.about .row .content{
    flex: 1 1 45rem;
    padding: 2rem;
}
.about .row .content h3{
    font-size: 3rem;
    color: #fff;
}
.about .row .content p{
    font-size: 1.6rem;
    color: #eee;
    padding: 1rem 0;
    line-height: 1.8;
}

/* ================Menu CSS=============== */

.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}
.menu .box-container .box{
    /* padding: 5rem; */
    padding: 2rem 0;
    text-align: center;
    border: var(--border);
}
.menu .box-container .box img{
    height: 10rem;
}
.menu .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding: 1rem 0;
}
.menu .box-container .box .price{
    color: #fff;
    font-size: 2.5rem;
    padding: .5rem 0;
}
.menu .box-container .box .price span{
    /* color: #fff; */
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}
.menu .box-container .box:hover{
    /* background: #d9d7d7; */
    background: linear-gradient(#c1c2c5, #0e0e0e);
    /* transition: 2s; */
}
.menu .box-container .box:hover > *{
    /* color: var(--black); */
    color: #fdfdff;
    /* font-weight: 500; */
}


/* ====================Product CSS======================== */

.products .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}
.products .box-container .box{
    text-align: center;border: var(--border);
    padding: 2rem;
}
.products .box-container .box:hover{
    background: linear-gradient(#4d4d4f, #060606);
}

.products .box-container .box .icons a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 1.5rem;
    border: var(--border);
    color: #fff;
    margin: .3rem;
}
.products .box-container .box .icons a:hover{
    background: var(--main-color);
}

.products .box-container .box .image{
    padding: 1.2rem 0;
}
.products .box-container .box .image img{
    height: 20rem;
    width: 25rem;  /*Extra add*/
}

.products .box-container .box .content h3{
    color: #fff;
    font-size: 2rem;
}
.products .box-container .box .content .stars{
    padding: 1.5rem;
}

.products .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--main-color);
}

.products .box-container .box .content .price{
    color: #fff;
    font-size: 2.5rem;
}
.products .box-container .box .content .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
}



/* ====================Review CSS======================== */

.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}
.review .box-container .box{
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
}
.review .box-container .box p{
    font-size: 1.5rem;
    line-height: q.8;
    color: #ccc;
    padding: 2rem 0;
}
.review .box-container .box .quote{
    height: 4rem;
    width: 5rem;
    /* border-radius: 50%; */
    object-fit: cover;
    left: 0;
}
.review .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}
.review .box-container .box h3{
    padding: 1rem 0;
    font-size: 2rem;
    color: #fff;
}
.review .box-container .box .stars i{
    font-size: 1.5rem;
    color: var(--main-color);
}


/* ====================Contact CSS======================== */

.contact .row{
    display: flex;
    /* align-items: center; */
    background: var(--black);
    flex-wrap: wrap;
    gap: 1rem;
}

.contact .row .map{
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
}
.contact .row form{
    flex: 1 1 45rem;
    padding: 5rem 2rem;
    text-align: center;
}
.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color: #fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: var(--bg);
    border: var(--border);
}
.contact .row form .inputBox span{
    color: #fff;
    font-size: 2rem;
    padding-left: 2rem;
}
.contact .row form .inputBox input{
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color: #fff;
    text-transform: none;
    background: none;
}

/* ==============================Footer CSS=====================  */
.footer{
    background: #333;
}
.footer .box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.footer .box-container .box{
    margin: 1.5rem;
    text-align: center;
    flex: 1 1 25rem;
}
.footer .box-container .box h3{
    font-size: 2.5rem;
    color: #fff;
    padding: 1rem 0;
}
/* .footer .box-container .box h3:hover{
    color: #db850d;
} */
.footer .box-container .box p{
    font-size: 1.7rem;
    color: #eee;
    padding: .7rem 0;
}
.footer .box-container .box p i{
    padding-right: .5rem;
    color: #f39c12;
}
.footer .box-container .box a{
    font-size: 1.8rem;
    display: block;
    padding: .5rem 0;
    color: #eee;
}
.footer .box-container .box a:hover{
    text-decoration: underline;
    color: #f39c12;
}
.footer .credit{
    padding: 2rem 1rem;
    font-size: 2rem;
    color: #fff;
    background: #111;
    text-align: center;
}
 

/*============Go to top css==========*/
.gototop{
    position:fixed;
    width: 35px;
    height: 35px;
    background: linear-gradient(#f5eded, #010103);
    bottom: 15px;
    right: 15px;

    text-decoration: none;
    align-items: center;
    line-height: 50px;
    color: #fff;
    font-size: 22px;
    border-radius: 40%;

    z-index: 1;
} 
.gototop i{
    padding-left: 2.5px;
    font-size: 30px;
}


/* ================================== */


/* .header .navbar a.active{
    color: red;
} */









/* ===============================Media Queries================================= */

@media (max-width:991px){
    html{
        font-size: 55%;
    }
    .header{
        padding: 1.5rem 2rem;
    }
    section{
        padding: 2rem ;
    }
}
@media (max-width:778px){
    #menu-btn{
        display: inline-block;
        /* background: var(--bg); */
    }
    /* ------------------------------- */
    .header{
        padding: 1.5rem 2rem;
    }
    section{
        padding: 2rem ;
    }
    /* ------------------------------- */
    .header .navbar{
        position: absolute;
        top: 100%; right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active{
        right: 0;
    }

    .header .navbar a{
        color: var(--black);
        display: block;
        margin: 1.5rem;
        padding: 1.rem;
        font-size: 2rem;
    }

    .header .search-form{
        width: 90%;
        right: 2rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }
    .home .content h3{
        font-size: 4.5rem;
    }
    .home .content p{
        font-size: 1.5rem;
    }


    /* Extra  */
    .header .navbar{
        background: var(--bg);
        /* display: inline-block; */
    }
    .header .navbar a{
        background: #fff;
        padding: 1.5rem;
        font-size: 2rem;
        background: linear-gradient(#f5eded, #787671);
    }
    .header .navbar a:hover{
        text-decoration: underline;
        color: #010103;
    }
   
}
@media (max-width:450px){
    html{
        font-size: 50%;
    }
     /* ------------------------------- */
     .header{
        padding: 1.5rem 2rem;
    }
    section{
        padding: 2rem ;
    }
    /* ------------------------------- */
}
