/* ---------------------------------------- */
/* NUP Content Pages - Dark Theme 2026      */
/* File: /__content/dark_2026.css          */
/* ---------------------------------------- */

:root {
    --brand-primary: #1a365d;
    --brand-accent: #0098ff;
    --text-light: #f5f7fa;
    --text-muted: #a8b3c7;
    --section-bg: #0f1827;
    --card-bg: #1c283d;
    --border-soft: #2e3a52;
}

/* GLOBAL RESET */
body {
    background: var(--section-bg) !important;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* HERO SECTIONS */
.hero-lite {
    background: var(--brand-primary);
    color: var(--text-light);
    padding: 4.5rem 0;
    text-align: center;
}
.hero-lite h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.hero-lite p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* CONTENT SECTIONS */
.content-section {
    padding: 3rem 0 5rem;
}
.page-body {
    max-width: 900px;
    margin: auto;
}

/* HEADINGS */
h1, h2, h3, h4 {
    line-height: 1.3;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.muted {
    color: var(--text-muted) !important;
}

/* LINKS */
a {
    color: var(--brand-accent);
}
a:hover {
    color: #66c7ff;
}

/* CARD / PANEL STYLING */
.card,
.card-body {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
}
.card-header {
    background: var(--brand-primary) !important;
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid var(--border-soft);
}

/* FORMS */
label {
    font-weight: 600;
    color: var(--text-light);
}
input.form-control,
select.form-control,
textarea.form-control {
    background: #0c1320 !important;
    border: 1px solid var(--border-soft);
    color: var(--text-light) !important;
}
.form-control:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 0.1rem rgba(0,152,255,.4);
    background: #111a2b !important;
}

/* ALERTS */
.alert {
    border-radius: 6px;
    border-width: 0;
}
.alert-danger {
    background: #7f1d1d !important;
    color: #ffd7d7;
}
.alert-info {
    background: #073b56 !important;
    color: #ccedff;
}

/* BUTTONS */
.btn-primary {
    background: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
}
.btn-primary:hover {
    background: #0074c6 !important;
}
.btn-dark {
    background: #2c3a52 !important;
    border-color: var(--border-soft) !important;
}

/* TOOLTIPS & MISC */
.badge-light a {
    color: var(--brand-accent) !important;
}
hr {
    border-color: var(--border-soft);
}
