/* âÂÂÂÂÂÂ Bannière */

#hero-conferences {

    background: url("../img/conferences-banner.jpg") center/cover no-repeat;

    height: 40vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    font-size: 24px;

    font-weight: bold;

    position: relative;

    padding: 20px;

}



.hero-content {

    background: rgba(0, 0, 0, 0.7);

    padding: 20px;

    border-radius: 10px;

    max-width: 80%;

}



#presentation h2 {

    text-align: center;

    font-size: 26px;

    margin-bottom: 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px; /* Espacement entre l'icône et le texte */

}



/* âÂÂÂÂÂÂ Présentation */

.presentation-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 50px;

    gap: 30px;

}



.presentation-container img {

    width: 45%;

    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

}



.presentation-text {

    max-width: 50%;

    font-size: 18px;

    line-height: 1.6;

}



/* âÂÂÂÂÂÂ Section Événements */

.events-container {

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

    padding: 40px 0;

}



.event-card {

    background: white;

    border-radius: 10px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    padding: 20px;

    text-align: center;

    max-width: 350px;

    transition: transform 0.3s ease-in-out;

}



.event-card:hover {

    transform: translateY(-5px);

}



#events h2 {

    text-align: center;

    font-size: 26px;

    margin-bottom: 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px; /* Espacement entre l'icône et le texte */

}



/* âÂÂÂÂÂÂ Formulaire */

#form-contact {

    text-align: center;

    padding: 40px;

    background: #f9f9f9;

    border-radius: 10px;

    margin-top: 40px;
}



input, textarea {

    width: 90%;

    padding: 12px;

    margin: 10px 0;

    border-radius: 5px;

    border: 1px solid #ccc;

    font-size: 16px;

}



textarea {

    height: 120px;

    resize: none;

}



.btn-contact {

    background: #E81E6F;

    color: white;

    padding: 12px 20px;

    border-radius: 5px;

    border: none;

    cursor: pointer;

    font-size: 16px;

    transition: transform 0.2s ease-in-out;

}



.btn-contact:hover {

    background: #C7165A;

    transform: scale(1.05);

}


.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-weight: bold;
    z-index: 9999;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

/* â Style amélioré pour le reCAPTCHA */
#captcha {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    background: #f8f8f8;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: fit-content;
}


/* â Ajustement sur mobile */
@media (max-width: 768px) {
    #captcha {
        justify-content: center;
        width: 100%;
    }
}



/* âÂÂÂÂÂÂ Responsive */

@media (max-width: 768px) {

    .presentation-container {

        flex-direction: column;

        text-align: center;

        gap: 20px;

    }

    

    .presentation-container img {

        width: 90%;

    }



    .presentation-text {

        max-width: 90%;

    }

    

    .events-container {

        flex-direction: column;

        align-items: center;

    }



    .event-card {

        width: 90%;

    }

}

