/* Booking Page Layout */
.booking-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.booking-page-container .entry-content {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Booking Calendar Styles */
.booking-calendar {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0;
    border: 2px solid var(--color-river-navy);
    width: 100%;
    max-width: 400px;
    flex: 0 0 400px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.calendar-header h3 {
    margin: 0;
    color: var(--color-river-navy);
    font-size: 1.2rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 1rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-off-white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.available:hover {
    background: var(--color-catfish-gold);
    color: var(--color-river-navy);
}

.calendar-day.selected {
    background: var(--color-swamp-olive);
    color: #fff;
    border: 2px solid var(--color-catfish-gold);
}

.calendar-day.booked {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.half-day {
    background: linear-gradient(135deg, #ccc 50%, var(--color-catfish-gold) 50%);
    cursor: pointer;
}

.calendar-legend {
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-size: 0.9rem;
}

.legend-item::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 2px;
}

.legend-item.available::before {
    background: var(--color-off-white);
    border: 1px solid #ddd;
}

.legend-item.booked::before {
    background: #ccc;
}

.legend-item.half-day::before {
    background: linear-gradient(135deg, #ccc 50%, var(--color-catfish-gold) 50%);
}

/* Enquiry Form Styles */
.enquiry-form {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--color-river-navy);
}

.enquiry-form h3 {
    margin-top: 0;
    color: var(--color-river-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hookem-enquiry-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.hookem-enquiry-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--color-river-navy);
}

.hookem-enquiry-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
}

/* Responsive adjustments */
@media (max-width: 850px) {
    .booking-calendar {
        flex: 1 1 100%;
        margin-bottom: 2rem;
    }

    .enquiry-form {
        flex: 1 1 100%;
    }
}