/* ==========================================================================
   STYLES POUR LES NOUVELLES SECTIONS (AVEC IMAGES)
   ========================================================================== */

/* --- 1. Styles Généraux (Inchangé) --- */
.page-section {
    padding: 80px 20px;
}
.section-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
}
.section-subtitle {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-subtle);
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

/* --- 2. Section des Cartes "Collections et Services" --- */
.features-section {
    background-color: var(--cream);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background-color: var(--text-light);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    overflow: hidden; /* Pour que l'image ne dépasse pas les coins arrondis */
    display: flex;
    flex-direction: column;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

/* ✅ NOUVEAU : Style pour le conteneur de l'image */
.feature-card-image {
    height: 200px;
    width: 100%;
}
.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Assure que l'image remplit l'espace sans se déformer */
}

/* Contenu textuel de la carte */
.feature-card .card-content {
    padding: 30px;
}
.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 15px;
}
.feature-card p {
    font-family: var(--font-primary);
    color: var(--text-subtle);
    line-height: 1.6;
    margin-bottom: 25px;
}
.feature-card a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
}

/* --- 3. Section "Histoires de Succès" (Témoignages) --- */
.testimonials-section {
    background-color: #fff;
}
.testimonial-card {
    background-color: var(--warm-beige);
    border-radius: 12px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial-card .quote {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}
.testimonial-card .quote::before {
    content: '“';
    font-size: 3rem;
    color: var(--terracotta);
    opacity: 0.8;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

/* ✅ MODIFIÉ : Pour gérer l'avatar et le texte */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--text-light);
}
.author-info {
    display: flex;
    flex-direction: column;
}
.author-name {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--forest-green);
}
.author-details {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-subtle);
}

/* --- 4. Responsive --- */
@media (max-width: 768px) {
    .page-section { padding: 50px 15px; }
    .section-title { font-size: 2.2rem; }
}