

:root{
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: .1rem solid rgba(255,255,255,.3)
}
*{
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 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: 2rem;
    transition: 0.5s ease-in;
    border: solid 1px #fff;
}
.btn:hover{
    background: var(--black);
    border: solid 1px var(--main-color);
    border-radius: 2rem;
}
.header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    
}

.header .logo img{
    height: 2rem;
}
.header .navbar a{
    margin: 0 1rem;
    font-size: 1.2rem;
    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: 2rem;
    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-color: #fff;
    width: 50rem;
    height: 7rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
    padding: 0 2rem;
    border-radius: 2rem;
    border: solid 1px var(--main-color);
}
.header .search-form.active{
    transform: scaleY(1);

}
.header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 2rem;
    color: var(--black);
    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;
    transition: 0.5s ease-in-out;
    border-radius: 2rem 0 0 2rem;
}
.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;
}
.home{
    min-height: 100vh;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 4rem;
    background: url(images/home-img.jpeg) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    /* height: auto; */


}
.home .content{
    max-width: 60rem;
}
.home .content h3{
    font-size: 4rem;
    text-transform: uppercase;
    color: #fff;
}
.home .content p{
    font-size:1.5rem;
    font-weight: lighter;
    line-height: 1.8;
    padding: 1rem 0;
    color: #eee;
}
.about{
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.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: #fff;
    padding: 1rem 0;
    line-height: 1.8;
}
.menu{
    margin-top: 2rem;
    margin-bottom: 4rem;
}
.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:2rem;

}
.menu .box-container .box{
    color: #fff;
    padding: 5rem;
    text-align: center;
    border: var(--border);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    border-radius: 2rem;
    transition: 0.3s ease-in-out;
}
.menu .box-container .box:hover{
    color: var(--bg);
    background-color: #fff;
    padding: 5rem;
    text-align: center;
    border: var(--border);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    border-radius: 2rem;
}


.menu .box-container .box img{
    height: 10rem;
    width: fit-content;

}
.menu .box-container .box h3{
    /* color: #fff; */
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    
}
.menu .box-container .box span{
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 800;
}
.price{
    /* width: fit-content; */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
}

.products{
    margin-top: 5rem;
    margin-bottom: 4rem;
    background-color: var(--black);
    padding-top: 4rem;
}
.products .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:2rem;

}
.products .box-container .box{
    background-color: var(--bg);
    color: #fff;
    padding: 5rem;
    text-align: center;
    border: var(--border);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    border-radius: 2rem;
    transition: 0.3s ease-in-out;
}
.products .box-container .box:hover{
    color: var(--bg);
    background-color: #fff;
    padding: 5rem;
    text-align: center;
    border: var(--border);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    border-radius: 2rem;
}


.products .box-container .box img{
    height: 10rem;
    width: fit-content;

}
.products .box-container .box h3{
    /* color: #fff; */
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    
}
.products .box-container .box span{
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 800;
}
 .products .price{
    /* width: fit-content; */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
}
.review{
    width: 100%;
    height: auto;
    margin-bottom: 4rem;
    background-color: var(--black);
    padding-top: 8rem 4rem 4rem 4rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
}
.review-header{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    row-gap: 0.5rem;
    margin-top: 4rem;
}
.review-header h2{
    font-size: 2.5rem;
    color: var(--main-color);
    font-weight: 600 ;
    font-style: italic;
    letter-spacing: 0.05rem;
    line-height: 2.8rem;

}
.review-header span{
    font-size: 1.2rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.05rem;
    line-height: 1.5rem;

}
.review .box-container{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    column-gap: 4rem;
    row-gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.review-box{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-color: #fff;
    border-radius: 2rem;
    padding: 4rem;
    color: var(--bg);
    row-gap: 2rem;
    transition: 0.5s ease-in-out;
}
.review-box:hover{
    border: solid 1px var(--main-color);
    transform: skew(5deg);
}
.first-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;


}
.first-section i{
    color: var(--black);
    font-size: 1rem;

}

.first-section img{
    width: 10rem;
    height: 10rem;
    border-radius: 2rem;

}
.second-section{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    row-gap: 0.5rem;
}
.second-section h2{
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    color: var(--bg);
    font-style: italic;

}
.second-section p{
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06rem;
    line-height: 1.5rem;
    color: var(--black);
}
.second-section span{
    font-size: 2rem;
    color: var(--main-color);
}

.circles{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
}
.cycle{
    width: fit-content;
    height: auto;
    padding: 0.5rem;
    background-color: var(--main-color);
    border-radius: 4rem;
}
.active-circle{
    background-color: #fff;
    width: fit-content;
    height: auto;
    padding: 0.5rem;
    border-radius: 4rem;
}

.blog{
    width: 100%;
    height: auto;
    background-color: var(--main-color);
    padding: 4rem 8rem;
}

.blog-section-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 4rem;
    margin-bottom: 4rem;
}
.blog-header{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.blog-header h1{
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    line-height: 2.8rem;
    color: #fff;
}
.blog-header span{
    color: var(--black);
}


.post-container{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 4rem;
}
.post-box{
    width: 33%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    border: solid 1px #fff;
    border-radius: 2rem;
    padding: 4rem;
    row-gap: 1rem;
    background-color: #fff;
    transition: 0.3s ease-in-out;
    
}
.post-box:hover{
    transform: scale(1.05);
    border: solid 1px #fff;
}
.post-box h2{
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 2.8rem;
    color: var(--black);
    text-align: center;
}
.post-box p{
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
    line-height: 2rem;
    color: var(--black);
    text-align: center;
}
.post-box a{
    text-decoration: none;
   

}
.post-box button{
    font-size: 1.8rem;
    padding: 2rem 4rem;
    font-size: 400;
    line-height: 1.5rem;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 2rem;
    border: none;
    transition: 0.3s ease-in;
}
.post-box button:hover{
    background-color: #fff;
    color: var(--bg);
    border: solid 1px var(--bg);
}

.button-container{
 width: fit-content;
 height: auto;
}

.button-container .btn{
    font-size: 1.8rem;
    padding: 2rem 4rem;
    background-color: var(--black);
    transition: 0.5s ease-in-out;
}
.button-container .btn:hover{
    background-color: #fff;
    color: var(--black);
    transform: scale(1.1);
    border: solid 1px var(--bg);
}
.footer{
    width: 100%;
    height: auto;
    background-color: var(--black);
    color: #fff;
    padding: 6rem 6rem 4rem 6rem;
    
}
.footer-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    column-gap: 8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;

}

.first-row{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    row-gap: 2rem;
}
.coffee-row{
    width: 40%;
    height: auto;
}
.title-container {
    width: fit-content;
    height: auto;
    transition: 0.3s ease-in-out;
}

.title-container:hover{
    color: var(--main-color);
}
.title-container H3{
    font-size: 1.6rem;
    letter-spacing: 120%;
    font-weight: 400;
    line-height: 2.2rem;

}
.title-container H4{
    font-size: 1.5rem;
    letter-spacing: 110%;
    font-weight: 300;
    line-height: 1.8rem;
    color: var(--main-color);
}
.title-container H1{
    font-size: 8rem;
    letter-spacing: 110%;
    font-weight: 800;
    line-height: 8rem;
}
.terms-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-top: 2px solid var(--main-color);
}
.terms-container h4{
    font-size: 1.5rem;
    font-style: italic;
    color: #eee;
    letter-spacing: 1.1;
    line-height: 2rem;
    font-weight: 600;
    text-align: center;
}













/* media query */
@media (max-width:991px){
    html{
        font-size: 55%;
    
    } 
    .header{
        padding: 1.5rem 2rem;
    }
    section{
        padding: 2rem ;
    }
    .title-container H1{
        font-size: 2rem;
        letter-spacing: 110%;
        font-weight: 800;
        line-height: 2.5rem;
    }
    .footer{
        padding: 4rem 2rem;
        column-gap: 1rem;
        justify-content: center;
    }
    .title-container H1{
        font-size: 8rem;
        letter-spacing: 110%;
        font-weight: 800;
        line-height: 8rem;
    }
}

@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;
        height: 80vh;
    }

    .home .content h3{
        font-size: 3rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }
    .review-box{
        width: 80%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        background-color: #fff;
        border-radius: 2rem;
        padding: 4rem;
        color: var(--bg);
        row-gap: 2rem;
        transition: 0.5s ease-in-out;
    }
    .review .box-container{
        width: fit-content;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        row-gap: 4rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
    .post-container{
        width: fit-content;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 4rem;
    }
    .post-box{
        width: 80%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: solid 1px #fff;
        border-radius: 2rem;
        padding: 4rem;
        row-gap: 1rem;
        background-color: #fff;
        transition: 0.3s ease-in-out;
        
    }
    .blog{
        width: 100%;
        height: auto;
        background-color: var(--main-color);
        padding: 4rem 4rem;
    }.coffee-row{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        row-gap: 2rem;
        margin-bottom: 2rem;
    }
   
    
}
@media (max-width:450px){
    html{
        font-size: 50%;
    
    } 
}.coffee-row{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
    margin-bottom: 2rem;
}
.title-container H1{
    font-size: 5rem;
    letter-spacing: 110%;
    font-weight: 800;
    line-height: 6rem;
}

    
