/* ===== Section About ===== */
.about-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.about-image {
    flex: 1 1 500px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-features li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.about-features i {
    color: var(--primary-orange);
    margin-right: 8px;
}

/* Bouton */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-orange);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e07b00;
}

/* ===== Slider Activités ===== */
.activity-slider {
    position: relative;
    width: 100%;
    height: 380px; /* Hauteur fixe pour éviter les sauts */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: #f9f9f9;
    z-index: 1;
}

.activity-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

/* Image active */
.activity-slider img.active {
    opacity: 1;
    pointer-events: auto;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--primary-orange);
}



/* Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 25px;
    }

    .activity-slider {
        height: 250px;
        width: 100%;
    }
}
