/* ==========================================================================
   Wizard d'inscription association — layout centré, distinct de l'écran
   scindé utilisé pour la connexion/inscription bénévole.
   ========================================================================== */

.assoc-wizard {
    min-height: 100vh;
}

.assoc-wizard__inner {
    max-width: 640px;
}

/* Étapes : une seule visible à la fois, affichage géré par wizard_controller.js */
.wizard-step {
    display: none;
}
.wizard-step.active {
    display: block;
}

/* Puces de sport (étape 3) : compactes et contrastées */
.sport-chip {
    border: 1px solid var(--gray-100);
    background: #fff;
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.2;
    padding: 5px 12px;
    border-radius: 999px;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.sport-chip:hover {
    border-color: var(--main-600);
    color: var(--main-600);
}
.sport-chip.active {
    background: var(--main-600);
    border-color: var(--main-600);
    color: #fff;
    font-weight: 600;
}

/* Indicateurs d'étapes */
.assoc-wizard__steps {
    position: relative;
}
.assoc-wizard__steps::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: var(--gray-100);
    z-index: 0;
}
.assoc-wizard__step {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}
.assoc-wizard__step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    background: #fff;
    border: 2px solid var(--gray-100);
    color: var(--gray-200);
    transition: all 0.2s ease;
}
.assoc-wizard__step-label {
    font-size: 12px;
    color: var(--gray-200);
    display: none;
}
@media (min-width: 576px) {
    .assoc-wizard__step-label {
        display: block;
    }
}
.assoc-wizard__step.active .assoc-wizard__step-num {
    border-color: var(--main-600);
    background: var(--main-600);
    color: #fff;
}
.assoc-wizard__step.active .assoc-wizard__step-label {
    color: var(--main-600);
    font-weight: 600;
}
.assoc-wizard__step.done .assoc-wizard__step-num {
    border-color: var(--main-600);
    color: var(--main-600);
}
