:root {
  --navy: #003366;
  --navy-light: #144772;
  --navy-border: #3D6689;
  --gold: #FFCC00;
  --text: #BECBD8;
  --link: #337AB7;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--gold);
  font-weight: 500;
  margin: 20px 0 10px;
}
h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }

a { color: var(--link); }
strong { color: var(--text); }

#header {
  text-align: center;
  padding: 20px 1rem 0;
}
#header .logo {
  max-width: 100%;
  height: auto;
}

#navigation {
  max-width: 660px;
  margin: 0.5rem auto 1.5rem;
  text-align: center;
  padding: 0 1rem;
}
#navigation ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}
#navigation ul::after {
  content: "";
  display: table;
  clear: both;
}
#navigation ul li {
  display: inline;
  list-style: none;
}
#navigation ul li a {
  font-size: 1em;
  line-height: 2em;
  color: var(--gold);
  display: block;
  padding: 0;
  margin: 0 3px 3px 0;
  text-decoration: none;
  float: left;
  border: 1px solid var(--gold);
  width: 106px;
  text-align: center;
}
#navigation ul li a:hover,
#navigation ul li a.active {
  color: var(--navy);
  background-color: var(--gold);
}

#content {
  max-width: 930px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}
.page-title {
  text-align: left;
}

#footer {
  max-width: 930px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
  font-size: 0.85em;
}
#footer hr {
  border: none;
  border-top: 1px solid var(--navy-border);
}

blockquote {
  border: 1px solid var(--navy-border);
  background: var(--navy-light);
  margin: 1em;
  padding: 1em;
}
blockquote p { margin: 0; }

img { max-width: 100%; height: auto; }
iframe { max-width: 100%; }

#content img {
  border: 1px solid var(--gold);
}
audio { display: block; margin: 0.25rem 0 0.75rem; width: 100%; max-width: 400px; }

/* Bootstrap-era utility classes used inside migrated body content */
.row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.row [class*="col-"] { flex: 0 0 auto; }
.clearfix::after { content: ""; display: table; clear: both; }
.pull-right, .float-right { float: right; margin: 0 0 20px 20px; }
.pull-left, .float-left { float: left; margin: 0 20px 20px 0; }
.bordered { border: 1px solid var(--gold); }
.img-responsive { max-width: 100%; height: auto; }
.content-image { max-width: 200px; max-height: 200px; }
body.front .content-image { max-width: 320px; max-height: 320px; }
.embed-responsive { position: relative; max-width: 100%; overflow: hidden; }
.embed-responsive iframe { max-width: 100%; }
.album-cover { max-width: 200px; }

/* Auto-generated captions under pull-left/pull-right images (mirrors the
   original site's captionjs plugin, driven by each image's alt text) */
figure.captionjs figcaption {
  text-align: center;
  font-size: 0.85em;
  color: var(--text);
}

/* Photo/artwork galleries (fancybox-thumb links from the original content) */
#content a.fancybox-thumb {
  display: inline-block;
  margin: 0.25rem;
}
#content a.fancybox-thumb img {
  height: 120px;
  width: auto;
  max-width: none;
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
  z-index: 1000;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.6);
}
