/* --- SECTION HERO --- */

.accueil-hero {
    max-width: 800px;
    margin: 4vh auto 64px auto;
    text-align: center;
}

.titre-bienvenue {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.kinographe {
    color: #FE4F00;
    font-family: "Monoton", sans-serif;
    font-weight: 500;
}

.texte-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 48px;
    text-align: justify;
}

/* --- IMAGE CENTRALE --- */
.image-hero {
    margin-bottom: 48px;
}

.image-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    box-shadow: -4px 4px 0px rgba(0,0,0,1); 
}

.legende-image {
    display: block;
    text-align: left;
    font-size: 0.8rem;
    margin-top: 8px;
    font-family: 'Courier New', Courier, monospace;
}

/* --- BLOC CHIFFRES --- */
.zone-chiffres {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.lien-chiffre {
    flex: 1;
    display: block;
}

.bloc-chiffre {
    border: 1px solid #000;
    box-shadow: -4px 4px 0px rgba(0,0,0,1);
    background-color: #fff;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.2s ease;
}

.bloc-chiffre:hover {
    box-shadow: -8px 8px 0px rgba(0,0,0,1);
    background-color: #F2D06E;
}

.chiffre-valeur {
    font-family: "Monoton", sans-serif;
    font-size: 6rem;
    line-height: 1;
    color: #000;
    margin-bottom: 16px;
}

.chiffre-label {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* --- SECTION SÉLECTION FILMS --- */
.accueil-selection {
    margin: 0 10vw 10vh 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titre-selection {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 48px;
}

.grille-films {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 0 10vw 5vw 10vw;
}

.action-centre {
    text-align: center;
}