/* Style général */
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #081c32;
    margin: 0;
    padding: 20px;
}

.mission-content {
    text-align: center;
    margin-top: 50px;
}

.mission-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #081c32;
}

/* Liens PDF en disposition horizontale */
.pdf-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Permet d'ajuster l'affichage sur petits écrans */
    gap: 15px;
    margin: 20px 0;
}

.pdf-links p {
    margin: 0;
}

.pdf-links a {
    color: #081c32;
    font-size: 1.1em;
    text-decoration: none;
    background-color: #FFBD33;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.pdf-links a:hover {
    background-color: #FF5733;
    color: #FFFFFF;
}

/* Section vidéo */
.video-section {
    margin-top: 50px;
}

.video-section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #081c32;
}

video {
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    width: 100%; /* Rendre la vidéo responsive */
    max-width: 800px; /* Largeur maximale pour les grands écrans */
    height: auto;
}

/* Styles responsives */
@media (max-width: 768px) {
    .mission-content h2 {
        font-size: 1.8em;
    }

    .pdf-links {
        flex-direction: column; /* Les liens PDF s'affichent en colonne sur petits écrans */
        align-items: center;
    }

    .pdf-links a {
        font-size: 1em;
        padding: 8px 12px;
        width: 90%; /* Les liens occupent presque toute la largeur sur mobile */
        text-align: center;
    }

    .video-section h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .mission-content h2 {
        font-size: 1.6em;
    }

    .pdf-links {
        flex-direction: column;
        gap: 10px;
    }

    .pdf-links a {
        font-size: 0.9em;
        padding: 8px 10px;
        width: 100%; /* Les liens occupent toute la largeur sur très petits écrans */
        text-align: center;
    }

    .video-section h3 {
        font-size: 1.2em;
    }

    video {
        max-width: 100%; /* S'assurer que la vidéo occupe toute la largeur de l'écran */
    }
}
