/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #181818;
    margin: 0;
    padding: 0;
}

/* Menu Container */
.container1 {
    width: 90%;
    margin: 20px auto;
    background: #181818;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#left, #right {
    width: 100%; /* Each div takes ~50% */
    padding: 20px;
    color: white;
}
#left { background:#181818; }
#right { background: #181818; text-align: right; }

/* Headings */
h1 {
    background-color: #181818;
    color: #c2a76e;
    padding: 15px;
    border-radius: 5px;
}

h2 {
    background-color: #181818;
    color: #c2a76e;
    padding: 10px;
    border-radius: 5px;
}

.menu-container{
    display: flex;
    grid-auto-columns: 2; 
}
#menu-container-1{
    display:flex;
    /* grid-auto-rows: 2; */
}

#search-bar {
    width: 60%;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    /* border: 1px solid #c2a76e; */
    border-radius: 5px;
    font-size: 16px;
}
.filter-buttons {
    margin-bottom: 20px;
}
.filter-btn {
    padding: 10px;
    margin: 5px;
    font-weight: bold;
    
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: #181818;
    color: white;
    font-size: 14px;
}
.filter-btn:hover {
    background-color: #c2a76e;
}

/* Menu Items */

.items-name{
    color:white;
}

.items-name:hover{
    color:#c2a76e;
}
.menu-section {
    margin-bottom: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    color:white;
    border-bottom: 1px dashed #c2a76e;
    font-size: 18px;
}

#main-heading{
    color:#c2a76e;
}


.menu-item:last-child {
    border-bottom: none;
}


/* Price Style */
.price {
    font-weight: bold;
}

.menu-item:hover .price{
    color:#c2a76e;
}

.menu-item:hover{
    color:#c2a76e;
}


/* Image Styling */
.image-container {
    text-align: center;
    margin-top: 20px;
}

img {
    width: 200px;
    border-radius: 10px;
}