/**
 * Styles pour l'accordéon interactif avec images
 */

/* Partie Slider d'images */
.amcc-images-slider {
    position: relative;
    width: 100%;
    height: 561px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.amcc-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: none;
}

.amcc-slider-image.active {
    opacity: 1;
    display: block;
}

.amcc-slider-image img {
    width: 100%;
    object-fit: cover;
    height: 600px !important;
    object-position: center;
}

/* Partie Accordéon */
.amcc-accordion {
    width: 100%;
    margin-bottom: 30px;
}

.amcc-accordion-item {
    margin-bottom: 0;
    cursor: pointer;
}

.amcc-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.amcc-accordion-title {
    font-size: 23px;
    font-weight: 600;
    color: #1F386A;
    margin: 0;
    transition: color 0.3s ease;
    font-family: "Wix Madefor Text", Sans-serif;
}

.amcc-accordion-item.active .amcc-accordion-title {
    color: #ef7e10; /* Couleur orange active */
}

.amcc-accordion-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.arrow-down {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
}

.arrow-down:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-bottom: 3px solid #1F386A;
    border-right: 3px solid #1F386A;
    transform: rotate(45deg);
}

.amcc-accordion-item.active .arrow-down:before {
    border-color: #ef7e10; /* Couleur orange active */
}

.amcc-accordion-item.active .amcc-accordion-arrow {
    transform: rotate(180deg);
}

.amcc-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 15px 0 0;
}

.amcc-accordion-item.active .amcc-accordion-content {
    max-height: 300px; /* Hauteur max pour l'animation */
}

.amcc-accordion-content p {
    margin-top: 0;
    margin-bottom: 15px;
}

.amcc-accordion-button {
    display: inline-flex;
    align-items: center;
    color: #ef7e10 !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none !important;
    position: relative;
    margin-bottom: 15px;
}

.amcc-accordion-button:hover {
    text-decoration: underline !important;
}

.amcc-accordion-separator {
    height: 1px;
    background: #1F386A;
    margin: 0;
}

/* Pour les écrans mobiles */
@media (max-width: 768px) {
    .amcc-images-slider {
        height: 300px;
        margin-bottom: 30px;
    }

    .amcc-accordion-title {
        font-size: 18px;
    }

    .amcc-accordion-content {
        padding: 0 10px 0 0;
    }
}
