/* Booking Page Styles */

.booking-hero {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.booking-intro {
    margin-bottom: 40px;
}

.booking-intro .booking-headshot {
    width: 120px !important;
    height: 120px !important;
    max-width: 120px !important;
    max-height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    margin-bottom: 24px !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.booking-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 16px;
    line-height: 1.2;
}

.booking-subtitle {
    font-size: 1.125rem;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-calendar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    padding: 24px;
    min-height: 500px;
}

.booking-calendar iframe {
    min-height: 500px;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-hero {
        padding: 60px 0;
    }

    .booking-headshot {
        width: 100px;
        height: 100px;
        max-width: 100px;
        max-height: 100px;
    }

    .booking-title {
        font-size: 1.75rem;
    }

    .booking-subtitle {
        font-size: 1rem;
    }

    .booking-calendar {
        padding: 16px;
        border-radius: 8px;
    }
}
