/* Brand-personality layer — the thin custom CSS theme.json can't express.
   Brush-stroke accents are DECORATIVE only (brand rule: max 3 per view,
   similar relative sizes). Section groups opt in via a class. */

.dfc-brush {
  position: relative;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}

.dfc-brush--amber { background-image: url("../img/brush-amber.svg"); }
.dfc-brush--sky   { background-image: url("../img/brush-sky.svg"); }
.dfc-brush--green { background-image: url("../img/brush-green.svg"); }

/* ── Global header ───────────────────────────────────────── */
/* Sticky navy header; nav links white on navy (contrast-safe). */
.dfc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.dfc-header .wp-block-navigation {
  font-family: var(--wp--preset--font-family--headline);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.dfc-header .wp-block-navigation a { text-decoration: none; }
/* Dropdown submenus: navy text on white panel for readability. */
.dfc-header .wp-block-navigation .wp-block-navigation__submenu-container {
  background: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.dfc-header .wp-block-navigation .wp-block-navigation__submenu-container a { color: #1A325E; }
.dfc-announce a { color: #FDD769; }

@media (max-width: 980px) {
  .dfc-header .wp-block-navigation { text-transform: none; }
}

/* ── Global footer ───────────────────────────────────────── */
/* Links must be light on the navy footer (theme default link is navy). */
.dfc-footer a { color: #FDD769; text-decoration: none; }
.dfc-footer a:hover { text-decoration: underline; }
.dfc-footer .wp-block-button a { color: #1A325E; }
.dfc-footer .is-style-none { list-style: none; padding-left: 0; }
.dfc-footer .is-style-none li { margin-bottom: 0.4rem; }
