/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    text-align: center;
}

/* Header Styles */
.header {
    background: #f8f9fa;
    padding: 10px 20px;
  /*  position: fixed; */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1100;
}
.header img {
    max-width: 200px;
}
.contact-info {
    margin-top: 5px;
    font-size: 16px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.contact-info img {
    width: 20px;
    height: 20px;
}

/* Navbar */
.navbar {
    /*background-color: #333;*/
    padding: -10px;
   /* position: fixed;*/
    width: 100%;
    margin-top:-70px;
   /* top: 250px; /* Adjust this if header height is different */
    left: 0;
    z-index: 1000;
}

.navbar a {
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    font-weight: bold;
}
.navbar a:hover {
    background-color: #555;
}

/* Main Content */
.content {
    margin-top: -75px; /* Prevents content from hiding behind fixed navbar */
}

/* Menu Page */
.main-container {
    max-width: 600px;
    margin: 120px auto 40px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height:450px;
}
h1 {
    color: #d35400;
}
.menu-category {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    color: #333;
    border-bottom: 2px solid #d35400;
    padding-bottom: 5px;
    text-align: left;
}
.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.menu-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}
.menu-item img:hover {
    transform: scale(1.1);
}
.item-name {
    font-weight: bold;
    flex-grow: 1;
    margin-left: 10px;
    text-align: left;
}
.price {
    color: #27ae60;
    font-weight: bold;
}

/* Image Overlay */
.overlay {
    position: fixed;
    display: none;
    width: 50%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
}
.overlay img {
    max-width: 100%;
    border-radius: 10px;
}
.overlay .close-btn {
    background: #d35400;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
    color: #333;
}
