/* ============================================================
   booking.css — Events & Catering booking section on index.html
   ============================================================ */

.booking {
    background: #f5f0eb;
    padding: 100px var(--gutter);
    overflow-x: hidden;
    width: 100%;
}

.booking__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: var(--max-width);
    margin-inline: auto;
}

/* ── LEFT: FORM ─────────────────────────────────────────────── */
.booking__form-wrap {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 32px rgba(28, 20, 16, 0.07);
}

.booking__form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1c1410;
    margin-bottom: 0.4rem;
}

.booking__form-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #7a5c50;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking__form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

/* ── FIELD GROUP ────────────────────────────────────────────── */
.booking__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.booking__label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1c1410;
}

.booking__input,
.booking__textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: #1c1410;
    background: #faf8f6;
    border: 1.5px solid #e0d8d2;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.booking__input:focus,
.booking__textarea:focus {
    border-color: #c94b1a;
    box-shadow: 0 0 0 3px rgba(201, 75, 26, 0.1);
    background: #ffffff;
}

.booking__input::placeholder,
.booking__textarea::placeholder {
    color: #b0a09a;
}

/* Date input — keep the native picker but style the field */
.booking__input[type="date"] {
    cursor: pointer;
    color: #1c1410;
}

.booking__input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}

.booking__textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.7;
}

/* ── SUBMIT BUTTON ──────────────────────────────────────────── */
.booking__submit {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    background: #1c1410;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    cursor: pointer;
    width: 100%;
    margin-top: 0.5rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

.booking__submit:hover {
    background: #c94b1a;
    transform: translateY(-1px);
}

.booking__submit:active {
    transform: translateY(0);
}

/* ── RIGHT: INFO ────────────────────────────────────────────── */
.booking__info {
    padding-top: 0.5rem;
}

.booking__eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c94b1a;
    margin-bottom: 1rem;
}

.booking__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: #1c1410;
    margin-bottom: 1.5rem;
}

.booking__body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.8;
    color: #3a2a22;
    margin-bottom: 2rem;
}

/* ── EVENT TYPES ────────────────────────────────────────────── */
.booking__events {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.booking__event {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.booking__event-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.booking__event-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.booking__event-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1c1410;
}

.booking__event-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #7a5c50;
    line-height: 1.5;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.booking__trust {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(28, 20, 16, 0.1);
}

.booking__trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.booking__trust-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1c1410;
}

.booking__trust-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a5c50;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .booking {
        padding: 60px var(--gutter);
    }

    .booking__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .booking__form-wrap {
        padding: 1.75rem;
    }

    .booking__trust {
        gap: 1.25rem;
        flex-wrap: wrap;
    }
}


/* ── MODAL ──────────────────────────────────────────────────── */
.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(28, 20, 16, 0.6);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--gutter);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal--visible {
    opacity: 1;
}

.booking-modal__box {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 64px rgba(28, 20, 16, 0.2);
}

.booking-modal--visible .booking-modal__box {
    transform: translateY(0);
}

.booking-modal__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-modal__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c94b1a;
    margin-bottom: 0.75rem;
}

.booking-modal__heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1c1410;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.booking-modal__body {
    font-size: 0.9rem;
    font-weight: 400;
    color: #3a2a22;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.booking-modal__body a {
    color: #c94b1a;
    text-decoration: underline;
}

.booking-modal__debug {
    font-size: 0.72rem;
    font-weight: 600;
    color: #c0161b;
    background: #fff0f0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    text-align: left;
    word-break: break-word;
    line-height: 1.6;
}

.booking-modal__close {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    background: #1c1410;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.booking-modal__close:hover {
    background: #c94b1a;
}