/* ═══════════════════════════════════════════════════════════════════════
   __darmaster/css/skins/entity-darh.css
   Daralbeida Holdings entity skin

   Structural CSS unique to DARH. Operator-tweakable values come from the
   dashboard via the inline <style> tag (step 6 of the cascade). Anything
   here should NOT be a variable the dashboard is meant to expose — it's
   structural identity, not adjustable accent.
   ═══════════════════════════════════════════════════════════════════════ */

/* DARH identity baseline — these set the entity-scoped defaults. The
   dashboard can override them from skin_values.csv. */
:root {
  --brand-primary:   #2B4D7A;   /* DARH slate blue */
  --brand-accent:    #C7A04E;   /* DARH bronze gold */
  /* Document-library band palette — the 4 stacked layout layers, each a shade
     of THIS entity's colour (tune per-entity here). DARMASTER reproduces the same
     shades from the file's --ent, so a DARH band is DARH-blue wherever shown. */
  --band-entity:  color-mix(in srgb, var(--brand-primary) 46%, #F6F1E6);
  --band-section: color-mix(in srgb, var(--brand-primary) 58%, #F6F1E6);
  --band-dept:    color-mix(in srgb, var(--brand-primary) 38%, #F6F1E6);
  --band-filerow: color-mix(in srgb, var(--brand-primary) 20%, #F6F1E6);
}

/* The DARH wordmark in the nav can carry an entity-specific glow on hover. */
.darx-nav-home {
  color: rgba(246, 241, 231, 0.86);
}
.darx-nav-home:hover {
  text-shadow:
    0 0 8px color-mix(in srgb, var(--brand-accent) 55%, transparent),
    0 0 1px color-mix(in srgb, var(--brand-accent) 75%, transparent);
}

/* DARH portal row accent uses the entity's bronze. */
.portal-row {
  border-left-color: var(--brand-accent);
}

/* Homepage banner accent. */
.darh-hero h1 {
  color: var(--brand-primary);
}
