/*
Theme Name: Westchester Jobs Theme
Description: Minimal starter theme for the Westchester Healthcare Jobs site. All job board functionality lives in the "Westchester Healthcare Jobs" plugin via shortcodes — this theme just provides structure, navigation, and branding.
Version: 1.0.0
Author: Client By Design, LLC
Text Domain: wnj-theme
*/

:root {
  --wnj-blue: #1d5f8a;
  --wnj-blue-dark: #14425f;
  --wnj-bg: #f6f8fa;
  --wnj-text: #1f2937;
  --wnj-muted: #6b7280;
  --wnj-border: #e5e7eb;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--wnj-bg);
  color: var(--wnj-text);
}
.wnj-site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; background: var(--wnj-blue-dark); color: #fff;
  flex-wrap: wrap; gap: 10px;
}
.wnj-site-header .wnj-brand { color: #fff; font-weight: 700; text-decoration: none; font-size: 18px; }
.wnj-site-header nav a { color: #dceaf5; text-decoration: none; margin-left: 18px; font-size: 14px; }
.wnj-site-header nav a:hover { color: #fff; }
.wnj-container { max-width: 960px; margin: 0 auto; padding: 24px; }
.wnj-site-footer { text-align: center; padding: 24px; color: var(--wnj-muted); font-size: 13px; }
h1 { font-size: 26px; margin-bottom: 4px; }
.wnj-subtitle { color: var(--wnj-muted); margin-top: 0; }
