@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
:root{
    --main-color:#c08008;
    --black:#13131a;
    --bg:#010103;
    --border: .1rem solid rgba(255,255,255,.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;
    border-radius: 30px;
    background: var(--main-color);
    cursor: pointer;
}

.btn:hover{
    letter-spacing: .1rem;
}

.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 .logo:hover img{
    transform: scale(1.1);
}

.header .navbar a{
    padding: .9rem 2rem;
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #fff;
    border-radius: 30px;
    background: var(--bg);
    cursor: pointer;
}

.header .navbar a:hover{
    color: #fff;    
    background: var(--main-color);
    transform: scale(1.1);
    letter-spacing: .1rem;
}

.header .icons div{
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons div:hover{
    color: var(--main-color);
    transform: scale(1.2);
}

.header .icons a{
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons a:hover{
    color: var(--main-color);
    transform: scale(1.2);
}



#menu-btn{
    display: none;
}

.header .search-form{
    position: absolute;
    top:115%; right:5%;
    background: #333333;
    width: 50rem; 
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
    border-radius: 15px;
}

.header .search-form.active{
    transform: scaleY(1);
}

.header .search-form input{
    height: 100%; 
    width: 100%;
    font-size: 1.6rem;
    background: #333333;
    color: #fff;
    padding:1rem;
    text-transform: none;
    border-radius: 15px;
}

.header .search-form label{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color: #fff;
}

.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: 30rem;
    background: #1d1d1d;
    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: 2rem; right: 0rem;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

.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;
    width: 90%;
    color: #fff;
    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;
}







.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(../images/home-img.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content{
    max-width: 60rem;
}

.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: #fff;
    text-transform: none;
}





.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 .image .slider{
    overflow: hidden;
    border-radius: 10px;
}

.about .row .image .slider .slides{
    display: flex;
    width: 500%;
}

.about .row .image .slider .slides input{
    display: none;
}

.about .row .image .slider .slides .slide{
    width: 20%;
    transition: 1s;
}

.about .row .image .slider .slides .slide img{
    width: 100%;
}

.about .row .image .slider .navigation-manual{
    position: absolute;
    width: 100%;
    margin-top: -25px;
    display: flex;
    justify-content: left;
    margin-left: 15px;
}

.about .row .image .slider .navigation-manual .manual-btn{
    border: 2px solid var(--main-color);
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.about .row .image .slider .navigation-manual .manual-btn:not(:last-child){
    margin-right: 40px;
}

.about .row .image .slider .navigation-manual .manual-btn:hover{
    background: var(--main-color);
}

#radio1:checked ~ .first{
    margin-left: 0;
}

#radio2:checked ~ .first{
    margin-left: -20%;
}

#radio3:checked ~ .first{
    margin-left: -40%;
}

#radio4:checked ~ .first{
    margin-left: -60%;
}



.about .row .content{
    flex:1 1 45rem;
    padding: 2rem;
}

.about .row .content h3{
    font-size: 3rem;
    color:var(--main-color);
    text-transform: none;
}

.about .row .content p{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    text-transform: none;
}






.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);
    border-radius: 20px;
}

.menu .box-container .box img{
    height: 15rem;
    border-radius: 20px;
}

.menu .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding:1rem 0;
    text-transform: none;
}

.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: #fff;
}

.menu .box-container .box:hover > *{
    color: var(--black);
}






.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;
    border-radius: 20px;
}

.products .box-container .box .icons a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    border: var(--border);
    color: #fff;
    margin: .3rem;
}

.products .box-container .box .icons a:hover{
    background: var(--main-color);
}

.products .box-container .box .image{
    padding: 2.5rem 0;
    justify-content: center;
}

.products .box-container .box .image img{
    height: 25rem;
    border-radius: 20px;
}

.products .box-container .box:hover .image img{
    transform: scale(1.1);   
}

.products .box-container .box .content h3{
    color: #fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .star{
    font-size: 1.5rem;
}

.products .box-container .box .content .star i{
    font-size: 1.7rem;
    color: var(--main-color);
}

.products .box-container .box .content .price{
    font-size: 2.5rem;
    color: #fff;
}

.products .box-container .box .content .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 2.5rem;
    color: #fff;
}





.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: 1.8;
    color: #fff;
    padding: 2rem 0;

}

.review .box-container .box .quote{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .box-container .box p{
    padding: 1rem 0;
    font-size: 1.6rem;
    color: #fff;
    text-transform: none;
}

.review .box-container .box h3{
    padding: 1rem 0;
    font-size: 2rem;
    color: #fff;
}

.review .box-container .box .star i{
    font-size: 1.5rem;
    color: var(--main-color);
}







.contact .row{
    display: flex;
    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;
}





.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.blogs .box-container .box{
    border:var(--border);
}

.blogs .box-container .box .image{
    height: 25rem;
    overflow:hidden;
    width: 100%;
}

.blogs .box-container .box .image img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blogs .box-container .box:hover .image img{
    transform: scale(1.2);   
}

.blogs .box-container .box .content{
    padding: 2rem;
}

.blogs .box-container .box .content .title{
    font-size: 2rem;
    line-height: 1.5;
    color: #fff;
}

.blogs .box-container .box .content .title:hover{
    color: var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size: 2.2rem;
}

.blogs .box-container .box .content span{
    color: var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size: 1.5rem;
    text-transform: none;
}

.blogs .box-container .box .content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color: #ccc;
    padding:1rem 0 ;
    text-transform: none;
}





.footer{
    background: var(--black);
    text-align: center;
}

.footer .share{
    padding: 1rem 0;
}

.footer .share a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color:#fff;
    border:var(--border);
    margin: .3rem;
    border-radius: 50%;
}

.footer .share a:hover{
    background-color: var(--main-color);
    transform: scale(1.2);
}

.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    gap: 1rem;
}

.footer .links a{
    padding: .7rem 2rem;
    color:#fff;
    border: var(--border);
    font-size: 2rem;
}

.footer .links a:hover{
    background-color: var(--main-color);
}

.footer .credit{
    font-size: 2rem;
    color: #fff;
    font-weight: lighter;
    padding: 1.5rem;
}

.footer .credit a{
    color: var(--main-color);
}

.footer .credit a:hover{
    font-size: 2.1rem;
}














@media (max-width:1200px){

    html{
        font-size: 70%;
    }

    .header{
        padding:1.5rem 2rem;
    }

    section{
        padding: 2rem;
    }

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 100%; right: -100%;
        background: var(--bg);
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active{
        right: 0;
    }

    .header .navbar a{
        color: #fff;
        display: block;
        margin: 2rem;
        padding: .5rem;
        font-size: 2rem;
        text-align: center;
        text-transform: none;
    }

    .header .search-form{
        width: 90%;
        height: 6rem;
        right: 3rem;
    }

    .header .search-form input{
        font-size: 2rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 5rem;
    }

    .home .content p{
        font-size: 2rem;
    }

    .about .row .image{
        width: 50%;
    }
}

@media (max-width:420px){

    html{
        font-size: 70%;
    }

    .header{
        padding:0.5rem 1.5rem;
    }

    #menu-btn{
        display: inline-block;
    }

    .home .content h3{
        font-size: 10rem;
    }

    .header .navbar{
        position: absolute;
        top: 100%; right: -100%;
        background:var(--bg);
        width: 20rem;
        height: calc(100vh);
    }

    .header .navbar.active{
        right: 0;
    }

 

    .header .search-form{
        width: 90%;
        right: 1.7rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 3rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }

}