/* ======================== */
/* BOOKING PAGE STYLES      */
/* ======================== */

/* Minimal Header (just text, no big background image) */
.book-header-simple {
    padding: 4rem 0 2rem;
    text-align: center;
    background-color: var(--bg-cream);
}

.book-header-simple h1 {
    font-size: 3rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.book-header-simple p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Centered Box Layout */
.book-container {
    display: block;
    max-width: 700px;
    /* Optimal reading width for forms */
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    /* Softer edges */
    overflow: hidden;
}

/* Form Side - adjusted for single column */
.book-form-section {
    padding: 3rem 4rem;
}

.form-title {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.styled-input {
    width: 100%;
    padding: 1rem;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.styled-input:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .input-group {
    flex: 1;
}

.btn-reserve {
    background-color: var(--text-dark);
    color: #fff;
    border: none;
    padding: 1.2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    width: 100%;
}

.btn-reserve:hover {
    background-color: var(--primary-color);
}

@media (max-width: 900px) {
    .book-container {
        flex-direction: column;
    }

    .book-visual {
        min-height: 250px;
    }

    .book-form-section {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}