@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Roboto:ital,wght@0,400;1,300&display=swap');

:root {
    --main-color:#d3ad7f;
    --black: #13131a;
    --bg:#010103;
    --border:0.1rem solid rgba(225,225,225, 0.3);

}

* {
    font-family: 'Roboto', sans-serif;
    margin:0;
    padding:0;
    outline:none;
    box-sizing: border-box;
    border:none;
    text-decoration:none;
    text-transform: capitalize;
    transition: 0.2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    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);
}
section {
    padding: 2rem 7%;
}

.header {

    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content:space-between;
    border-bottom: var(--border);
    padding:1.5rem 7%;
    color: #fff;
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1;
}


.header .logo img{
    height:5rem;
    margin-right: 1rem;
}

.header .navbar a {
    margin: 0 1rem;
    font-size:2.2rem;
    color:#fff
}

.header .navbar a:hover {
    color:var(--main-color);
    border-bottom: 0.25rem solid var(--main-color);
    padding-bottom:0.5rem;
}

.header .icons {
    font-size:2.2rem;
    text-align:center;
    cursor:pointer;
    margin-right: 5rem;

}
.header .icons div {
    padding: 1rem;
}
.header .icons div:hover {
    color:var(--main-color);
}

#menu-btn {
    display: none;
}

.header .search-form{
    position:absolute;
    top:115%; right:7%;
    width:50rem;
    height:5rem;
    display:flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}

.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(/images/home-img.jpeg) no-repeat;
    background-size: cover;
    background-position:center;
}

.home .content {
    color:#fff;
    max-width: 60rem;
}

.home .content h3 {
    font-size: 6rem;
    text-transform: uppercase;
}
.home .content p {
    font-size:2.5rem;
    margin-bottom: 3rem;
}


.btn {
    display: inline-block ;
    padding: 0.5rem 3rem;
    color: #fff;
    font-size: 2rem;
    background-color: var(--main-color);
    cursor: pointer;

}
.btn:hover{
    letter-spacing: .2rem;
}

.heading h1{
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 5rem 1rem;
    font-size: 5rem;
}

.heading span{
    color: var(--main-color);
    text-transform: uppercase;
}

.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 .content {
    color:#fff;
    margin: 10rem 2rem;
}

.about .row .content h3{
    font-size: 3rem;
}

.about .content p{
    font-size: 1.6rem;
    color:#ccc;
    padding:1rem 0;
    line-height: 1.8;
}


.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
    gap:1.5rem;
}   

.menu .box-container .box {
    text-align: center;
    border: 0.1rem solid #fff;
    padding: 5rem;
    color:#fff
}

.menu .box-container .box h3 {
    padding: 1rem;
    font-size:2rem;
}

.menu .box-container .box .price {
    padding: 1rem 2rem;
    font-size:3rem;
}

.menu .box-container .box .price span {
    padding: 1rem;
    font-size:2rem;
    text-decoration:line-through;
    font-weight: lighter;
}

.menu .box-container .box:hover {
    background-color:#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 {
    color: #fff;
    text-align: center;
    border: 0.1rem solid #fff;
}

.products .icons a {
    padding: 1.5rem;
    margin: 2rem 1rem;
    font-size:2rem;
    border: 0.1rem solid #fff;
    color: #fff;
}

.products .icons a:hover{
    background-color: var(--main-color);
}
.products .icons div:hover {
    color:var(--main-color);
}

.products .box-container .box h3 {
    padding: 1rem;
    font-size:3rem;
}


.products .box-container .box .price {
    padding: 1rem 2rem;
    font-size:3rem;
}

.products .box-container .box .price span {
    padding: 1rem;
    font-size:2rem;
    text-decoration:line-through;
    font-weight: lighter;
}


.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}
.review .box-container .box {
    color: #fff;
    text-align: center;
    border: 0.1rem solid #fff;
}

.review .box-container .box img {
    margin: 3rem 0;
}

.review .box-container .box p {
    margin: 1rem 0;
    font-size:1.5rem;
    line-height:1.8;
    color: #ccc;
}
.review .box-container .box .user {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    color: #ccc;
}

.review .box-container .box .stars i{
    font-size: 1.5rem;
    color:var(--main-color);
}

.review .box-container .box h3{
    padding:1rem 0;
    font-size: 2rem;
    color:#fff;
}

.review .box-container .box i{
    margin-bottom: 5rem;
    font-size: 2rem;
    color:#fff;
}


.contact .row {
    display: flex;
    align-items:center;
    background:var(--black);
    flex-wrap:wrap;
}

.contact .row iframe {
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
}
.contact .row form{
    flex:1 1 45rem;
    color:#fff;
    margin: 5rem 5rem; 
    text-align: center;
  
}

.contact .row form h3{
    font-size: 3rem;
    text-transform: uppercase;
}

.contact .row form .inputBox {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    margin-top: 2rem;
    margin-bottom:2rem;
    background:var(--bg);
    border:var(--border);

}

.contact .row form .inputBox span {
    font-size:3rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input {
    width: 100%;
    padding: 2rem;
    background:var(--bg);
}

.blogs .box-container {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.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{
    border: 0.05rem solid #fff;
}


.blogs .box-container .box .content{
    margin:2rem 2rem;
    display: block;
    color:#fff;
}

.blogs .box-container .box .content .title{
    font-size: 2.5rem;
    line-height: 1.5;
    color:#fff;
}

.blogs .box-container .box .content .title:hover{
    color:var(--main-color);
}

.blogs .box-container .box .content span{
    color:var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.blogs .box-container .box .content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color:#ccc;
    padding:1rem 0;
}

.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);
}

.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:var(--main-color);
}

.footer .credit{
    font-size: 2rem;
    color:#fff;
    font-weight: lighter;
    padding:1.5rem;
}

.footer .credit span{
    color:var(--main-color);
}













/* 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{
        color:var(--black);
        display: block;
        margin:1.5rem;
        padding:.5rem;
        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;
    }

}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

}