/* ========================================
   APROPOS.CSS — Page À Propos L'Espace N.G.
   ======================================== */

.nav-active {
    color: var(--pink-primary) !important;
}
.nav-active::after {
    width: 100% !important;
}

/* ── Hero ── */
.ap-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
    text-align: center;
}
.ap-hero-bg {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.ap-hero-content {
    position: relative; z-index: 1; max-width: 800px; margin: 0 auto;
}
.ap-tagline {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--pink-dark);
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
}
.ap-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.ap-hero-sub {
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gray);
}

/* ── Intro ── */
.ap-intro { background: var(--white); padding: 6rem 0; }
.ap-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}
.ap-visual-wrap {
    position: relative;
    height: 440px;
}
.ap-card {
    position: absolute;
    width: 220px;
    height: 280px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.ap-card-1 { background: var(--gradient-primary); top: 0; left: 10px; transform: rotate(-6deg); }
.ap-card-2 { background: var(--gradient-gold); top: 60px; right: 10px; transform: rotate(5deg); }
.ap-card-3 { background: var(--gradient-dark); bottom: 0; left: 50%; transform: translateX(-50%) rotate(-2deg); }
.ap-visual-wrap:hover .ap-card { transform: rotate(0deg) translateY(-8px); }
.ap-initials {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    z-index: 10;
    pointer-events: none;
}
.ap-lead {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}
.ap-intro-text p { margin-bottom: 1.2rem; line-height: 1.8; }
.ap-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #FDF0F7;
}
.ap-stat { text-align: center; }
.ap-stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ap-stat-lbl { font-size: 0.8rem; color: var(--gray); margin-top: 0.3rem; display: block; }

/* ── Mission ── */
.ap-mission {
    background: linear-gradient(135deg, #FDF0F7 0%, #fff8f0 100%);
    padding: 5rem 0;
}
.ap-mission-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.ap-mission-emoji { font-size: 3.5rem; display: block; margin-bottom: 1.5rem; }
.ap-mission-box p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray);
    margin-top: 1.5rem;
}

/* ── Ce que je fais ── */
.ap-what { background: var(--white); padding: 6rem 0; }
.ap-what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}
.ap-what-card {
    background: white;
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #fde8f3;
    transition: var(--transition);
}
.ap-what-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink-light);
}
.ap-what-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.ap-what-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--black);
}
.ap-what-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }

/* ── Témoignages ── */
.ap-testimonials {
    background: linear-gradient(180deg, #FDF0F7 0%, #fff 100%);
    padding: 6rem 0;
}

/* Featured (grande carte) */
.ap-testi-featured {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    box-shadow: var(--shadow-lg);
    border-left: 6px solid var(--pink-primary);
    max-width: 860px;
    margin: 0 auto 3rem;
    position: relative;
}
.ap-testi-quote-icon {
    font-size: 5rem;
    line-height: 1;
    color: var(--pink-primary);
    opacity: 0.2;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-family: 'Playfair Display', serif;
}
.ap-testi-featured p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    padding-left: 1rem;
}
.ap-testi-author-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ap-testi-author-row strong { display: block; font-size: 1rem; color: var(--black); }
.ap-testi-author-row span { font-size: 0.85rem; color: var(--gray); display: block; }

/* Grille 4 petites cartes */
.ap-testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.ap-testi-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #fde8f3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}
.ap-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.ap-testi-card p {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--gray);
    flex-grow: 1;
}

/* Avatars */
.ap-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.ap-avatar-lg {
    width: 54px; height: 54px;
    font-size: 1.3rem;
}
.ap-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }

/* ── CTA Final ── */
.ap-cta {
    background: var(--gradient-primary);
    padding: 6rem 0;
}
.ap-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.ap-cta-box h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.ap-cta-box h2 .highlight {
    background: none;
    -webkit-text-fill-color: var(--gold);
    color: var(--gold);
}
.ap-cta-box p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 2.5rem; }
.ap-cta-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.ap-cta-btns .btn-primary { background: var(--white); color: var(--pink-dark); }
.ap-cta-btns .btn-secondary { border-color: var(--white); color: var(--white); }
.ap-cta-btns .btn-secondary:hover { background: var(--white); color: var(--pink-dark); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ap-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ap-visual-wrap { height: 300px; }
    .ap-what-grid { grid-template-columns: repeat(2, 1fr); }
    .ap-testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ap-what-grid { grid-template-columns: 1fr; }
    .ap-testi-grid { grid-template-columns: 1fr; }
    .ap-stats { grid-template-columns: repeat(3, 1fr); }
    .ap-testi-featured { padding: 2rem 1.5rem; }
    .ap-cta-btns { flex-direction: column; align-items: center; }
}
