@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    color: #333;
}

.menu-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-item {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.menu-item h2 {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 15px;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.menu-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.menu-item p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.menu-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.menu-image:hover {
    transform: scale(1.05);
}

label {
    display: block;
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

select {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #fff;
}

.order-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.order-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.order-form {
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #007BFF;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.order-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form select {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

p {
    font-size: 0.9em;
    color: #666;
}