/* =====================================================================
 * public-theme.css — tema halaman publik PSB.
 * Selaras dengan psb.darulmaarif.net (landing): Emerald Green + Gold +
 * White/Black. Dipakai oleh halaman publik tanpa login.
 * ===================================================================== */

:root {
    --green-deep:  #0d3d18;
    --green-dark:  #1a6b2a;
    --green-mid:   #2d8a3e;
    --green-light: #e8f5e9;
    --green-pale:  #f0faf1;
    --gold:        #e69500;
    --gold-light:  #ffd54f;
    --gold-soft:   #fff8e1;
    --text:        #1a1a1a;
    --text-muted:  #555;
    --border:      #d4edda;
    --radius:      14px;
    --shadow:      0 4px 24px rgba(26,107,42,.10);
}

body {
    background: var(--green-pale);
    color: var(--text);
    font-size: .95rem;
}

a {
    color: var(--green-dark);
}
a:hover {
    color: var(--green-mid);
}

/* ── Header brand / hero ─────────────────────────────────────────────── */
.brand {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 55%, var(--green-mid) 100%);
    color: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow);
}
.brand .accent {
    color: var(--gold-light);
}

/* ── Kartu ───────────────────────────────────────────────────────────── */
.card {
    border-radius: var(--radius);
}
.card.shadow-sm {
    box-shadow: var(--shadow) !important;
}

/* ── Tombol primary → hijau emerald ──────────────────────────────────── */
.btn-primary {
    background: var(--green-dark);
    border-color: var(--green-dark);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--green-mid) !important;
    border-color: var(--green-mid) !important;
    color: #fff !important;
}

.btn-outline-primary {
    color: var(--green-dark);
    border-color: var(--green-dark);
}
.btn-outline-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

.btn-success {
    background: var(--green-dark);
    border-color: var(--green-dark);
}
.btn-success:hover,
.btn-success:focus {
    background: var(--green-mid) !important;
    border-color: var(--green-mid) !important;
    color: #fff !important;
}

/* ── Aksen teks hijau (heading) ──────────────────────────────────────── */
.text-primary {
    color: var(--green-dark) !important;
}

/* ── Aksen emas ──────────────────────────────────────────────────────── */
.gold-text { color: var(--gold); }
.gold-bg   { background: var(--gold); color: #fff; }

/* ── Tabel ───────────────────────────────────────────────────────────── */
.table-info {
    --bs-table-bg: var(--gold-soft);
}
.table-light {
    --bs-table-bg: var(--green-light);
}

/* ── Alert info → nada hijau lembut ──────────────────────────────────── */
.alert-info {
    --bs-alert-bg: var(--green-light);
    --bs-alert-color: #1a4a2e;
    --bs-alert-border-color: var(--border);
}
