# Home Page Sort Adjustment

## Change Made
The home page month sections now start from the **current month** and sort forward, wrapping around the calendar year.

### Before
Months were hardcoded: December → January → February → March → April

### After
Months start from the current month: **March** → April → December → January → February

Within each month, videos are sorted by day number (1, 2, 3, ...).

## File Changed
- `app/Http/Controllers/VideoController.php` — `home()` method

## How It Works
- `now()->month` gives the current month number (e.g. 3 for March)
- Each month group is assigned a sort offset: `(monthNum - currentMonth + 12) % 12`
  - March (3): offset 0 (first)
  - April (4): offset 1
  - December (12): offset 9
  - January (1): offset 10
  - February (2): offset 11
- Within each month, videos are sorted by the day number parsed from the title
