/*
File: designerStyles.css
Date: 2026-04-20
Author: klp
Workspace: p5jsTemplate2026-04-20-Stg1
Purpose: Styles specific to the p5.js template and its designer interface. These are separate from general site styles to avoid unintended side effects on other pages.
*/

/* ─── SPARK bar — links the app to the development chat log ──────── */
.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;
}

/* ─── 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;
}

