/* ============================================
   FUTUR DÉSIRÉ — DÉMARCHE — Styles dédiés
   Page dark full-screen, design Insuffle
   v1.0.0
   ============================================ */


/* ── PAGE-LEVEL PROTECTION — beat parent theme .bg-white rules ── */
.fd-page {
    background-color: #02040a !important;
    color: #F8FAFC !important;
}
.fd-page h1,
.fd-page h2,
.fd-page h3,
.fd-page h4,
.fd-page p,
.fd-page span,
.fd-page blockquote,
.fd-page a,
.fd-page li,
.fd-page label,
.fd-page div,
.fd-page button {
    color: inherit !important;
}
/* Restore specific Tailwind colors inside fd-page */
.fd-page .text-slate-400 { color: #94a3b8 !important; }
.fd-page .text-slate-50 { color: #F8FAFC !important; }
.fd-page .text-gray-300 { color: #d1d5db !important; }
.fd-page .text-gray-400 { color: #9ca3af !important; }
.fd-page .text-brand-accent { color: #ffde59 !important; }
.fd-page .text-brand-dark { color: #02040a !important; }
.fd-page .text-green-400 { color: #4ade80 !important; }
.fd-page .text-blue-400 { color: #60a5fa !important; }
.fd-page .text-yellow-400 { color: #facc15 !important; }
.fd-page .text-white { color: #ffffff !important; }

/* Gradient text protection */
.fd-page .bg-clip-text {
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}


/* ── SCROLL REVEAL ── */
.fd-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fd-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Fallback if JS fails */
.fd-anim-fallback .fd-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}


/* ── CARDS ── */
.fd-card {
    background: #0c1629;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fd-card:hover {
    border-color: rgba(255,222,89,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}


/* ── TIMELINE ── */
.fd-timeline-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    background: linear-gradient(135deg, #ffde59, #fbbf24);
    color: #02040a;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.fd-timeline-dot.active {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(255,222,89,0.4);
}


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .fd-page h1 {
        font-size: 3rem !important;
    }
}


/* ── PRINT ── */
@media print {
    .fd-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
