/* Menu Page Styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: #d8c5b1; /* Light beige background */
}

body::-webkit-scrollbar {
    display: none;
}

/* Add padding to simulate space for header */
body {
    padding-top: 70px; /* Adjust to the approximate height of your header */
    scrollbar-width: none;
}

/* Menu Page Styles */
.menu-section {
    text-align: center;
    padding: 20px;
}

/* Heading Style for Explore Section */
.menu-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between elements */
    position: relative;
    margin: 30px 0;
}

.menu-heading::before,
.menu-heading::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #c1442e; /* Line color matching button */
}

.menu-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #2b2b2b;
    margin: 0;
    padding: 0 15px;
    text-align: center;
}

.menu-heading .dot {
    width: 12px;
    height: 12px;
    background-color: #c1442e;
    border-radius: 50%;
}

.menu-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.menu-image {
    width: 90%; /* Make the image larger (90% of the viewport width) */
    max-width: 1000px; /* Set a maximum width to prevent excessive scaling */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Adds rounded corners */
    margin: 0 auto; /* Center the image horizontally */
}
