@import url('https://fonts.googleapis.com/css2?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;1,900&display=swap');


:root{
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: .1rem solid rgba(255,255,255, .3);
}
*{
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 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;
}

/*  */
/* html::-webkit-scrollbar{
    width: 1rem;

}
html::-webkit-scrollbar-track{
    background:#444 ;
}
html::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 5rem;
} */
/*  */
body{
    background: var(--bg);
}
/* btn class style */
.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
}

.btn:hover{
    letter-spacing: .2rem;
}

/* heading class style for h1 */
.heading{
    font-size: 4rem;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    text-align: center;
}

.heading span{
    color: var(--main-color);
    text-transform: uppercase;
    
}

/* section padding */
section{
    padding: 2rem 7%;
}
/* header section starts */
.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;
}

.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;
}

.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.5rem;
    margin-right: 1.5rem;
    color:var(--black) ;
    /* transform: scaleY(0); */
    transform-origin:top ;
}

.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;
}

/* header section ends */

/* home section starts */
.home {
    min-height:100vh;
    display: flex; 
    align-items: center;
    background: url('../images/Untitled-10.png')  ;
    background-position: center;
    background-size: cover;
}

.home .content{
    max-width: 60rem;
}

.home .content h3{
    font-size: 6rem ;
    text-transform: uppercase;
    color: #fff;
}

.home .content p{
    font-size: 2rem ;
    text-transform: capitalize;
    font-weight: lighter;
    line-height: 1.8;
    padding: 1rem 0;
    color: #eee;
}
/* home section ends */
/* about section starts */

.about .row{
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
    /* gap: 1rem; */
    

}

.about .row .image{
    flex: 1 1 45rem;
    /* overflow: hidden; */
    width: 100%;
    overflow: hidden;
}

.about .row .image img{
    width: 100%;
    object-fit: cover;
    /* height: 100%; */
    transform: scale(1.3);

}

.about .content{
    flex:1 1 45rem ;
    padding: 2rem;
}

.about .content h3{
    color: var(--main-color);
    font-size: 3rem;
}

.about .content p{
    font-size: 1.6rem ;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    font-weight: lighter;
}


/* about section ends */
/* menu section starts */
.menu .box_container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
    gap: 1.5rem;
}

.menu .box_container .box{
    padding: 5rem;
    text-align: center;
    border: var(--border);
}

.menu .box_container .box img{
    height: 10rem;
    border-radius:0rem;
    /* width: 100%; */
}
.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{
    font-size: 1.5rem;
    padding: .5rem 0;
    text-decoration: line-through;
}
.menu .box_container .box:hover{
    background: #fff;
}

.menu .box_container .box:hover > *{
    color: var(--black);
}

/* menu section ends */

/* products section starts */
.products .box_container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
    gap: 1.5rem;
    text-align: center;
}

.products .box_container .box{
    position: relative;
    padding:2rem;
    border: var(--border);
    overflow: hidden;
    text-align: center;

}

.products .box_container .box .icons{
    position: absolute;
    top: -100%;
    text-align: center;
    margin: auto;
    left: 45%;
    transform: translateX(-45%);

}

.products .box_container .box:hover .icons{
    position: absolute;
    top: 1rem;

}
.products .box_container .box .icons a{
    color: #fff;
    border: var(--border);
    font-size: 2rem;
    margin: .3rem;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;

}

.products .box_container .box .icons a:hover{
    background:var(--main-color);

}



.products .box_container .box .image{
    padding: 4.5rem 0 2.5rem 0;
    text-align: center;
}

.products .box_container .box .image img{
    height: 25rem;
    /* width: 100%; */
}
/* .products .box_container .box .content{
    text-align: center;
    margin: auto;
} */
.products .box_container .box .content h1{
    font-size: 2.5rem;
    color: #fff;
    /* padding-top: 1rem; */
}

.products .box_container .box .content .stars{
    /* display: inline-block;
    text-align: center; */
    padding: 1.5rem;
}
.products .box_container .box .content .stars i{
    color: var(--main-color);
    font-size: 1.7rem;
    /* margin-left: .2rem; */
    
}

.products .box_container .box .content .price{
    color: #fff ;
    font-size: 2.5rem;
}

.products .box_container .box .content .price span{
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
    color: var(--main-color);
}

/* products section ends */
/* review section starts */
.review .box_container{
    display: grid;
    grid-template-columns: repeat(auto-fit , minmax(33rem,1fr));
    gap: 1.5rem;
}

.review .box_container .box{
    border: var(--border);
    padding: 3rem 2rem;
    text-align: center;
}

.review .box_container .box .quote{
    height: 4rem;
    width: 5rem;
}

.review .box_container .box p{
    font-size: 1.5rem ;
    font-weight: lighter;
    line-height: 1.8;
    padding: 2rem ;
    color: #ccc;
    
}

.review .box_container .box .user{
    border-radius: 50%;
    height: 7rem !important;
    width: 7rem;
    object-fit: cover;
    filter: saturate(1);
   
}

.review .box_container .box:hover .user{
    filter: saturate(0);
}

.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);
}


.review .box_container .box .user{
    height: 25rem;
}

/* review section ends */

/* contact section starts */
.contact .row{
    display:flex ;
    flex-wrap: wrap;
    /* align-items: center; */
    background: var(--black);
    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{
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
}

.contact .row form .inputBox{
    display: flex;
    border: var(--border);
    padding: 1rem 2rem;
    color: #fff;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: var(--bg);
}

.contact .row form .inputBox span{
    /* width: 2rem;
    height: 3rem;  */
    font-size: 2rem;
    /* line-height: 3rem; */
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    background: transparent;
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    text-transform: none;
    color: #fff;

}

/* contact section ends */

/* blogs section starts */

.blogs .box_container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem , 1fr));
    gap: 1.5rem;
    
}

.blogs .box_container .box{
    background: var(--bg);
    border: var(--border);
   
    
}

.blogs .box_container .box .image{
    /* padding: 4.5rem 0 2.5rem 0; */
    text-align: center;
    overflow: hidden;
    height: 25rem;
    /* padding-top: 1.5rem; */
    width: 100%;

}

.blogs .box_container .box .image img{
    object-fit: cover;
    height: 100%;
    width: 100%;


}

.blogs .box_container .box .image:hover img{
    transform: scale(1.2);
}

.blogs .box_container .content{
     padding: 2rem ;
}

.blogs .box_container .content .title{
    line-height: 1.5;
    color: #fff;
    font-size: 2.5rem;
}

.blogs .box_container .content .title:hover{
    color: var(--main-color);
}


.blogs .box_container .content span{
    display: block;
    color: var(--main-color);
    font-size: 2rem;
    padding-top: 1rem ;
}

.blogs .box_container .content p{
    color: #ccc;
    font-size: 1.5rem;
    font-weight: lighter;
    line-height: 1.8;
    padding: 1rem 0;
}


/* blogs section ends */

/* footer section starts */
.footer{
    /* display: flex;
    flex-wrap: wrap;
    gap: 1.5rem; */
    background: var(--black);
    text-align: center;

}

.footer .shar{
    padding: 1rem 0;
    
}

.footer .shar a{
    display: inline-block;
    color: #fff;
    height: 5rem ;
    width: 5rem;
    font-size: 2rem;
    line-height: 5rem;
    /* background: #fff; */
    border:var(--border);
    margin: .3rem;
    border-radius: 50%;


}
.footer .shar a:hover{
    background-color: var(--main-color);
}


.footer .links{
    padding: 2rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;

}


.footer .links a{
    
    color: #fff;
    border: var(--border);
    padding: .7rem 2rem ;
    font-size: 2rem;
}

.footer .links a:hover{
    background-color: var(--main-color);
}

.footer .credit{
    border-top: .1rem solid var(--bg);
    padding: 1.5rem;
    color: #fff;
    font-size: 2rem;
    font-weight: lighter;
}

.footer .credit span{
    color: var(--main-color);
}






/* footer section ends */





/*media queries  */

@media (max-width:991px) {
    html{
        font-size: 55%;
    }

    .header{
        padding: 1.5rem 2rem;
    }

    .section{
        padding: 2rem;
    }
    
}

@media (max-width:768px) {
    #menu-btn{
        display: inline-block;
    }


    .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{
        display: block;
        margin: 1.5rem;
        padding: .5rem;
        font-size: 2rem;
        color:var(--black);
        
    }

    /* .header .search-form{
        width: 90%;
        right: 2rem;
    } */

    .home {
        /* background-position: left; */
        justify-content: center;
    }

    .home .content h3{
        font-size: 4.5rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }
}

@media (max-width:450px) {
    html{
        font-size: 50%;
    }
}



