/* Booking Page Styles */

/* Remove background image for booking page */
.booking-page.hero-contact-wrapper {
    background-image: none;
    background: #fafafa;
}

.booking-page.hero-contact-wrapper::before {
    display: none;
}

.booking-section {
    padding: 60px 20px 100px;
    background: #fafafa;
    min-height: 100vh;
    padding-top: 110px;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-title {
    font-size: 42px;
    font-weight: 560;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #000;
}

.booking-subtitle {
    font-size: 16px;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.35;
}

/* Wrapper that follows calendar size exactly */
.booking-wrapper {
    min-width: 900px;
    width: fit-content;
    max-width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .booking-wrapper {
        min-width: 100%;
    }
}

/* Center the wrapper */
.booking-page .container {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-section {
        padding: 100px 16px 60px;
    }
    
    .booking-title {
        font-size: 32px;
    }
    
    .booking-subtitle {
        font-size: 16px;
    }
}