/* STYLE GENERAL DU SITE */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background-color: #f4f4f4;
}
h3{
    text-align: center;
}

/* PAGE MATCHS */
.matchs{
    text-align:center;
    padding: 30px;
    background: #000000;
    color:white;
}

.matchs h2{
    font-size:40px;
    margin-bottom:15px;
}

/* FILTRES */
.filtres{
    text-align:center;
    margin:40px;
}

.filtres button{
    padding:12px;
    margin:10px;
    border:none;
    background:#0c0b0b;
    color:white;
    border-radius:15px;
    cursor:pointer;
    transition: 1s;
}

.filtres a{
    text-decoration: none;
    color: #f8eeee;
    font-weight: bold;
    transition: 0.7s;
}


.filtres a:hover{
    color: #000000;
    font-weight: bold;
}


.filtres button:hover{
    background:#99b116;
    color:black;
}

/* MATCH */
.liste-matchs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    padding:40px;
}

.match-card{
    width:300px;
    background:white;
    border-radius:15px;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    transition:.3s;
}

.match-card:hover{
    transform:translateY(-8px);
}

.match-card h3{
    color:#00205b;
    margin-bottom:20px;
}

.match-card p{
    margin:10px 0;
}

/* RESPONSIVE */
@media(max-width:768px){
    .liste-matchs{
        flex-direction:column;
        align-items:center;
    }
}

/* 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;
    }
}