/**
 * Booking Wizard - Header
 *
 * Wizard header that holds the current booking totals.
 *
 * @author Salustiano Silva <salustiano.silva@magicbrain.pt>
 * @since 1.0.0 | 2025-06-30 | Salustiano Silva | First time this was introduced.
 */
#booking-wizard-banner {
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#booking-wizard-banner .ft-large {
    font-size: 2.4rem;
    font-weight: bolder;
}

@media (min-width: 992px) {
    #booking-wizard-banner {
        height: 300px;
    }

    #booking-wizard-banner .ft-large {
        font-size: 2.8rem;
    }
}

@media (min-width: 1200px) {
    #booking-wizard-banner {
        height: 400px;
    }

    #booking-wizard-banner .ft-large {
        font-size: 3rem;
    }
}
