/**
 * Hero Section - Homepage
 * 
 * UI Refactor: Hero réduit (pas full screen), moderne et dense
 */

/* UI Refactor: Hero réduit, pas full screen */
.hero-section {
    position: relative;
    min-height: 35vh; /* Réduit depuis 100vh - pas full screen */
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
    border-bottom: var(--border-width) solid var(--border-color);
    padding: var(--spacing-lg) 0;
}

.hero-content {
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: var(--font-size-xxxl);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-normal);
    margin: 0;
}

/* Responsive - UI Refactor: Hero compact mobile */
@media (max-width: 767px) {
    .hero-section {
        min-height: 25vh;
        max-height: 280px;
        padding: var(--spacing-md) 0;
    }
    
    .hero-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-sm);
    }
}
