.hero {
    min-width: 75vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 6rem;
    text-shadow: 0 0 10px #0ff, 0 0 20px #f0f, 0 0 30px #0ff;
}

.hero .subtitle {
    margin-top: 20px;
    font-size: 1.5rem;
    color: rgb(237, 135, 237);
    text-shadow: 0 0 10px #f0f, 0 0 20px #0ff, 0 0 30px #f0f;
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {
    .hero {
        min-width: 90vw;
        padding: 0;
        margin-left: -55px;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        margin-top: 15px;
    }

    /* Cards home plus petites sur mobile */
    .card-home {
        width: 280px;
        height: 380px;
    }

    .card-home h2 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-width: 95vw;
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 0.9rem;
        margin-top: 12px;
    }

    /* Cards encore plus petites sur très petit mobile */
    .card-home {
        width: 240px;
        height: 340px;
    }

    .card-home h2 {
        font-size: 0.9rem;
        bottom: 12px;
        left: 12px;
    }
}

/* Orientation paysage sur mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 0.85rem;
        margin-top: 10px;
    }
}