/* ============================================================
   CLUB PAGE STYLES
   ============================================================ */

/* ---- INTRO ---- */
.club-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.club-intro-text .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-royal-900, #1e3a8a);
    margin-bottom: 0.75rem;
}
.club-intro-text .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.club-intro-text p {
    font-size: 0.975rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.club-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.club-stat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.club-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30,58,138,0.08);
    border-color: #bfdbfe;
}
.club-stat-card__value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-royal-900, #1e3a8a);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.club-stat-card__label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* ---- VALEURS ---- */
.club-valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}
.club-valeur {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.club-valeur:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(30,58,138,0.09);
    border-color: #bfdbfe;
}
.club-valeur__icon {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    color: var(--color-royal-900, #1e3a8a);
    transition: background 0.25s;
}
.club-valeur:hover .club-valeur__icon { background: #dbeafe; }
.club-valeur__icon svg { width: 26px; height: 26px; }
.club-valeur h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.club-valeur p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ---- GYMNASE ---- */
.club-gymnase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.club-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}
.club-info-item__icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-royal-900, #1e3a8a);
}
.club-info-item__icon svg { width: 18px; height: 18px; }
.club-info-item strong { display: block; font-size: 0.8rem; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.club-info-item p { font-size: 0.9rem; color: #0f172a; margin: 0; }
.club-info-item a { color: var(--color-royal-900, #1e3a8a); text-decoration: none; }
.club-info-item a:hover { text-decoration: underline; }

.club-horaires {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.club-horaire-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.875rem;
}
.club-horaire-row__day {
    font-weight: 700;
    color: var(--color-royal-900, #1e3a8a);
    min-width: 70px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.club-horaire-row__info { color: #475569; }

.club-map-embed { border-radius: 16px; overflow: hidden; }

/* ---- BUREAU ---- */
.club-bureau-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.club-bureau-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.club-bureau-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}
.club-bureau-card__avatar {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-royal-900, #1e3a8a);
}
.club-bureau-card__avatar svg { width: 28px; height: 28px; }
.club-bureau-card h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-royal-900, #1e3a8a);
    margin-bottom: 0.3rem;
}
.club-bureau-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.club-bureau-card__role {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}
.club-benevoles-cta {
    text-align: center;
    padding: 2rem;
    background: #eff6ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.club-benevoles-cta p { font-size: 1rem; color: #1e3a8a; font-weight: 600; margin: 0; }

/* ---- JOIN CTA ---- */
.club-join-cta { background: var(--color-royal-900, #1e3a8a); }
.club-join-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.club-join-block__text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
.club-join-block__text p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin: 0;
}
.club-join-block__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn--ghost-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s;
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.15); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .club-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .club-gymnase-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .club-intro-stats { grid-template-columns: 1fr 1fr; }
    .club-bureau-grid { grid-template-columns: 1fr 1fr; }
    .club-join-block { flex-direction: column; text-align: center; }
    .club-join-block__actions { justify-content: center; }
    .club-benevoles-cta { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) {
    .club-intro-stats { grid-template-columns: 1fr 1fr; }
    .club-bureau-grid { grid-template-columns: 1fr; }
}
