/* General Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}

header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hotel-lobby.jpg');
    background-size: cover;
    height: 400px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* The Booking Container */
.booking-form {
    max-width: 600px;
    margin: -50px auto 50px auto; /* Overlaps the header slightly */
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.booking-form h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 25px;
}

/* Form Elements */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

label {
    font-weight: bold;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: -10px;
}

/* Button with Sharnika Brand Colors */
button {
    background-color: #b8860b; /* Gold/Brass color */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #936c07;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    header h1 { font-size: 2rem; }
    .booking-form { margin: 20px; }
}
@media print {
    .logo, button, form, .export-btn, a {
        display: none !important;
    }
    .admin-container {
        box-shadow: none;
        margin: 0;
        width: 100%;
    }
}