/* style-accueil.css */
/* Section Hero */
.banniere-hero {
    /* METS TA BELLE IMAGE DE FOND ICI */
    background: linear-gradient(rgba(13, 27, 42, 0.75), rgba(13, 27, 42, 0.75)), url('foto/argentine.jpeg') no-repeat center center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.message-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fa0606;
}

.message-hero p {
    font-size: 1.2rem;
}

/* Matchs en direct */
.section-direct {
    padding: 50px 8%;
}

.titre-section {
    font-size: 28px;
    color: #0d1b2a;
    margin-bottom: 30px;
    border-bottom: 3px solid #0d1b2a;
    padding-bottom: 10px;
}

.indicateur-live {
    background-color: #bb0c0c;
    color: white;
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 4px;
    margin-left: 10px;
}

.conteneur-direct {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carte-direct {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 6px solid #ad0d0d;
}

.affiche-match {
    font-size: 18px;
    font-weight: 600;
}

.score-temps {
    background-color: #0d1b2a;
    color: #ac0a0a;
    padding: 5px 15px;
    border-radius: 5px;
    margin: 0 15px;
}

/* Grille d'actualités */
.section-actualites {
    padding: 0 8% 50px 8%;
}

.grille-actualites {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.carte-actu {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.8s;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.carte-actu:hover {
    transform: translateY(-8px);
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.image-actu {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.contenu-actu {
    padding: 20px;
}

.contenu-actu h3 {
    margin-bottom: 10px;
    color: #0d1b2a;
}