/* STYLE GENERAL DU SITE */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background-color: #f4f4f4;
}
/* STADES */

.stades{
    padding:60px;
    text-align:center;
}

.stades h2{
    color:#00205b;
    font-size:40px;
}

.stade-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    margin-top:40px;
}

.stade-card{
    width:300px;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    cursor:pointer;
    transition:.3s;
}

.stade-card:hover{
    transform:scale(1.05);
}

.stade-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.stade-card h3{
    margin:15px;
    color:#00205b;
}

.stade-card p{
    margin-bottom:10px;
}


/* FICHE */
.fiche{
    width:70%;
    margin:50px auto;
    background:white;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.fiche h2{
    color:#00205b;
    margin-bottom:20px;
}

.fiche img{
    width:100%;
    max-width:50px;
    margin-top:20px;
    border-radius:10px;
}

/* FOOTER */
footer{
    background-color: #00205b;
    color: white;
    padding: 40px 20px;
}

.footer-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-box{
    width: 220px;
    margin: 15px;
}

.footer-box h3{
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-box p{
    margin: 8px 0;
    cursor: pointer;
}

.footer-box p:hover{
    color: #ffd700;
}

/* Réseaux sociaux */
.social a{
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.social a:hover{
    color: #ffd700;
}

/* Copyright */
.copyright{
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid white;
}

/* RESPONSIVE TELEPHONE */
@media(max-width:900px){
    .navbar{
        flex-direction: column;
    }

    .menu{
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .menu li{
        margin: 10px;
    }

    .footer-container{
        flex-direction: column;
        align-items: center;
    }
}