/* start Global Rules  */
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
}
h1,h2,h3 {
    font-family: "Sansita Swashed", system-ui;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
ul {
    list-style-type: none;
}
header i{
    transition: 0.5s;
}
.fa-times{
    transform: rotate(180deg);
}
/* small */
@media (min-width : 768px) {
    .container{
        width: 750px;
    }
}
/* medium */
@media (min-width : 992px) {
    .container{
        width: 970px;
    }
}
/* large */
@media (min-width : 1200px) {
    .container{
        width: 1170px;
    }
}
/* start of header  */
header {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 2;
    
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
header .logo img{
    width: 70px;
}
header .nav {
    display: flex;

}

@media (min-width:768px){
    .toggle-menu{
        display: none;
    }

}
@media (max-width:768px){

    header .nav{


        position: absolute;
        bottom: -18.7rem;
        left: 0;
        right: 0;
        background-color: #e9be8c77;;
        border: 1px solid black;
        padding: 2rem;
        
        display: none;
    }
    header .nav li{ 
        display: block;
       
        margin: 2rem;
        text-align: center;
    }
 
 



        
    
}
img:hover
{
    transform: scale(1.06);
}

header ul li {
    transition: .5s linear;
}
header ul li a{
    text-decoration: none;
    color:white;
    padding: 10px 20px;
    transition: .5s linear;
}
header ul li:hover {
    border-bottom: 1px solid #E9BD8C;
}
header .icon{
    transition: 0.5s;
}
header .toggle-menu {
    color:#E9BD8C;
    font-size: 22px;
}



/* End of header  */
/* Start of landing  */
.landing {
    height: 100vh;
    background-image: url(../images/landing.png);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.landing .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
   
    color: white;
}
.landing .text p {
    color: #E9BD8C;
    font-size: 14px;
    padding: 0 10px;
}
.landing .text h1 {
    font-size: 50px;
    font-weight: normal;
    margin-top: 0px;
}

.landing .links {
position: absolute;
bottom: 15%;

}
.landing .links button {
    padding: 10px 14px;
    background-color: #933C24;
    border: none;
    cursor: pointer;

}
.landing .links .shopnow {
    color: white;
    font-size: 14px;
}
.landing .links .learn-more {
    background-color: transparent;
    color: #E9BD8C;
}
/* end of landing  */
/* start of top products */
.products{
    margin: 3rem 0;
}

.products h2{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 2rem ;
}
.products .product-content{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 1rem;
}

.products .product-content .product-item{
    background-image: url(../images/product_bg.png) ;
    background-position: center center;
    background-size: cover;
    padding: 15px;
    color: white;
}
.products .product-content .product-item .product-img{
    display: flex;
    justify-content: center;
    height: 200px;
}
.products .product-content .product-item .box1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block: 1.4rem;
    padding-right: 2rem ;
}
.products .product-content .product-item .box1 i {
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    border: 1px solid white;
    border-radius: 50%;
    cursor: pointer;
}
.products .product-content .product-item .box2{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.products .product-content .product-item .box2 button{
    background-color: #933C24;
    border: none;
    padding: 0.5rem 2rem;
    color: white;
    cursor: pointer;
}
/* end of top products */
/* start of order */
.order-backbg {
    height: 400px;
    background-image: url(../images/orderbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.order-backbg .text {
    text-align: center;
    max-width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.order-backbg .text h2 {
    color: #933C24;
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 1rem;

}
.order-backbg .text p {
    color: #5D5D5D;
    line-height: 1.5;
}
.order-backbg .more {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #933C24;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}
/* end of order */
/* start of explore */
.explore{
    margin: 3rem 0;
}
.explore h2{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 2rem;
}
.explore .shuffle{
    text-align: center;
    padding: 2rem 0 0.8rem;
    margin-bottom: 2rem;
}
.explore .shuffle span{
    font-size: 12px;
    padding: 0.4rem .6rem ;
}
.explore .shuffle span.active ,.explore .shuffle span:hover {
    border-bottom: 4px solid #933C24;
}

.explore .explore-content{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 1rem;
    
}
.explore .explore-content img{
    width: 100%;
}
/* end of explore */
/* start of about */
.about-us{
    background-image: url(../images/about.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 4rem;
}
.about-us .text{
    text-align: center;
    max-width: 250px;
    margin: auto;
}
.about-us .text h2 {
    color: white;
    font-size: 40px;
    margin-bottom: 1rem;
}
.about-us .text p{
    max-width: 250px;
    color: #B9B9B9;
    line-height: 2;
}
.about-us button{
    margin-top: 1rem;
    background-color: #933C24;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* End of about */
/* start of treats */
.treats h2{
    text-align: center;
    font-size: 40px;
    margin: 3rem 0;
}
.treats .treats-content{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 1rem;
}
.treats .treats-content .item img{
    width: 100%;
} 
.treats .treats-content .item .text{
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* End of treats */
/* start of footer */
footer{
    margin-top: 3rem;
    background-image: url(../images/footer.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 15px;
}
footer .f-head{
    padding-block: 1rem;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #E9BD8C;
    align-items: center;
}
footer .icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex: 1;

}
footer .icons i,span{
    cursor: pointer;
}
@media (max-width:768px) {
    footer .icons i {
        font-size: 14px;
    }
}

.f-foot{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.f-foot h2{
    color: #E9BD8C;
    padding-block: 2rem;
    font-family: "Poppins", sans-serif;
}
.f-foot .sec1  p,.f-foot .sec2 p{
    color: white;
    line-height: 2;
}
.f-foot a{
    text-decoration: none;
    color: white;
}

.f-foot .sec1{
    flex: 1 1 13rem;
}
.f-foot .sec2{
    flex: 1 1 18rem;
}
.f-foot .sec3 .sec3-1{

    display: flex;
    gap: 1rem;
}
.f-foot .sec3 .sec3-2{
    display: flex;
    gap: 1rem;
}

.sec3-1 h4,.sec3-2 h4{
    color: #E9BD8C;
}
.sec3-1 img,.sec3-2 img{
    width: 100px;
    height: 50px;
}
.sec3 p{
    color: white;
}
.reg{
    text-align: center;
    color:#5D5D5D;
    margin-top: 4rem;
    padding-bottom: 1.5rem;
}
.sec3-1 {
    margin: 0.5rem 0 1rem;
}

/* end of footer */