/**
 * Holiday Events Package
 * Annual holidays and special celebrations
 */

export {
  christmas,
  newYear,
  thanksgiving,
  blackfriday,
  independenceday,
  birthday,
  immunizations,
  vacation,
  newFood,
  halloween,
  valentinesDay,
  easterEggHunt,
  backToSchoolShopping,
  springCleaning,
  mothersDayForgot,
  summerFirstDayPool,
  snowDay,
  newYearsResolution,
  blackFridayChaos
} from './annual';

// Birthday milestone events
export {
  sweet16,
  eighteenthBirthday,
  twentyFirstBirthday,
  decadeBirthday,
  birthdayGifts,
  birthdayEvents,
} from './birthdays';

// Enhanced holiday events (multi-stage, richer tradeoffs)
export {
  newYearResolutionEnhanced,
  valentinesDayEnhanced,
  halloweenEnhanced,
  thanksgivingDinner,
  christmasEnhanced,
  summerSolstice,
  firstDayAutumn,
  fourthOfJulyEnhanced,
  enhancedHolidayEvents,
} from './enhanced';
