/*
 T *heme Name: Divi Child - Yann Patin de Saulcourt
 Description: Thème enfant Divi personnalisé pour le cabinet de psychothérapie
 Site : https://yannpatindesaulcourt.com
 Template: Divi
 Version: 1.0.0
 */

/* Import du style parent */
@import url("../Divi/style.css");

/* Variables CSS personnalisées */
:root {
    --primary-warm: #8B7355;
    --primary-light: #A69080;
    --accent-gold: #D4AF37;
    --sage-green: #9CAF88;
    --warm-beige: #F5F2ED;
    --soft-terracotta: #E8B4A0;
    --text-dark: #2C2C2C;
    --text-light: #5A5A5A;
}

/* ===== SECTIONS PERSONNALISÉES ===== */

/* Section Hero */
.hero-section {
    background: linear-gradient(135deg, var(--warm-beige) 0%, #FFFFFF 50%, #F9F6F1 100%) !important;
    min-height: 80vh !important;
}

.hero-title h1 {
    font-size: 3.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
}

.hero-subtitle {
    font-size: 1.4rem !important;
    color: var(--text-light) !important;
    font-weight: 300 !important;
    margin-bottom: 40px !important;
}

/* Listes avec bordure colorée */
.services-preview ul li,
.et_pb_text ul li {
    border-left: 3px solid var(--sage-green) !important;
    padding-left: 20px !important;
    margin-bottom: 12px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    transition: all 0.3s ease !important;
    list-style: none !important;
}

.services-preview ul li:hover,
.et_pb_text ul li:hover {
    border-left-color: var(--accent-gold) !important;
    transform: translateX(5px) !important;
}

/* ===== CARTES DE SERVICES ===== */
.service-card {
    background: linear-gradient(135deg, #FFFFFF, var(--warm-beige)) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(156, 175, 136, 0.2) !important;
    height: 100% !important;
}

.service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.15) !important;
}

.service-card h3 {
    color: var(--primary-warm) !important;
    margin-bottom: 20px !important;
    font-size: 1.8rem !important;
}
/* ===== SECTIONS AVEC DÉGRADÉS ===== */
.warm-gradient {
    background: linear-gradient(135deg, var(--warm-beige) 0%, #FAF8F5 100%) !important;
}

.sage-gradient {
    background: linear-gradient(135deg, var(--sage-green), var(--soft-terracotta)) !important;
    color: white !important;
}

.sage-gradient h1,
.sage-gradient h2,
.sage-gradient h3,
.sage-gradient p {
    color: white !important;
}

/* ===== TÉMOIGNAGES ===== */
.testimonials-section {
    background: var(--warm-beige) !important;
    padding: 60px 0 !important;
}

.testimonial-link a {
    color: var(--sage-green) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.testimonial-link a:hover {
    color: var(--accent-gold) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2.5rem !important;
    }

    .lotus-style .et_pb_image_wrap {
        padding: 20px !important;
    }

    .lotus-style img {
        max-width: 200px !important;
    }

    .quote-style blockquote {
        padding: 40px 20px 20px 20px !important;
        font-size: 1.1rem !important;
    }
}

/* ===== ANIMATIONS ===== */
.et_pb_section {
    animation: fadeInUp 0.8s ease-out !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amélioration des modules Divi */
.et_pb_blurb {
    text-align: left !important;
}

.et_pb_blurb_content h4 {
    font-family: 'Crimson Text', serif !important;
    color: var(--primary-warm) !important;
    font-size: 1.8rem !important;
}
