/* SECTION AVIS */
.reviews-section {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    box-sizing: border-box;
}

/* TITRE DE LA SECTION */
.reviews-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* CONTENEUR DES CARTES */
.reviews-container {
    display: flex; /* Utilisation de flexbox */
    flex-direction: column; /* Avis en colonne */
    gap: 20px; /* Espacement entre les cartes */
}

/* CARTE INDIVIDUELLE */
.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* EFFET HOVER */
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* CONTENU DE LA CARTE */
.review-card figcaption {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

/* ICÔNE CITATION */
.review-card figcaption:before {
    content: "\f10e"; /* Icône citation */
    font-family: 'FontAwesome';
    font-size: 32px;
    color: #f0c690;
    display: block;
    margin: 0 auto 15px;
}

/* STYLE DE LA CITATION */
.review-card blockquote {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px;
    line-height: 1.8;
    color: #666;
}

/* MISE EN VALEUR DES MOTS IMPORTANTS */
.review-card blockquote strong {
    color: #333;
    font-weight: bold;
}

/* NOM DE L'AUTEUR */
.review-card h3 {
    color: #3c3c3c;
    font-size: 22px;
    font-weight: 500;
    margin-top: auto;
    text-align: center;
}


/* SECTION AVIS */
.reviews-section {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    box-sizing: border-box;
}


/* CONTENEUR DES CARTES */
.reviews-container {
    display: flex; /* Utilisation de flexbox */
    flex-direction: column; /* Avis en colonne */
    gap: 20px; /* Espacement entre les cartes */
}

/* CARTE INDIVIDUELLE */
.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* EFFET HOVER */
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* CONTENU DE LA CARTE */
.review-card figcaption {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

/* ICÔNE CITATION */
.review-card figcaption:before {
    content: "\f10e"; /* Icône citation */
    font-family: 'FontAwesome';
    font-size: 32px;
    color: #f0c690;
    display: block;
    margin: 0 auto 15px;
}

/* STYLE DE LA CITATION */
.review-card blockquote {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px;
    line-height: 1.8;
    color: #666;
}

/* MISE EN VALEUR DES MOTS IMPORTANTS */
.review-card blockquote strong {
    color: #333;
    font-weight: bold;
}

/* NOM DE L'AUTEUR */
.review-card h3 {
    color: #3c3c3c;
    font-size: 22px;
    font-weight: 500;
    margin-top: auto;
    text-align: center;
}

/* MOBILE */
@media screen and (max-width: 576px) {
    .review-card {
        min-height: 350px; /* Hauteur ajustée */
        padding: 15px;
        margin: 0;
    }
}

/* TABLETTE */
@media screen and (max-width: 992px) {
    .review-card {
        min-height: 400px;
        margin: 0;
    }
}