/* STYLE GENERAL DU SITE */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background-color: #f4f4f4;
    padding-top: 100px;
}

/* MENU DE NAVIGATION */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #00205b;
    z-index: 1000;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

/* Logo FIFA + Nom du site */
.logo{
    display: flex;
    align-items: center;
}

.logo img{
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 15px;
}

.logo h2{
    font-size: 22px;
    color: #ffd700;
}

/* Les liens du menu */
.menu{
    display: flex;
    list-style: none;
}

.menu li{
    margin-left: 13px;
    list-style-type: none;
}

.menu li a{
    text-decoration: none;
    color: #ffd700;
    font-size: 16px;
    font-weight: bold;
    border-radius: 40px;
    padding: 5px 10px;
}

.menu li a:hover{
    transition: 0.3s;
    background: white;
}

/* PAGE A PROPOS */
.presentation{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    padding:60px;
    background:white;
}

.image-box img{
    width:450px;
    border-radius:20px;
}

.text-box{
    width:500px;
}

.text-box h2{
    color:#00205b;
    font-size:35px;
    margin-bottom:20px;
}

.text-box p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:15px;
}

/* HISTOIRE */
.histoire{
    padding:50px;
    text-align:center;
    background:#f4f4f4;
}

.histoire h2{
    color:#00205b;
    font-size:35px;
    margin-bottom:20px;
}

.histoire p{
    max-width:900px;
    margin:15px auto;
    line-height:1.8;
}

/* PAYS ORGANISATEURS */
.pays{
    padding:60px;
    text-align:center;
}

.pays h2{
    color:#00205b;
    font-size:35px;
    margin-bottom:40px;
}

.pays-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.pays-card{
    width:300px;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px gray;
}

.pays-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.pays-card h3{
    color:#00205b;
    margin:15px;
}

.pays-card p{
    padding:15px;
    line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:900px){
    .presentation{
        flex-direction:column;
    }

    .image-box img{
        width:90%;
    }

    .text-box{
        width:90%;
    }
}

/* 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;
    }
}