/* Enhanced Header Section Styling for Booking Page - Scaled to 30% size with Optimized Spacing */
.booking-page-header {
    /* Optimized padding for 30% scale - increased top padding to clear navbar */
    padding-top: 7rem !important;
    padding-bottom: 1rem !important;
    min-height: 120px;

    /* Ensure proper spacing from sticky navbar */
    margin-top: 0;

    /* Better visual presentation */
    position: relative;
    overflow: hidden;
}

/* Enhanced header title styling - Scaled down */
.booking-page-header h1 {
    font-size: 1.25rem !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    margin-bottom: 0.25rem !important;
    letter-spacing: -0.02em;
}

/* Enhanced subtitle styling - Scaled down */
.booking-page-header p {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    opacity: 0.85 !important;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive breakpoints for tablets */
@media (min-width: 640px) {
    .booking-page-header {
        padding-top: 7.5rem !important;
        padding-bottom: 1.25rem !important;
        min-height: 140px;
    }

    .booking-page-header h1 {
        font-size: 1.35rem !important;
    }

    .booking-page-header p {
        font-size: 0.9rem !important;
    }
}

/* Responsive breakpoints for laptops and desktops */
@media (min-width: 1024px) {
    .booking-page-header {
        padding-top: 8rem !important;
        padding-bottom: 1.5rem !important;
        min-height: 160px;
    }

    .booking-page-header h1 {
        font-size: 1.5rem !important;
    }

    .booking-page-header p {
        font-size: 0.95rem !important;
    }
}

/* Extra large screens */
@media (min-width: 1280px) {
    .booking-page-header {
        padding-top: 8.5rem !important;
        padding-bottom: 1.75rem !important;
        min-height: 180px;
    }

    .booking-page-header h1 {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem !important;
    }

    .booking-page-header p {
        font-size: 1rem !important;
        max-width: 600px;
    }
}

/* Prevent header overlap with sticky navigation */
#wrapper {
    padding-top: 0;
}

/* Ensure proper z-index layering */
.uc-header {
    z-index: 999;
}

.booking-page-header {
    z-index: 1;
}

/* Smooth transitions for responsive changes */
.booking-page-header,
.booking-page-header h1,
.booking-page-header p {
    transition: all 0.3s ease-in-out;
}

/* Enhanced text readability with better contrast */
.booking-page-header h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile-first approach - extra small screens */
@media (max-width: 480px) {
    .booking-page-header {
        padding-top: 6.5rem !important;
        padding-bottom: 1rem !important;
        min-height: 110px;
        margin-top: 0;
    }

    .booking-page-header h1 {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem !important;
    }

    .booking-page-header p {
        font-size: 0.75rem !important;
        padding: 0 1rem;
    }
}

/* Logo Styling */
.logo-img {
    max-height: 50px;
    width: auto;
}