* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #ffffff;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: BOLD;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* You can also add other hover effects, such as background color or text decoration, if desired */
.menu a:hover {
    color: #ff9900; /* Change text color */
    transition: 0.8s ease;
}


.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

#menu-toggle {
    display: none;
}
/* HERO */
/* Add this CSS to style the hero section and text on the image */
.hero {
    position: relative;
    text-align: center;
}


.hero-image {
    width: 100%; height: 100vh;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 80%;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
   
}

.hero-text p {
    font-size: 1.3rem;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

/* Add this CSS to style the menu grid and ensure consistent image sizes */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px;
}

.menu-item {
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border: 1px solid #ddd;
    height: 400px; /* Set a fixed height for consistent image sizes */
    display: flex;
    flex-direction: column;
}

.menu-item img {
    width: 100%;
background-size: cover;
   
}

/* Add CSS for the "About Us" section with burger image background */
.about-us {
    text-align: center;
    padding: 40px 20px;
    background: url('burger-background.jpg') no-repeat center center;
    background-size: cover;
    color: #fff; /* Adjust text color to make it readable on the background */
}

.about-content {
    background: #000000; /* Adjust the background color and opacity as needed */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.about-content h2 {
    font-size: 2rem;
}

.about-content p {
    margin: 20px 0;
    line-height: 1.6;
}

/* Add CSS for the "Contact Us" section and form */
.contact-us {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5; /* Adjust background color as needed */
}

.contact-us h2 {
    font-size: 2rem;
}


.contact-us p {
    margin: 20px 0;
    line-height: 1.6;
}

form {
    max-width: 400px;
    margin: 0 auto;
}

.line{
    width: 150px;
    height: 4px;
    background: #000000;
    border-radius: 5px;
    margin: 10px auto ;
}
.line-2{
    width: 130px;
    height: 4px;
    background: #000000;
    border-radius: 5px;
    margin: 10px auto ;
    margin-left: 550PX;
}
.line-1{
    width: 90px;
    height: 4px;
    background: #ffffff;
    border-radius: 5px;
    margin: 10px auto ; 
    justify-content: center;
    margin-left: 540px;
}

label, input, textarea {
    display: block;
    margin: 10px 0;
}

input, textarea {
    width: 100%;
    padding: 10px;
}

button[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #ff6600; /* Change color on hover */
}
/* Add CSS for the footer section */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-content p {
    margin: 0;
    margin-left: 20px;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content li {
    display: inline;
    margin-right: 20px;
}

.footer-content a {
    text-decoration: none;
    color: #fff;
}
.POPULAR{
    text-align: center; color:  #ff9900; margin-top: 50px; font-size: 24px;
}


@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .menu-item {
        height: 480px; /* Set a fixed height for consistent image sizes */
    }
}
@media (max-width: 425px){
    .menu-item {
        height: 300px; /* Set a fixed height for consistent image sizes */
    }
}


/* Media query for tablets */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #333;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px;
        z-index: 2;
        text-align: center;
       
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin-right: 0;
        margin-bottom: 10px;
        padding: 20px;
        border: 1px solid white;
        border-radius: 30px;
    }


    .menu-icon {
        display: block;
    }

    #menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }

    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
       
    }
    
    .hero-text p {
        font-size: 1.5rem;
        margin-top: 20px;
    }
    
    
}



/* Add media query for responsiveness */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
       
    }
    
    .hero-text p {
        font-size: 1.5rem;
        margin-top: 20px;
    }
}
@media (max-width:425px){
    .POPULAR{
       font-size: 20px;
    }
    .about-content h2{
        font-size: 25px;
    }
    .about-content p{
        font-size: 12px;
    }
    .contact-us h2{
        font-size: 25px;
    }
    .contact-us p{
        font-size: 12px;
    }
    .lab label{
        font-size: 12px;
    }
    .cta-button{
        font-size: 13px; padding: 8px;
    }
    .footer-content{
        font-size: 12px;
    }
    .hero-text p{
         font-size: 18px;
    }
    .dishes{
         font-size: 25px;
    }
}

@media (max-width: 375px){
    .menu-item {
        height: 280px; /* Set a fixed height for consistent image sizes */
    }
}

@media (max-width: 325px){
    .menu-item {
        height: 250px; /* Set a fixed height for consistent image sizes */
    }
    .hero-text h1{
        font-size: 35px;
    }
}