/* Conteneur principal */
.association-page-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 15px;
    border-radius: 15px;
    color: #ffffff;
    animation: fadeIn 1s ease-out; /* Animation d'entrée */
}

/* Logo de l'Association */
.logo-container {
    text-align: center;
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out; /* Animation d'entrée */
}

.asso-logo {
    max-width: 40%;
    height: auto;
    margin-bottom: 30px;
}

/* Titre de la page */
.association-title {
    text-align: center;
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    animation: fadeIn 1.5s ease-out; /* Animation d'entrée plus longue */
}

/* Texte de la section */
.association-section {
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    animation: fadeIn 2s ease-out; /* Animation d'entrée plus douce */
}

/* Responsive */
@media (max-width: 768px) {
    .association-page-container {
        padding: 20px 10px;
    }

    .association-title {
        font-size: 2em;
    }

    .asso-logo {
        max-width: 80%;
    }

    .association-section {
        font-size: 1em;
        margin-bottom: 20px;
    }
}

/* Images associées aux sections */
.association-section img {
    max-width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: slideInUp 1.5s ease-out; /* Animation pour les images */
}

/* Définition des animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(20%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
