:root {
    /* Official Triskelion in Government Bataan palette. */
    /* 'navy' now maps to charcoal per masculine monochrome direction. */
    --Trigov-navy: #262624;
    --Trigov-navy-light: #45453f;
    --Trigov-gold: #e6b82e;
    --Trigov-gold-dark: #c99718;
    /* Darker, readable gold for text/icons on light backgrounds (base gold fails contrast there). */
    --Trigov-gold-ink: #8a6914;
    --Trigov-red: #b51f43;

    /* Cooler, leaner neutrals (masculine direction) instead of warm cream tones. */
    --Trigov-bg: #f4f4f5;
    --Trigov-white: #ffffff;
    --Trigov-text: #14161c;
    --Trigov-muted: #5b6270;
    --Trigov-border: #dcdce1;

    --Trigov-danger: #dc3545;
    --Trigov-success: #198754;
    --Trigov-warning: #ffc107;

    /* Leaner corners and a tighter, flatter shadow instead of soft/floaty. */
    --Trigov-radius: 8px;
    --Trigov-shadow: 0 4px 14px rgba(15, 23, 42, .08);

    --Trigov-font-serif: Georgia, Cambria, 'Times New Roman', Times, serif;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: var(--Trigov-bg);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    color: var(--Trigov-text);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

h1, h2, h3,
.landing-title,
.dashboard-welcome-title,
.page-title,
.sidebar-brand-title,
.navbar-title,
.form-section,
.dashboard-section-title,
.card-dashboard .card-header {
    font-family: var(--Trigov-font-serif);
}

.text-gold {
    color: var(--Trigov-navy) !important;
}

.bg-navy {
    background: var(--Trigov-navy) !important;
}

.bg-gold {
    background: var(--Trigov-gold) !important;
}
