/* =====================================================
   Fun & Calm – Les Séjours  |  fcsj-sejours.css
   ===================================================== */

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

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

.fcsj-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;
}

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

/* ── Conteneur global ── */
.fcsj-wrap {
    background: #EFE9E0;
    border-radius: 22px;
    padding: 36px;
    box-sizing: border-box;
}

/* ── Label mois ── */
.fcsj-mois-label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    color: #2C2420;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fcsj-mois-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #DDD5C8;
}

/* ── Grille séjours ── */
.fcsj-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.fcsj-cols-1 { grid-template-columns: 1fr; }
.fcsj-cols-2 { grid-template-columns: repeat(2, 1fr); }
.fcsj-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ── Carte séjour ── */
.fcsj-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #DDD5C8;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}

.fcsj-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(44, 36, 32, .1);
}

/* Bande dates */
.fcsj-dates-band {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-sizing: border-box;
}

.fcsj-dates-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .2px;
    line-height: 1.2;
    margin: 0;
}

.fcsj-duree {
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    font-weight: 400;
    margin: 2px 0 0;
}

/* Statuts */
.fcsj-statut {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.fcsj-statut-ok  { background: rgba(255, 255, 255, .25); color: #fff; }
.fcsj-statut-wip { background: rgba(255, 255, 255, .15); color: rgba(255, 255, 255, .85); }

/* Corps */
.fcsj-body {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.fcsj-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: .3px;
    line-height: 1.4;
}

.fcsj-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    color: #2C2420;
    margin: 0 0 4px;
    line-height: 1.2;
}

.fcsj-lieu {
    font-size: 11px;
    color: #A89F98;
    font-weight: 500;
    margin: 0 0 10px;
}

.fcsj-desc {
    font-size: 12px;
    color: #7A6F68;
    line-height: 1.65;
    flex: 1;
    margin: 0 0 14px;
}

/* Footer carte */
.fcsj-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #F0EBE4;
    margin-top: auto;
}

.fcsj-prix {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    color: #2C2420;
    line-height: 1;
}

.fcsj-prix span {
    font-size: 10px;
    color: #A89F98;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
}

.fcsj-btn {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 24px;
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    transition: opacity .2s;
    line-height: 1;
}

.fcsj-btn:hover { opacity: .85; }

/* ── Liste d'attente ── */
.fcsj-waitlist {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #DDD5C8;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.fcsj-waitlist p {
    font-size: 13px;
    color: #7A6F68;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.fcsj-waitlist p strong { color: #2C2420; font-weight: 600; }

.fcsj-waitlist-btn {
    background: #2C2420;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 40px;
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0;
    line-height: 1;
}

.fcsj-waitlist-btn:hover { background: #7FA6B1; }

/* ── Responsive ── */
@media (max-width: 860px) {
    .fcsj-sej   { padding: 56px 24px; }
    .fcsj-wrap  { padding: 24px 20px; }
    .fcsj-cols-2,
    .fcsj-cols-3 { grid-template-columns: 1fr; }
    .fcsj-waitlist { flex-direction: column; }
}
