/* Basic Reset and Font Setup */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4; /* Light grey background */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to the top */
    min-height: 100vh;
    padding: 40px 20px;
    margin: 0;
}

/* Container for the Form */
.booking-container {
    background: #ffffff;
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Logo Area Styling */
.logo-area {
    margin-bottom: 25px;
}

.company-logo {
    max-width: 250px; /* Adjust as needed */
    height: auto;
    display: block; /* Ensures centering works */
    margin: 0 auto; /* Center the logo */
}

/* If you prefer text instead of image logo, uncomment these in booking.php and style them here */
/* .booking-container h1 {
    font-family: 'Playfair Display', serif;
    color: #8B4513;
    font-size: 2.5em;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.booking-container h2 {
    font-family: 'Playfair Display', serif;
    color: #444;
    font-size: 1.2em;
    margin-top: 5px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
} */

.tagline {
    color: #A0522D; /* Sienna/Brown */
    font-style: italic;
    margin-bottom: 30px;
}

/* Form Styling */
.booking-form {
    text-align: left;
}

/* Fieldset/Step Styling (for the multi-step feel) */
.form-step {
    border: none;
    padding: 0;
    margin-bottom: 30px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 2px solid #8B4513; /* Highlight line */
    margin-bottom: 20px;
}

/* Input Group Styling */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #555;
}

/* Input/Select/Textarea Styling */
.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"],
.input-group input[type="date"],
.input-group input[type="time"],
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #A0522D;
    box-shadow: 0 0 8px rgba(160, 82, 45, 0.2);
    outline: none;
}

/* Textarea specific */
.input-group textarea {
    resize: vertical;
}

/* Terms and Conditions Checkbox */
.terms-check {
    margin-top: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.terms-check input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    border: 2px solid #8B4513;
    /* Custom checkbox styling could be added here */
}

.terms-check label a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
}

/* Submit Button - Now Golden! */
.submit-button {
    background-color: #D4AF37; /* A nice golden color */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px; /* Pill shape */
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3); /* Soft golden shadow */
}

.submit-button:hover {
    background-color: #C5A130; /* Slightly darker gold on hover */
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}