/* ============================================
   SESSIONS-COLLECTIVES.CSS
   Breath by Nolwenn
   ============================================ */

.sc-page { background: #F0E0D7; font-family: 'Poppins', sans-serif; color: #2D2A28; }

/* ── HERO ── */
.sc-hero {
    padding: 100px 24px 60px;
    text-align: center;
}

.sc-hero-breadcrumb {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-bottom: 16px;
    font-size: 12px; color: rgba(255,255,255,0.65);
}
.sc-hero-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.sc-hero-breadcrumb a:hover { color: white; }

.sc-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 6px 16px;
    border-radius: 99px; margin-bottom: 14px;
    backdrop-filter: blur(8px);
}

.sc-hero h1 {
    font-size: 36px; font-weight: 900; color: white;
    line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 10px;
}

.sc-hero p {
    font-size: 14px; color: rgba(255,255,255,0.85);
    line-height: 1.6; max-width: 400px; margin: 0 auto;
}

@media (min-width: 768px) { .sc-hero h1 { font-size: 48px; } }

/* ── BODY ── */
.sc-body { max-width: 680px; margin: 0 auto; padding: 48px 24px 60px; }

/* ── SECTION HEADER ── */
.sc-section-header { margin-bottom: 28px; }

.sc-eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #D45C65; margin-bottom: 6px;
}

.sc-section-title {
    font-size: 22px; font-weight: 900; color: #2D2A28;
    line-height: 1.2; letter-spacing: -0.2px;
}

/* ── VILLE LIST ── */
.sc-ville-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; }

.sc-ville-card {
    background: white; border-radius: 20px;
    padding: 20px 22px; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; transition: box-shadow 0.3s, transform 0.3s;
    flex-wrap: wrap;
}
.sc-ville-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.11); transform: translateY(-2px); }
.sc-ville-card--soon { opacity: 0.7; }
.sc-ville-card--soon:hover { transform: none; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.sc-ville-left { display: flex; align-items: center; gap: 14px; flex: 1; }

.sc-ville-icon {
    width: 46px; height: 46px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(155,170,151,0.2), rgba(95,143,138,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}

.sc-ville-info { flex: 1; }
.sc-ville-name { font-size: 17px; font-weight: 700; color: #2D2A28; margin-bottom: 3px; }
.sc-ville-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sc-ville-detail { font-size: 12px; color: #6B6460; }
.sc-ville-dot { color: rgba(0,0,0,0.2); font-size: 10px; }

.sc-ville-badge {
    display: inline-block;
    font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
    padding: 3px 10px; border-radius: 99px;
}
.sc-ville-badge--active { background: rgba(95,143,138,0.12); color: #5F8F8A; }
.sc-ville-badge--soon { background: rgba(0,0,0,0.06); color: #8A7A73; }

/* Actions (boutons) dans la card */
.sc-ville-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.sc-ville-cta {
    display: inline-block; text-decoration: none;
    font-weight: 700; font-size: 13px;
    padding: 11px 20px; border-radius: 99px;
    white-space: nowrap; transition: all 0.2s;
}
.sc-ville-cta--primary { background: #D45C65; color: white; }
.sc-ville-cta--primary:hover { background: #C04A53; }
.sc-ville-cta--outline { background: transparent; border: 2px solid #2D2A28; color: #2D2A28; }
.sc-ville-cta--outline:hover { background: #2D2A28; color: white; }
.sc-ville-cta--soon { background: rgba(0,0,0,0.06); color: #8A7A73; cursor: default; font-weight: 500; }

/* ── INFO SÉANCE ── */
.sc-seance-info {
    background: #F5EDE4; border-radius: 20px;
    padding: 24px; margin-bottom: 48px;
}
.sc-seance-info-title {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: #6B6460; margin-bottom: 12px;
}
.sc-seance-info-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 500px) { .sc-seance-info-items { grid-template-columns: repeat(4, 1fr); } }
.sc-seance-info-item { text-align: center; background: white; border-radius: 14px; padding: 14px 10px; }
.sc-seance-info-item-icon { font-size: 22px; margin-bottom: 6px; }
.sc-seance-info-item-label { font-size: 11px; font-weight: 600; color: #2D2A28; margin-bottom: 2px; }
.sc-seance-info-item-value { font-size: 11px; color: #6B6460; }

/* ── REASSURANCE ── */
.sc-reassurance { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 500px) {
    .sc-reassurance { flex-direction: row; flex-wrap: wrap; }
    .sc-reassurance-item { flex: 1; min-width: 180px; }
}
.sc-reassurance-item {
    display: flex; align-items: center; gap: 10px;
    background: white; border-radius: 12px; padding: 12px 14px;
    font-size: 12px; color: #6B6460; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.sc-reassurance-icon { font-size: 16px; flex-shrink: 0; }

/* ── CONTACT — aligné avec la page réserver ── */
.sc-contact-block {
    text-align: center;
    padding: 48px 24px;
    background: #F5EDE4;
}
.sc-contact-block h2 {
    font-size: 24px; font-weight: 900; color: #2D2A28;
    margin-bottom: 10px;
}
.sc-contact-block p {
    font-size: 14px; color: #6B6460;
    line-height: 1.6; margin-bottom: 24px;
}
.sc-contact-block a {
    display: inline-block; background: #D45C65; color: white;
    font-weight: 700; font-size: 14px;
    padding: 14px 32px; border-radius: 99px;
    text-decoration: none; transition: background 0.2s;
}
.sc-contact-block a:hover { background: #C04A53; }