/*=======================MENU=====================
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* HERO */
.hero {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 2px;
    padding: 50px;
    margin-top: 10%;
}
.card h3{
    padding: 0%;
    margin: 0%;
}
.prices{
    color: red;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 1px;
    margin: 2px;
    text-align: center;
    width:fit-content;
    border-radius: 10px;
    margin-left: 30%;
    font-size: 20px;
    border: 1px solid rgb(203, 241, 35);
}
.names{
    padding: 5px;
    margin: 0;
    color: rgb(249, 100, 14);
    font-size: 20px;
    margin-right: 50px;
}
.btnnn{
    width: 98%;
    height: 30px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: rgb(202, 133, 6);
    border: none;
    border-radius: 25px;
}
.btnnn:hover{
    background-color: red;
}
.card p{
     padding: 2px;
    margin: 0;
    color: rgb(71, 24, 240);
    font-size: 15px; 
      font-weight: bold;  
}
.hero h1 {
    font-size: 40px;
}
#menu_image{
    width: 120px;
    height: 100px;
}
/* FILTER BAR */
.filters {
    text-align: center;
    margin-bottom: 30px;
}

.filters button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    background: #ddd;
    transition: 0.3s;
}
.filters button img{
    width: 50px;
    height:50px;
    border-radius:50px;
    padding:0;
    margin:0;
    border: 2px solid red
}
.filters button h4{
    padding: 0;
    margin: 2px;
}
.filters button.active,
.filters button:hover {
    background: #e2ea05;
    color: rgb(243, 9, 9);
}
.item-list{
    width: 200px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    padding: 10px;
    text-align: center;
}

.item-list{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-list:hover{
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
}
/* .item-list img{
    width: 200px;
    height:200px;
}
    */
  .item-list img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}  
.item-list pre {
padding: 0%;
margin: 0%;
}
.item-list pre span{
    color: red;
    font-weight:bold;
    font-size: 20px;
}
.passage{
    padding: 0%;
    margin: 10px;
    margin-top: -4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}
.passage h5{
    width: fit-content;
    font-size: 20px;
    margin: 0%;
    padding: 0%;
}
/*
*/
.passage button{
    text-decoration: none;
    background-color: orange;
    color: white;
    border-radius: 25px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    transition: 0.3s;
}
.openn{
   display: flex;
   width: 100%;
   background-color: #bdbcbc;
   border-radius: 20px;
}
.openn button{
    color: rgb(248, 248, 251);
    background-color:goldenrod;
    border-radius: 10px;
    font-weight: bold;
    border:none;
    cursor: pointer;
    width: 90px;
    height: 25px;
    margin: 2px;
}
.openn button:hover{
    background-color: red;
}
.passage button:hover{
    background-color: red;
}

/* GRID */
.menu-grid {
    display: grid;
    justify-content: center;
    grid-template-columns:repeat(5,1fr);
    gap: 3px;
}
/* HIDE ANIMATION */
.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}
#price-menu {
    display: none;
    opacity: 0;
    transition: 0.4s ease;
}

#price-menu.show {
    display: grid;
    opacity: 1;
    height: fit-content;
}
/* RESPONSIVE */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1000px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 20%;
    }
}
.menu-grid {
                max-height: 300px; 
    -ms-overflow-style: none; 
    scrollbar-width: none;   

    overflow-y: scroll; 
}
@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}
