"""
Adolescence Events Package
Events for teens ages 10-18

Modules:
- puberty: Physical development and puberty
- social: Romance, friendships, and social development
- life_events: General adolescent life experiences
"""

from .puberty import *
from .social import *
from .life_events import *

__all__ = [
    # Puberty
    'puberty',
    'startedPeriod',
    'braces',
    'glasses',
    # Social
    'firstCrush',
    'firstKiss',
    'dating_choice',
    'romanticDate',
    'newFriend',
    # Life Events
    'groupProjectDrama',
    'voiceCracking',
    'bodySelfConsciousness',
    'curfewArgument',
    'growthSpurt',
    'embarrassingSituation',
    'sleepover',
    'socialMediaPressure',
    'fashionExperimentation',
    'learningToDrive',
]
