/*
Theme Name: Fraternal Council
Theme URI: https://example.com/fraternal-council
Author: Council Web Team
Author URI: https://example.com
Description: An original theme for Catholic fraternal service organization councils in the Knights of Columbus tradition — built around charity, unity, fraternity, and patriotism. Features a council info plaque, an events ledger, an officer roster, and a degree/membership timeline. Not affiliated with or endorsed by the Knights of Columbus; all artwork is original.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fraternal-council
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, one-column, two-columns
*/

/* =========================================================
   DESIGN TOKENS
   Palette: deep navy (authority/night watch), antique gold
   (regalia trim), parchment cream (charter documents),
   muted maroon (degree ribbon accent), warm ink (text).
   Display face: Cormorant Garamond — an heraldic, chiseled
   serif for headlines. Body: Lora, a warm reading serif.
   Utility: Jost, a geometric sans set in tracked small caps
   for labels, nav, and the "ledger" numerals.
   ========================================================= */
:root{
  --navy: #142238;
  --navy-deep: #0c1626;
  --navy-light: #24395e;
  --gold: #c8a24a;
  --gold-bright: #e3c37c;
  --cream: #f6f1e5;
  --cream-dim: #ece3cf;
  --maroon: #6d2430;
  --ink: #241f18;
  --ink-soft: #4a4336;
  --line: rgba(20,34,56,.14);
  --line-gold: rgba(200,162,74,.4);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
  --font-utility: "Jost", "Helvetica Neue", Arial, sans-serif;

  --radius: 2px;
  --shadow-plaque: 0 1px 0 rgba(255,255,255,.5) inset, 0 10px 30px rgba(12,22,38,.12);
  --container: 1160px;
}

@font-face{ font-family: initial; }

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 .4em;
  line-height: 1.15;
  font-weight: 600;
}
h1{ font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3{ font-size: 1.4rem; }
p{ margin: 0 0 1.1em; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  font-family: var(--font-utility);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-bottom: .9em;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 1px;
  background: var(--maroon);
  display: inline-block;
}

.btn{
  font-family: var(--font-utility);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-block;
  padding: .95em 1.8em;
  border: 1px solid var(--gold);
  color: var(--cream);
  background: var(--navy);
  border-radius: var(--radius);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover{ background: var(--gold); color: var(--navy-deep); border-color: var(--gold); transform: translateY(-1px); }
.btn.outline{ background: transparent; color: var(--navy); border-color: var(--navy); }
.btn.outline:hover{ background: var(--navy); color: var(--cream); }

/* Skip link */
.skip-link{
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: var(--cream); padding: 1em 1.4em;
  font-family: var(--font-utility);
}
.skip-link:focus{ left: 12px; top: 12px; }

:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
