*{
   
    margin: 0;
    padding: 0;
box-sizing: border-box;
font-family:'spartan' , sans-serif;
}
body{
    width: 100%;
}
#main{
    height: 100%;
    width: 100%;
    /* background-color: hsl(247, 18%, 70%); */

}

h1{
    font-size: 50px;
    line-height: 64px;
    color: #ffffffa0 ;
}
h2{
    font-size: 46px;
    line-height: 54px;
    color: #ffffffa0;

}

h4{
    font-size: 20px;
    color: #ffffffa0;

}
h6{
    font-size: 12px;
font-weight: 700;
}
.p1{
    padding-bottom: 5px;
}

p{
    font-size: 16px;
    color: #a82c48;
    margin: 15px 0 20px 0;
}
#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.logo{
height: 60px;
border-radius: 20px;
}

#navbar li{
    list-style: none;
    padding: 0 20px;

}
#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #a82c48;
    transition: 0.3s ease;
}
#navbar li a:hover, #navbar li a.active{
color: #c93155;
/* text-decoration: ; */
}
#header{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #ffffffa0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}
#hero{
    background-image: url('images/background.jpg');
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0  80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#feature{
   background-color: #ffffffa0;
    padding: 20px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.feature-box{
    background-color: #ffffff;
    box-shadow: 20px 20px 34px rgba(0, 0, 0 , 0.03);
    padding: 20px ;
border-radius: 4px;
    border: 1px solid #a82c48;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: 1px;
    justify-content: center;
    gap: 10px;
}
.feature-box:hover{
    
    box-shadow: 10px 10px 54px rgba(70, 62, 221 , 0.1);

}
.feature-box img{
    transition: transform 0.5s ease-in-out;

    width: 250px;
    border-radius: 4px;

}
.feature-box img:hover{
    transform: scale(1.1);
}

.featured-item{
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px; 
    padding-bottom: 20px;
    margin: 10px 20px;
    cursor: pointer;
    width: 250px;
    box-shadow: 0px 1px 1px 1px #a82c48;
    border-radius: 15px;
}
.featured-item img{  
    height: 230px;
    border-radius: 15px;
}


.rating-icon{
    color: rgb(205, 148, 42);
}


.item-price{
    color: #a82c48;
    font-weight: bold; 
}
#stats{
    height: 50px;
    width: 100%;
    background-color: #a82c48;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
/* .item-card>img{
width: 100%;
height: 30vh;
object-fit: fill;
} */

#order{
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    grid-gap: 20px;
    align-items: center;
    align-items: center;
    justify-content: space-evenly;
}

#order button , .addtocart{
    text-align: center;
    justify-content: center;
    align-items: center;
    border: none;
width: 100%;
    font-size: 18px;
    font-weight: 400;
    border-radius: 20px;
    padding: 8px;
    background-color:#a82c48;
    color: #ffffff
    ;
    /* border: 0; */
}

#about > div{
    
    display: flex;
    flex-direction: row;
}
#about > div > p{
    color: gray;}
    #about > div > h4{
        background-color:#a82c48;

    }

    .contact {
        
        padding: 100px 0; 
        text-align: center;
      }
      
      .contact form {
        max-width: 600px; 
        margin: 0 auto; 
      }
      .contact input,
      .contact textarea {
        width: 100%; 
        padding: 10px; 
        margin-bottom: 20px; 
        border-radius: 5px; 
        border: 1px solid #ddd; 
        font-size: 16px;
      }
    
   
      footer {
        background-color: #a82c48; 
        color: #fff; 
        padding: 20px 0; 
        text-align: center; 
      }
      