/* Homepage Specific Styles */

.home-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.home-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.home-hero p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Quick composer */
.quick-composer {
    margin-bottom: 2rem;
}

/* Hide desktop timeline on mobile */
.desktop-timeline {
    display: none;
}

.mobile-timeline {
    display: block;
}

/* Show desktop timeline on larger screens */
@media (min-width: 1024px) {
    .desktop-timeline {
        display: block;
    }
    
    .mobile-timeline {
        display: none;
    }
}

/* Responsive hero */
@media (max-width: 768px) {
    .home-hero {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    
    .home-hero h1 {
        font-size: 2rem;
    }
    
    .quick-composer {
        margin-bottom: 1.5rem;
    }
}