/* Titres des sections */
.section-title {
    font-size: 32px;
    color: #BAA360;
    /*margin: 40px 0 20px;*/
    text-align: left;
    font-weight: bold;
    padding: 10px 20px;
}

/* Style pour les conteneurs d'images et d'activités */
.activities-grid {
    margin-bottom: 60px;
    padding: 0px 20px;
}

/* Style pour les rangées d'images */
.image_ete, .image_hiver {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Style pour chaque image */
.activity-image {
    width: 32%;
    margin-bottom: 20px;
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.image-caption {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    text-align: center;
}

/* Style pour les rangées de logos/activités */
.logo_ete, .logo_hiver {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Style pour chaque box d'activité */
.activity-box {
    width: 32%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Style pour les logos */
.logo {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    background-color: #f8f8f8;
    border-radius: 50%;
    border: 1px solid #eee;
    color: #555;
}

.logo i {
    font-size: 36px;
}
/* Titres des activités */
.activity-box h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #BAA360;
}

/* Description des activités */
.activity-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Adaptation pour les écrans plus petits */
@media (max-width: 768px) {
    .activity-image {
        width: 48%;
    }
    
    .activity-box {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .activity-image, .activity-box {
        width: 100%;
    }
}