/* Typography and Text Styles */

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    
    /* Add handwritten effect */
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Subtle rotation for scrapbook feel */
    transform: rotate(-0.2deg);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-pulse 3s ease-in-out infinite alternate;
    
    /* Add slight organic skew to make it feel hand-drawn */
    transform: rotate(-0.5deg);
    letter-spacing: -0.02em;
    
    /* Add subtle text shadow for depth */
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    animation: fade-up 1s ease-out 0.5s both;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-accent);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fade-up 1s ease-out 0.75s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fade-up 1s ease-out 1.25s both;
}
