@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

/* Modern responsive nav + fluid layout added 2026-09-18. Does not alter any page text. */
* { box-sizing: border-box; }

html, body {
	max-width: 100%;
	overflow-x: hidden;
	margin: 0;
}

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

#page_content {
	line-height: 1.6;
}

#page_content h1, #page_content h2, #page_content h3, #page_content h4 {
	line-height: 1.3;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
	font-weight: 700 !important;
}

#page_content img {
	border-radius: 10px;
	box-shadow: 0 3px 14px rgba(0,0,0,0.18);
}

#page_content a {
	color: #2c5aa0;
}
#page_content a:hover, #page_content a:focus {
	color: #3f6b1f;
}

#page_content audio {
	display: block;
	background: #f4f1e8;
	border: 1px solid #dcd6c2;
	border-radius: 10px;
	padding: 10px 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	margin: 6px 0 14px 0;
}


#page_content table {
	max-width: 100%;
}

#masthead, #page_content, #footer {
	max-width: 900px !important;
	width: 100% !important;
	height: auto !important;
}

#masthead { margin: 0 auto; }
#masthead img { display: block; width: 100%; height: auto; }

#page_content { overflow-x: auto; }

.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.site-nav {
	background-color: #3f6b1f;
	max-width: 900px;
	margin: 0 auto;
}
.site-nav-inner {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 50px;
	padding: 0 12px;
}
.site-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.site-nav-menu li { margin: 0; }
.site-nav-menu a {
	display: block;
	padding: 14px 16px;
	color: #f5f2e7;
	text-decoration: none;
	font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
	font-weight: 700;
	font-size: 19px;
	white-space: nowrap;
}
.site-nav-menu a:hover,
.site-nav-menu a:focus {
	color: #ffffff;
	text-decoration: underline;
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
}
.nav-toggle-bar {
	display: block;
	width: 24px;
	height: 3px;
	margin: 4px 0;
	background: #f5f2e7;
}

@media (max-width: 700px) {
	.site-nav-inner { flex-wrap: wrap; justify-content: space-between; }
	.nav-toggle { display: block; }
	.site-nav-menu {
		display: none;
		flex-direction: column;
		width: 100%;
	}
	.site-nav-menu.is-open { display: flex; }
	.site-nav-menu a { padding: 12px 8px; border-top: 1px solid rgba(255,255,255,0.15); }
}
