* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
header {
    background-color: #ff6b6b; 
    padding: 15px 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
font-size: 24px;
font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
nav a:hover {
    color: #ffe66d;
}
.banner {
background: url('food-banner.jpg') no-repeat center center/cover;
text-align: center;
padding: 100px 20px;
  Thirteenth-Apirl-Learning
color: rgb(0, 0, 0);

color: white;
 main
}
.banner h1 {
    font-size: 48px;
    margin-bottom: 10px;
}
.banner p{
    font-size: 20px;
    margin-bottom: 20px;
}
.cta {
background-color: #ff6b6b;
padding: 10px 20px;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.cta:hoover {
    background-color: #ff4757;
}
.menu {
    padding: 40px 20px;
    text-align: center;
}
.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.item {
    width: 250px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.item:hover {
    transform: scale(1.05);
}
.item img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    border-radius: 10px;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
 Thirteenth-Apirl-Learning
}
#contact {
    max-width: 500px;
    margin: 50px auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Style form elements */
form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

form textarea {
    height: 100px;
    resize: vertical;
}

form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;

 main
}