body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    text-align: center;
    padding: 20px;

 background-image: url('https://images.unsplash.com/photo-1517244683847-7456b63c5969?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aW5kaWFuJTIwZm9vZHxlbnwwfHwwfHx8MA%3D%3D'); /* Replace with the path to your image */
    background-size: cover; /* Ensures the image covers the whole area */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image */
}


/* Header styles */
header {
     
    background-size: cover; 
    background-position: center; 
    color: white; 
    padding: 20px 0; 
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.logo {
    font-family: 'Lobster', cursive;
    font-size: 2.5em; 
    font-weight: bold; 
    letter-spacing: 1px;
}

nav ul {
    list-style-type: none; 
    margin: 0;
    padding: 0; 
}

nav ul li {
    display: inline; 
    margin: 0 20px; 
}

nav ul li a {
    color: white;
    text-decoration: none; 
    font-size: 1.2em;
    padding: 10px 15px; 
    transition: background-color 0.3s, color 0.3s; 
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.3); 
    color: #333; 
}


#menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.menu-item {
    border: 1px solid #ddd;
    padding: 10px;
    width: 250px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
}
.menu-item img {
    width: 100%;
    border-radius: 8px;
}
button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff5722;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.menu-item input[type="number"] {
    width: 50px;
    margin-top: 10px;
}

#order-summary-container {
    border: 2px solid #ddd;
    padding: 15px;
    margin-top: 20px;
    background-color: #f9f9f9;
    width: 300px; /* Adjust as needed */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#order-summary h3 {
    margin-top: 15px;
}

#order-summary p {
    margin: 5px 0;
}
.item-box {
    border: 2px solid #ccc;
    padding: 20px;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .item-box:hover {
    background-color: #ffcccb; /* Desired hover color */
  }




/* Footer styles */
footer {
    background-color: #333; /* Dark background color */
    color: white; /* White text */
    text-align: center; /* Center text */
    padding: 20px; /* Padding for the footer */
    position: relative; /* Positioning */
    bottom: 0; /* Stick to the bottom */
    width: 100%; /* Full width */
}

footer a {
    color: white; /* Link color */
    text-decoration: underline; /* Underline links */
}
