/*
File: designerStyles3.css
Date: 2026-09-10
Author: klp
Purpose: Styles for Parabola Saga v3 (Phase 3 — Family of Parabolas).
         Extends the Phase 2 conventions; same dark nav / Oz-gold accent theme.
*/

/* ─── Stage navigation bar ─────────────────────────────────────── */
.ps-stage-nav-bar {
    background: #060d03;
    padding: 0.5rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(42,122,42,0.35);
    font-size: 0.88rem;
}

.ps-stage-nav-bar a {
    color: #C8941A;
    font-weight: 700;
    text-decoration: none;
}

.ps-stage-nav-bar a:hover { text-decoration: underline; }

.ps-stage-current {
    color: rgba(255,255,255,0.92);
    font-weight: 700;
}

.ps-stage-upcoming {
    color: rgba(255,255,255,0.30);
    font-size: 0.82rem;
}

/* ─── Grid settings collapse toggle ────────────────────────────── */
.ps-grid-toggle {
    display: inline-block;
    transition: transform 0.2s ease;
    font-size: 0.85rem;
    line-height: 1;
}
button[aria-expanded="true"] .ps-grid-toggle {
    transform: rotate(180deg);
}

/* ─── SPARK bar ────────────────────────────────────────────────── */
.ps-spark-bar {
    background: #060d03;
    padding: 0.45rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(42,122,42,0.38);
    font-size: 0.85rem;
}

.ps-spark-bar a {
    color: #C8941A;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
}

.ps-spark-bar a:hover { text-decoration: underline; }

.ps-spark-bar span {
    color: rgba(255,255,255,0.38);
    font-size: 0.78rem;
    margin-left: auto;
}

/* ─── Family Design card: b-range row labels ───────────────────── */
.ps-b-label {
    color: #0055aa;
    font-weight: 600;
    font-size: 0.82rem;
}

/* ─── Count / range summary ────────────────────────────────────── */
.ps-family-summary {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-bottom: 0.5rem;
}
