body {
    font-family: 'Poppins', sans-serif;
    background-color: #f39837;
    color: #333;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin: 0;
    color: #5a3e36; /* A brown color from your flyer */
}

.subtitle {
    font-size: 1.2em;
    color: #777;
    margin-top: 5px;
}

.announcement {
    background-color: #fff9e6;
    border: 1px solid #ffeeba;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.announcement p {
    margin: 5px 0;
}

h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: #5a3e36;
    margin-bottom: 20px;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.item {
    text-align: center;
    background-color: #fafafa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.item h3 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.item select {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.order-summary {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    font-size: 1.5em;
    font-weight: bold;
}

#total-price {
    color: #d9534f;
}

form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Important for padding */
}

.payment-info {
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.payment-info h3 {
    margin-top: 0;
    text-align: center;
}

.payment-info ul {
    list-style: none;
    padding: 0;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #5a3e36;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #f39837;
}