#home_section {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

#home_section .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hi {
    color: var(--secondary-color);
    font-size: 16px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.name {
    color: var(--text-primary);
    font-size: 80px;
    font-weight: 600;
    line-height: 1.1;
}

.title {
    color: var(--text-secondary);
    font-size: 80px;
    font-weight: 600;
    line-height: 1.1;
}

.bio {
    color: var(--text-secondary);
    font-size: 20px;
    max-width: 540px;
    margin-top: 20px;
}

/* Animation delays */
.hi { animation-delay: 100ms; }
.name { animation-delay: 200ms; }
.title { animation-delay: 300ms; }
.bio { animation-delay: 400ms; }

@media (max-width: 768px) {
    .name, .title {
        font-size: 40px;
    }
    
    .bio {
        font-size: 18px;
    }
}
