/* ===== QUI SOMMES-NOUS ===== */
.qui-section {
    background: linear-gradient(135deg, #fce4ec 0%, #fadeec 40%, #ffeef5 100%);
    padding: 7rem 6% 6rem;
    position: relative;
    overflow: hidden;
}
.qui-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.qui-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(249,214,109,0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    color: #E46CC5;
    text-align: center;
    margin-bottom: 0.6rem;
    letter-spacing: -0.5px;
}
.squiggle {
    display: block;
    width: 80px;
    margin: 0 auto 3.5rem;
    opacity: 0.6;
}
.qui-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 750px) {
    .qui-grid { grid-template-columns: 1fr; }
}
.qui-text-block {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 2.8rem 2.4rem;
    box-shadow: 0 10px 40px rgba(194,24,91,0.09);
    border: 1px solid rgba(240,98,146,0.18);
}
.qui-text-block p {
    font-size: 1.08rem;
    color: #4a3040;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}
.qui-text-block p:last-child { margin-bottom: 0; }

.qui-pills {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.pill-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.6rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: 0 6px 24px rgba(194,24,91,0.08);
    border: 1px solid rgba(240,98,146,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.pill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(194,24,91,0.14);
}
.pill-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.pill-card h5 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 0.3rem;
}
.pill-card p {
    font-size: 0.97rem;
    color: #5a3d4a;
    line-height: 1.6;
    margin: 0;
}

/* ===== COMMENT NOUS REJOINDRE ===== */
.rejoindre-section {
    background: linear-gradient(160deg, #fff8fb 0%, #ffeef5 50%, #fffaf2 100%);
    padding: 7rem 6% 7rem;
    position: relative;
    overflow: hidden;
}
.rejoindre-section::before {
    content: '🌸';
    position: absolute;
    font-size: 14rem;
    opacity: 0.05;
    top: -2rem;
    right: 3%;
    pointer-events: none;
    line-height: 1;
}
.rejoindre-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}
.rejoindre-steps {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 3.5rem;
    text-align: left;
}
.step-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 2.4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 30px rgba(194,24,91,0.07);
    border-left: 5px solid #f06292;
    transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
    transform: translateX(6px);
    box-shadow: 0 14px 40px rgba(194,24,91,0.12);
}
.step-card:nth-child(2) { border-left-color: #f9d66d; }
.step-card:nth-child(3) { border-left-color: #c2185b; }
.step-card:nth-child(4) { border-left-color: #f06292; }
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f06292, #c2185b);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(194,24,91,0.28);
}
.step-card:nth-child(2) .step-num {
    background: linear-gradient(135deg, #f9d66d, #f0a835);
    box-shadow: 0 6px 18px rgba(240,168,53,0.28);
}
.step-card:nth-child(3) .step-num {
    background: linear-gradient(135deg, #e91e8c, #c2185b);
    box-shadow: 0 6px 18px rgba(194,24,91,0.28);
}
.step-body h5 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.16rem;
    font-weight: 700;
    color: #E46CC5;
    margin-bottom: 0.35rem;
}
.step-body p {
    font-size: 1rem;
    color: #5a3d4a;
    line-height: 1.65;
    margin: 0;
}
.rejoindre-cta {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}
.btn-rejoindre {
    background: linear-gradient(135deg, #f06292, #c2185b);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 10px 30px rgba(194,24,91,0.28);
    transition: all 0.35s;
}
.btn-rejoindre:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(194,24,91,0.35);
}

/* ===== WAVE séparateur ===== */
.wave-sep {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: -1px 0;
}
.wave-sep svg {
    width: 100%;
    height: 60px;
}

/* ===== HERO SLIDER ===== */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh; /* On réduit à 65% de la hauteur de l'écran pour remonter le bas du bloc */
    min-height: 450px;
    overflow: hidden;
    background-color: #fce4ec;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-size: cover;      /* Couvre tout le bloc */
    background-repeat: no-repeat;
    
    /* MODIFICATION ICI : On force l'image à se caler sur le BAS (bottom) */
    background-position: center 50%; 
    
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Assombrir légèrement l'image pour la lisibilité */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}