/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
   
}
section {
    padding: 2rem;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #e58e31;
    color: #fff;
    z-index: 1000;
    height: 80px; /* Match the logo height */
    padding: 0 5%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Navbar */
.allcontect {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align logo and links vertically */
    margin-right: 10%;
}

.logo {
    padding-left: 10px; /* Optional: Adds space around the logo */
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px; /* Adjust size */
    width: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Optional: Circular logo */
    display: block; /* Prevent extra inline spacing */
}
.logo span {
    font-size: 1.2rem; /* Adjust the text size */
    font-weight: bold; /* Make the text bold */
    color: white; /* Match the navbar text color */
    width: 20%;
}

.cont-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.cont-links li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
}

.cont-links li a:hover {
    color: #baad1a;
}


/* Hero Section */
/* Hero Section */
.webfront {
    height: 68.5vh; /* Full height of the viewport */
    background: url('https://plus.unsplash.com/premium_photo-1700746098722-ddb3f7042b98?w=400&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDF8fHxlbnwwfHx8fHw%3D') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding-top: 80px; /* Adjust for fixed navbar */
    position: relative;

}

/* Optional: Dark overlay to improve text readability */
.webfront::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darkens the background image */
    z-index: 1;
}

.webfront-content {
    text-align: center;
    z-index: 2; /* Ensure content appears on top of the overlay */
}


.webfront h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.webfront p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    background-color: #f4a261;
    color: #fff;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.btn:hover {
    background-color: #e76f51;
}



/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fbb430; 
    color: #fff;
    z-index: 1000;
    text-align: center;
    padding: 0.5%;
}






/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}
/* Menu Page Styles */
.menu {
    padding: 2rem;
    background-color: #f4f4f9;
    text-align: center;
}

.menu h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.menu p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.menu-category {
    margin-bottom: 2rem;
}

.menu-category h2 {
    font-size: 2rem;
    color: #e58e31;
    margin-bottom: 1rem;
}

.menu-category ul {
    list-style-type: none;
    padding: 0;
}

.menu-category ul li {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}












/* About Page */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background-color: #f9f9f9; /* Light background color */
    text-align: center;
}

.about h1 {
    font-size: 3rem;
    color: #203dde;
    margin-bottom: 1.5rem;
}

.about p {
    max-width: 800px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #19d219;
    margin-bottom: 1rem;
}

/* Optional: Add background image */
/* About Section Styling */
.about-section {
    background: url('https://plus.unsplash.com/premium_photo-1700746098697-b5e2a72e50b7?w=400&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDd8fHxlbnwwfHx8fHw%3D') no-repeat center center/cover;
    color: #fff;
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    text-align: center;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
    z-index: 1;
}

.container {
    position: relative;
    max-width: 800px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.container p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}




/* Contact Section */
.contact {
    text-align: center;
    padding: 4rem 2rem;
    background-image: url('https://plus.unsplash.com/premium_photo-1711648506551-07349eaf6c4d?w=400&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDY1fHx8ZW58MHx8fHx8'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff; /* Light text for contrast */
    min-height: 100vh;
    position: relative;
}
/* Optional: Add overlay for readability */
.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.contact * {
    position: relative;
    z-index: 2;
}

.contact h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

form {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

form label {
    font-weight: bold;
    margin-top: 1rem;
    display: block;
}

form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

form .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    cursor: pointer;
}

form .btn:hover {
    background-color: #555;
}







/* Location Section */
.location, .news {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f4f4f9;
    color: #333;
    min-height: 100vh;
}

.location h1, .news h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.location p, .news p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #555;
}

.map iframe {
    border: 0;
    width: 100%;
    height: 400px;
}

/* Offers Section within News */
.offers h2 {
    font-size: 3rem;
    margin-top: 2rem;
    color: #0022ff;
}

.offers p {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}










































.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Optional: semi-transparent background */
    backdrop-filter: blur(20px); /* Apply blur effect */
    z-index: 998; /* Ensure it sits below the side menu */
    transition: display 0.3s ease; /* Smooth transition */
}
        /* Default state for side menu */
        .side-menu {
            display: none; /* Hide by default */
        }

        /* Media Query for Responsive Design */
        @media (max-width: 768px) {
            /* Show the side menu in mobile view */
            .side-menu {
                display: block; /* Show in mobile view */
            }

            /* Hide the regular navigation links */
            .cont-links {
                display: none; /* Hide the links */
            }

            /* Style for the hamburger menu */
            .hamburger {
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                width: 30px;
                height: 30px;
                cursor: pointer;
                margin-left: auto; /* Align to the right */
                transition: transform 0.3s ease; /* Smooth transition for icon change */
            }

            .hamburger div {
                width: 100%;
                height: 4px;
                background-color: white;
                transition: all 0.3s ease;
            }

            /* Side menu styles */
            .side-menu {
                position: fixed;
                top: 80px;
                right: -250px; /* Start off-screen */
                width: 250px;
                height: calc(100% - 80px); /* Adjust height to avoid overlap with navbar */
                background-color: #e58e31;
                color: white;
                transition: right 0.3s ease; /* Smooth transition */
                z-index: 999; /* Ensure it sits above other content */
            }

            .side-menu.open {
                right: 0; /* Slide in */
            }

            /* Style for the side menu links */
            .side-menu ul {
                list-style: none;
                padding: 20px;
            }

            .side-menu ul li {
                margin: 20px 0;
            }

            .side-menu ul li a {
                color: white;
                text-decoration: none;
                font-size: 1.2rem;
            }

            /* Show the side menu when the hamburger is clicked */
            .hamburger.active + .side-menu {
                right: 0; /* Slide in */
            }

            /* Blur effect when side menu is open */
            .side-menu.open ~ body {
                filter: blur(20px); /* Apply blur effect */
            }

            /* Cross icon styles */
            .hamburger.active div:nth-child(1) {
                transform: rotate(60deg) translate(8px, 8px); /* Top bar to cross */
            }

            .hamburger.active div:nth-child(2) {
                opacity: 0; /* Middle bar disappears */
            }

            .hamburger.active div:nth-child(3) {
                transform: rotate(-60deg) translate(8px, -8px); /* Bottom bar to cross */
            }
        }

    .menu {
    padding: 2rem;
    background-color: #f4f4f9;
    text-align: center;
    margin-left: 1%;
    width: 100%;
}

.menu h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.menu p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Menu Category */
.menu-category {
    margin-bottom: 2rem;
}

.menu-category h2 {
    font-size: 2rem;
    color: #e58e31;
    margin-bottom: 1rem;
}

.menu-category ul {
    list-style-type: none;
    padding: 0;
}

.menu-category ul li {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Menu Item */
.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.menu-image {
    width: 150px;
    height: auto;
    margin-right: 20px; /* Space between image and item info */
    border-radius: 8px;
}

.item-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.item-info ul li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.item-info ul li .price {
    margin-left: 10px;
}

.item-info ul li:after {
    content: "₹"; /* Symbol for Indian Rupee */
}

.item-info ul li .item-name {
    flex-grow: 1;
}



