/* --- SECTION RECRUTEMENT --- */

.join_wrapper {
    width: 100%;
    height: auto;
    margin: 60px 0px;
    background-color: var(--secondary-color);
}

.join_container {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    /* Texte au dessus de l'image sur mobile */
    align-items: center;
    justify-content: center;
}

.join_img,
.join_text {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.join_img img {
    width: 100%;
    border-radius: 5px;
}

.join_text h1 {
    font-family: 'Poppins', sans-serif;
    /* Par défaut */
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

/* Si tu veux forcer Neuropol sur le titre */
.neuropol {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.join_text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #444;
    max-width: 500px;
}

.join-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    padding: 1.2rem 2.5rem;
    /* Augmentation du rembourrage */
    margin-top: 2rem;
    font-size: 1.1rem;
    /* Augmentation de la taille de la police */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Desktop Version */
@media screen and (min-width : 768px) {
    .join_container {
        flex-direction: row;
        /* Aligné horizontalement */
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px;
        gap: 50px;
    }

    .join_text {
        width: 50%;
        align-items: flex-start;
        text-align: left;
    }

    .join_img {
        width: 50%;
    }

    .join_text h1 {
        font-size: 3rem;
    }
}