/* =====================================================
   Fun & Calm – Ambassadeurs BG  |  fcab-style.css
   ===================================================== */

.fcab-wrap {
    font-family: 'Mulish', sans-serif;
    background: #EFE9E0;
    box-sizing: border-box;
}

.fcab-card {
    background: #EFE9E0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #DDD5C8;
}

/* ── En-tête ── */
.fcab-header {
    background: #2C2420;
    padding: 24px 32px;
    border-bottom: 1px solid #DDD5C8;
}

.fcab-header strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.fcab-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

/* ── Carrousel ── */
.fcab-carousel { position: relative; overflow: hidden; }

.fcab-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

/* ── Slide ── */
.fcab-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.fcab-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.fcab-slide:hover .fcab-slide-bg { transform: scale(1.03); }

.fcab-overlay {
    position: absolute;
    inset: 0;
}

.fcab-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px;
}

.fcab-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .9);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    line-height: 1.4;
}

.fcab-slide-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}

.fcab-slide-body {
    font-size: 13px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
    max-width: 540px;
}

.fcab-slide-body strong { color: #fff; font-weight: 600; }

/* ── Contrôles ── */
.fcab-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 32px;
    border-top: 1px solid #DDD5C8;
    background: #EFE9E0;
}

.fcab-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #C4B8A8;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #7A6F68;
    transition: border-color .2s, background .2s;
    line-height: 1;
}

.fcab-nav:hover {
    border-color: #2C2420;
    color: #2C2420;
}

.fcab-dots { display: flex; gap: 8px; }

.fcab-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C4B8A8;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.fcab-dot.fcab-active {
    background: #2C2420;
    transform: scale(1.35);
}

/* ── CTA bas ── */
.fcab-cta {
    padding: 18px 32px;
    border-top: 1px solid #DDD5C8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: #EFE9E0;
    box-sizing: border-box;
}

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

.fcab-cta-btn {
    display: inline-block;
    background: #2C2420;
    color: #fff !important;
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0;
    line-height: 1;
}

.fcab-cta-btn:hover { background: #C4856A; }

/* ── Responsive ── */
@media (max-width: 640px) {
    .fcab-header       { padding: 20px 24px; }
    .fcab-slide-content{ padding: 20px 24px; }
    .fcab-controls     { padding: 12px 20px; }
    .fcab-cta          { padding: 16px 24px; flex-direction: column; }
}
