/* =============================================================================
   Last Man Standing — brand palette (from reference/colours.txt + Logo.png)
   ============================================================================= */
:root {
    --brand-navy: #03172C;       /* primary (shield background) */
    --brand-gold: #DCAD64;       /* accent (shield border + star) */
    --brand-white: #FEFFFF;
    --brand-blue-grey-1: #21364B;
    --brand-blue-grey-2: #66667E;
}

/* Primary actions = navy, accent = gold ------------------------------------- */
.btn-primary {
    background-color: var(--brand-navy);
    border-color: var(--brand-navy);
    color: #fff;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--brand-blue-grey-1);
    border-color: var(--brand-blue-grey-1);
    color: #fff;
}
.btn-outline-primary {
    color: var(--brand-navy);
    border-color: var(--brand-navy);
}
.btn-outline-primary:hover {
    background-color: var(--brand-navy);
    border-color: var(--brand-navy);
    color: #fff;
}
a, .btn-link { color: var(--brand-navy); }
a:hover { color: var(--brand-gold); }

/* =============================================================================
   Auth screens (login / register / confirm / forgot / reset)
   White background, logo top-centre, form centred. Mobile-first.
   ============================================================================= */
.auth-shell {
    min-height: 100vh;
    background: var(--brand-white);
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}
.auth-container {
    width: 100%;
    max-width: 400px;
    margin-top: 5vh;
}
.auth-wordmark {
    font-family: 'Bebas Neue', system-ui, sans-serif;
    color: var(--brand-gold);
    text-align: center;
    font-size: 2.6rem;
    letter-spacing: 0.12em;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.auth-logo {
    display: block;
    width: 256px;
    max-width: 72%;
    height: auto;
    margin: 0 auto 1.5rem;
}
.auth-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
    text-align: center;
    margin-bottom: 1.25rem;
}
.auth-card .btn-primary { width: 100%; }
.auth-links {
    text-align: center;
    margin-top: 1rem;
    font-size: .9rem;
}
.auth-muted { color: var(--brand-blue-grey-2); }

/* =============================================================================
   User menu chip (initials, e.g. "SW") in the top bar
   ============================================================================= */
.user-chip {
    --bs-btn-padding-x: 0;
    --bs-btn-padding-y: 0;
    --bs-btn-border-width: 0;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--brand-navy);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}
.user-chip:hover, .user-chip:focus {
    background: var(--brand-blue-grey-1);
    color: #fff;
}
.user-chip.dropdown-toggle::after { display: none; } /* no caret on the round chip */
.dropdown-item.active, .dropdown-item:active { background-color: var(--brand-navy); }
