/* =====================================================
   Fun & Calm – Comment Réserver  |  fcr-reserver.css
   ===================================================== */

.fcr-reserver {
    padding: 72px 48px;
    font-family: 'Mulish', sans-serif;
    background: #fff;
    box-sizing: border-box;
}

/* ── En-tête ── */
.fcr-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #A89F98;
    margin: 0 0 12px;
}

.fcr-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 500;
    color: #2C2420;
    line-height: 1.15;
    margin: 0 0 10px;
}

.fcr-intro {
    font-size: 15px;
    color: #7A6F68;
    line-height: 1.85;
    font-weight: 300;
    max-width: 560px;
    margin: 0 0 48px;
}

.fcr-intro strong {
    color: #2C2420;
    font-weight: 600;
}

/* ── Grille étapes ── */
.fcr-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #DDD5C8;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
}

/* colonnes auto selon nombre d'étapes */
.fcr-steps-1 { grid-template-columns: 1fr; }
.fcr-steps-2 { grid-template-columns: repeat(2, 1fr); }
.fcr-steps-3 { grid-template-columns: repeat(3, 1fr); }
.fcr-steps-4 { grid-template-columns: repeat(4, 1fr); }
.fcr-steps-5 { grid-template-columns: repeat(5, 1fr); }
.fcr-steps-6 { grid-template-columns: repeat(3, 1fr); }

/* ── Carte étape ── */
.fcr-step {
    background: #F7F3EE;
    padding: 32px 26px;
    position: relative;
    box-sizing: border-box;
}

/* Flèche entre étapes */
.fcr-arrows .fcr-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 32px;
    right: -10px;
    font-size: 18px;
    color: #7FA6B1;
    font-weight: 600;
    z-index: 2;
    background: #F7F3EE;
    width: 20px;
    text-align: center;
    line-height: 1;
}

.fcr-step-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: #E8DFD3;
    line-height: 1;
    margin-bottom: 14px;
}

.fcr-step-title {
    font-size: 14px;
    font-weight: 600;
    color: #2C2420;
    margin: 0 0 8px;
    line-height: 1.3;
}

.fcr-step-body {
    font-size: 13px;
    color: #7A6F68;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

.fcr-step-body strong {
    color: #2C2420;
    font-weight: 600;
}

/* ── Note ── */
.fcr-note {
    background: #EBF3F6;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(127, 166, 177, .2);
    margin-bottom: 28px;
    box-sizing: border-box;
}

.fcr-note-ico {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}

.fcr-note p {
    font-size: 13px;
    color: #527A87;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

.fcr-note p strong {
    color: #2C2420;
    font-weight: 600;
}

/* ── Boutons CTA ── */
.fcr-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fcr-cta-main {
    display: inline-block;
    background: #2C2420;
    color: #fff !important;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 40px;
    text-decoration: none;
    transition: background .2s;
    line-height: 1;
}

.fcr-cta-main:hover {
    background: #7FA6B1;
    color: #fff !important;
}

.fcr-cta-sec {
    display: inline-block;
    background: transparent;
    color: #2C2420 !important;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 40px;
    text-decoration: none;
    border: 1.5px solid #DDD5C8;
    transition: border-color .2s, color .2s;
    line-height: 1;
}

.fcr-cta-sec:hover {
    border-color: #7FA6B1;
    color: #527A87 !important;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .fcr-steps-4,
    .fcr-steps-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .fcr-arrows .fcr-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 860px) {
    .fcr-reserver { padding: 56px 24px; }
    .fcr-steps,
    .fcr-steps-3,
    .fcr-steps-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .fcr-arrows .fcr-step:not(:last-child)::after { display: none; }
    .fcr-ctas { flex-direction: column; }
}

@media (max-width: 480px) {
    .fcr-steps,
    .fcr-steps-2,
    .fcr-steps-3,
    .fcr-steps-4,
    .fcr-steps-5,
    .fcr-steps-6 {
        grid-template-columns: 1fr;
    }
}
