Check if a time is in the morning (6:00 AM - 11:59 AM)
static bool isMorning(DateTime date) { return date.hour >= 6 && date.hour < 12; }