/* Elegant and British-inspired style for Stardo's reservations */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2a0505; /* Deep burgundy */
    color: #fdf4e3; /* Creamy beige for contrast */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 50px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #f5d9a0;
}

form {
    background-color: #3d1010;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 500px;
}

label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fdf4e3;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 10px;
    box-sizing: border-box;
}

button {
    background-color: #a52a2a; /* Dark red button */
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #851c1c;
}

@media screen and (max-width: 600px) {
    form {
        padding: 20px;
        margin: 10px;
    }

    h2 {
        font-size: 1.5em;
    }
}
.reservation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 100vh;
    background-color: #2a0505; /* lub inne pasujące tło */
}

.reservation-wrapper h1 {
    color: #fdf4e3;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
