:root {
  --navy: #1e3a5f;
  --navy-dark: #132a44;
  --gold: #b8972e;
}

/* ── Navbar ── */
.navbar-brand .brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .65;
  line-height: 1;
}
.navbar-brand .brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
}
.bg-navy    { background-color: var(--navy) !important; }
.text-gold  { color: var(--gold) !important; }
.border-gold{ border-color: var(--gold) !important; }

/* ── Buttons ── */
.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background-color: #9c7d24;
  border-color: #9c7d24;
  color: #fff;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
}
.hero p { color: rgba(255,255,255,.78); max-width: 560px; }

/* ── Compartment card ── */
.compartment-card {
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s;
  display: block;
}
.compartment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30,58,95,.15) !important;
  border-color: var(--navy) !important;
  color: inherit;
}
.compartment-card .icon-box {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.compartment-card .icon-box svg { stroke: #fff; fill: none; width: 22px; height: 22px; }

/* ── Admin subnav ── */
.admin-subnav { background: var(--navy-dark); }
.admin-subnav .nav-link {
  color: rgba(255,255,255,.65);
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
}
.admin-subnav .nav-link:hover,
.admin-subnav .nav-link.active {
  color: #fff;
  border-bottom-color: var(--gold);
  background: transparent;
}

/* ── Login page ── */
.login-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.login-card { max-width: 420px; width: 100%; }
.login-brand-name { font-size: 22px; font-weight: 700; color: var(--navy); }
.login-brand-sub  { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: .06em; }

/* ── Doc table ── */
.doc-icon {
  width: 32px; height: 32px;
  background: #fef3c7;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.doc-icon svg { stroke: #d97706; fill: none; width: 15px; height: 15px; stroke-width: 2; }

/* ── Stat cards ── */
.stat-number { font-size: 38px; font-weight: 700; color: var(--navy); }

/* ── Footer ── */
footer { background: var(--navy); color: rgba(255,255,255,.5); font-size: 13px; }
