/* --- SECTION TÉMOIGNAGES (Wall of Love) --- */
.section-testimonials {
    padding: 100px 0;
    background-color: #fffbf2; /* Retour au fond beige chaud */
    text-align: center;
}

.testimonials-header { margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.testimonials-eyebrow {
    font-family: 'Dancing Script', cursive; color: var(--secondary); font-size: 2.5rem; transform: rotate(-2deg); display: inline-block;
}
.testimonials-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 2.5rem; color: var(--text-dark); margin-top: 10px;
}

/* Carte Témoignage */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: left;
    height: 100%;
    transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }

/* Étoiles */
.stars { color: #f4b458; margin-bottom: 15px; font-size: 0.9rem; }

/* Texte Avis */
.review-text {
    font-size: 1.05rem; line-height: 1.6; color: #555; font-style: italic; margin-bottom: 25px;
}

/* Auteur */
.author-block { display: flex; align-items: center; gap: 15px; }
.author-avatar {
    width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
    border: 2px solid white; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.author-info h5 { font-size: 0.95rem; font-weight: 700; margin: 0; color: var(--text-dark); }
.author-info span { font-size: 0.85rem; color: #888; display: block; }
