*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    text-decoration: none;
}
/* navbar*/*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    text-decoration: none;
}

   
/*image slider*/
.carousel-caption  h5{
    font-size: 1.7rem;
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  }
  .hw{
    height:  500px;
  }
   .carousel-inner{
    border-radius: 10px;
   }

.main{
    margin: 100px auto;
}
.section-title{
    text-align: center;
    margin-bottom: 80px;
}
.section-title h1{
    text-transform: capitalize;
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 11px;
}
.section-title h1::before{
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: rgb(192, 51, 51);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/*menu cards*/
.menu{
    padding: 0 20px 10px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    grid-gap: 30px 40px;
}
.heading{
    margin-bottom: 0px;
    padding:0px 0;
    grid-column: 1/-1;
    text-align: center;
}
.heading>h1{
    letter-spacing: 5px;
}
.food-items{
    display: grid;
    position: relative;
    grid-template-rows: auto 1fr;
    border-radius: 15px;
    grid-gap: 25px 40px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}
.food-items img{
    position: relative;
    width: 100%;
    border-radius: 15px 15px 0 0;   
    
}
.food-items h5{
    font-family: sans-serif;
    
}
.food-items:hover{
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.25);
}
.details{
    padding: 0px 10px;
    display: grid;
    grid-template-rows: auto 1fr 20px;
    grid-row-gap:10px;
}
.details-sub{
    display: grid;
    grid-template-columns: auto auto;
}
.details-sub>h5{
    font-weight: 600;
    font-size: 20px;
    
}
.details>button{
    background-color:rgb(192, 51, 51) ;
    border: none;
    color: whitesmoke;
    font-size:16px;
    font-weight: 500;
    border-radius: 5px;
    width: 180px;
    padding: 8px 4px;
    align-items: center;
}
button:hover{
    background-color: rgb(36, 36, 113);
    color: whitesmoke;
}
 