@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@1,200;1,300;1,400;1,700;1,800&family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root{
    --main-color:#d3ad7f;
    --blak:#13131a;
    --bg:#010103;
    --border:.1rem solid rgba(255,255,255, .3);
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}
html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width: 0.8rem;
}
html::-webkit-scrollbar-track{
    background: transparent;
}
html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: .5rem;
}
body{
    background:var(--bg)
}
.heading,.heading span{
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}
.heading span{
    color: var(--main-color);
    text-transform: uppercase;
}
.btn{
    margin-top: 1rem;
    font-size: 1.7rem;
    padding: .9rem 3rem;
    color: #fff;
    background:var(--main-color);
    display: inline-block;
    cursor: pointer;
}
.btn:hover{
    letter-spacing: .2rem;
}

section{
    padding: 2rem 7%;
}
/* header section */
header{
    background:var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-bottom: var(--border);
}
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 a{
    font-size: 2.5rem;
    margin: 0 1rem;
    color: #fff;
}
.header .icons a:hover{
    color: var(--main-color);
    cursor: pointer;
    transform: rotate(360deg);
}
#menu-btn{
    display: none;
}
header .search-form{
    position: absolute;
    top: 115%;
    right: 7%;
    width: 50rem;
    height: 5rem;
    background: #fff;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}
header .search-form.active{
    transform: scaleY(1);
}

header .search-form input{
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    padding: 1rem;
    color: var(--bg);
    text-transform: none;
}
header .search-form label{
    font-size: 2.2rem;
    margin-right: 2rem;
    color: var(--bg);
}
header .search-form label:hover{
    color: var(--main-color);
    cursor: pointer;
}
header .cart-item-container{
    position: absolute;
    top: 100%; right: -100%;
    background: #fff;
    padding: 0 2rem;
    height: calc(100vh - 9.5rem);
    width: 35rem;
}
header .cart-item-container.active{
    right:0 !important;
}
header .cart-item-container .cart-item{
    position: relative;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.cart-item-container .cart-item .fa-times{
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--blak);
}
.cart-item-container .cart-item img{
    height: 7rem;
}

.cart-item-container .cart-item h3{
    font-size: 2rem;
    color: var(--blak);
}
.cart-item-container .cart-item .price{
    font-size: 2rem;
}
header .cart-item-container .btn{
    width: 100%;
    text-align: center;
}

/* home section  */

.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(..//images/home-img.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.home .content{
    max-width: 60rem;
}
.home .content h3{
    color: #fff;
    font-size: 6rem;
    text-transform: uppercase;
}
.home .content p{
    color: #ccc;
    font-size: 2rem;
    line-height: 1.7;
    font-weight: lighter;
    padding: 1rem 0;
}
/* home section end */
/* section about */
.about .row{ 
    display: flex;
    align-items: center;
    background: var(--blak);
    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{
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
}
.about .row .content p{
    color:#ccc;
    font-size: 1.5rem;
    line-height: 1.8;
    padding: 1rem 0;
    font-weight: lighter;
}

/* section menu */
.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;
}
.menu .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    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;
    text-decoration: line-through;
}
.menu .box-container .box:hover{
    background: #fff;
}
.menu .box-container .box:hover > *{
    color: var(--blak);
}

/* section products */
.products .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: center;
}
.products .box-container .box{
    flex: 1 1 30rem;
    border: var(--border);
    padding: 2rem;
    position: relative;
    text-align: center;
}
.products .box-container .box:hover{
    box-shadow: 0 .7rem 1rem rgba(255, 255, 255,.4);
}

.products .box-container .box .icons a{
    width: 5rem;
    height: 5rem;
    line-height:5rem;
    color: #fff;
    font-size: 2rem;
    border: var(--border);
    margin: .3rem;
}
.products .box-container .box .icons a:hover{
    background:var(--main-color);
}
.products .box-container .box .image {
    padding: 2.5rem 0;
}
.products .box-container .box .image img{
    height: 25 rem;
}
.products .box-container .box .content h3{
    color: #fff;
    font-size: 2.5rem;
    text-transform: capitalize;
}
.products .box-container .box .stars{
    color: var(--main-color);
    font-size: 1.7rem;
    padding: 1.5rem;
}
.products .box-container .box .price{
    color: #fff;
    font-size: 2.2rem;
}
.products .box-container .box .price span{
    color: var(--main-color);
    font-size: 1.5rem;
    text-decoration: line-through;
}

/* section review */
.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
     gap: 1.5rem;
     text-align: center;
}
.review .box-container .box{
    text-align: center;
    border: var(--border);
    padding: 2rem;
}
.review .box-container .box p{
    font-size: 1.5rem;
    color: #ccc;
    line-height: 1.8;
    padding: 2rem 0;
}
.review .box-container .box .user{
    width:10 rem;
    height:10rem;
    border-radius: 50%;
    object-fit: cover;
}
.review .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding: 1rem 0;
}
.review .box-container .box .stars i{
    color: var(--main-color);
    font-size: 1.5rem;

}
/* contact start */

.contact .row{
    display: flex;
    flex-wrap: wrap;
    background:var(--blak);
    gap: 1.5rem;

}
.contact .row .map{
    width: 100%;
    object-fit: cover;
    flex: 1 1 45rem; 
}
.contact .row form{
    flex: 1 1 45rem;
    padding:5rem 2rem;
    background:var(--blak);
}

.contact .row form h3{
    color: #fff;
    font-size:4rem;
    text-transform: uppercase;
}
.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin: 2rem 0;
    background:var(--black);
    border: var(--border);
}
.contact .row form .inputBox span{
    color: #fff;
    font-size: 2rem;
    padding-left: 2rem;
    text-align: center;
}
.contact .row form .inputBox input{
    width: 100%;
    padding: 1.5rem;
    font-size: 1.7rem;
    text-transform: none;
    color: #fff;
    background: none;
}
.contact .row form .btn{
    width: 100%;
}

.blogs .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}
.blogs .box-container .box{
    flex: 1 1 30rem;
    border: var(--border);
}
.blogs .box-container .box .images{
    width: 100%;
    overflow: hidden;
    height: 25rem;
}

.blogs .box-container .box .images img{
    width: 100%;
    object-fit: cover;
    height:100%;
}
.blogs .box-container .box:hover .images img{
    transform: scale(1.2);
}
.box-container .box .content{
    padding:2rem;
}
.box-container .box .content .title{
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.5;
}
.box-container .box .content .title:hover{
    color: var(--main-color);
}
.box-container .box .content span{
    color: var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size:2rem;
}
.box-container .box .content p{
    color: #ccc;
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 1rem 0;

}
.footer{
    background:var(--blak);
    text-align: center;
}
.footer .shar{
    padding: 1rem 0;
}
.footer .shar a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    border: var(--border);
    color: #fff;
    font-size: 2rem;
    margin: .3rem;
}
.footer .shar a:hover{
    background:var(--main-color);
}
.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    gap:1rem;
}
.footer .links a{
    padding: .7rem 2rem;
    border: var(--border);
    color: #fff;
    font-size: 2rem;
}
.footer .links a:hover{
    background:var(--main-color);
}
.footer .credit{
    margin-top: 2rem;
    color: #fff;
    font-size: 3rem;
    font-weight: lighter;
}
.footer .credit span{
    color: var(--main-color);
    border-bottom: var(--border);
}


































/* media queries */
@media(max-width:991px){
    html{
        font-size: 55%;
    }
    .header{
        padding: 1.5rem 2rem;
    }
    section{
        padding: 2rem;
    }
}
@media(max-width:768px){
    html{
        font-size: 55%;
    }
    .header{
        padding: 1.5rem 2rem;
    }
    .header .search-form{
        width: 90%;
        right: 2rem;
    }
    .home{
        background-position: left;
    }
    .home .content h3{
        font-size: 4.5rem;
    }
    .home .content p{
        font-size: 1.5rem;
    }
}

@media(max-width:450px){
    html{
        font-size: 50%;
    }
   #menu-btn{
       display: inline-block;
   }
   .header .navbar{
       position: absolute;
       top: 100%;
       right: -100%;
       background: #fff;
       width: 35rem;
        height: calc(100vh - 9.5rem);
    }
    .header .navbar.active{
        right: 0;
    }
   .header .navbar a{
       display: block;
       margin: 1.5rem  .5rem;
       color: var(--blak);
        padding: 1rem;
   }
   .home{
    justify-content: center;
    text-align: center;
    }
    .footer .credit{
        font-size: 2rem;
    }
}
