/* Base
--------------------------------------------- */
:root {
	--color-text: #1f2937;
	--color-muted: #5b6472;
	--color-border: #e5e7eb;
	--color-background: #ffffff;
	--color-surface: #f8fafc;
	--color-primary: #0f3d3e;
	--color-primary-dark: #092728;
	--color-accent: #c89b3c;
	--color-mynavy: #1E293B;
	--color-mygreen: #10B981; /* Emerald Green - Emerald 500 */
	--font-body: Arial, Helvetica, sans-serif;
	--container-width: 1120px;
}

/* Modern Focus Ring for ADA Compliance */
:focus-visible {
	outline: 2px solid #10B981;
	outline-offset: 4px;
}

/* Basic Fade-in on Scroll styles */
.reveal {
	position: relative;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease-out;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal,
	.transition-all {
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}

/* Dropdown transition utility */
.dropdown-menu {
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	transform: translateY(10px);
}

.group:hover .dropdown-menu {
	transform: translateY(0);
}


*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.65;
}

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

a {
	color: var(--color-primary);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

a:hover,
a:focus {
	color: var(--color-primary-dark);
}

.container {
	width: min(100% - 2rem, var(--container-width));
	margin-inline: auto;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.skip-link:focus {
	background: #ffffff;
	clip: auto !important;
	clip-path: none;
	color: #000000;
	display: block;
	font-size: 1rem;
	font-weight: 700;
	height: auto;
	left: 1rem;
	padding: 0.75rem 1rem;
	position: fixed;
	top: 1rem;
	width: auto;
	z-index: 100000;
}

/* Header
--------------------------------------------- */
.site-header {
	background: #ffffff;
	border-bottom: 1px solid var(--color-border);
	position: relative;
	z-index: 10;
}

.header-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 86px;
	gap: 2rem;
	padding-block: 1rem;
}

.site-branding {
	align-items: center;
	display: flex;
	min-width: 0;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	max-height: 72px;
	width: auto;
}

.site-title {
	color: var(--color-primary);
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.primary-navigation {
	margin-left: auto;
}

.primary-menu {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu li {
	position: relative;
}

.primary-menu a {
	border-radius: 999px;
	color: var(--color-text);
	display: block;
	font-size: 0.98rem;
	font-weight: 700;
	padding: 0.65rem 0.9rem;
	text-decoration: none;
}

.primary-menu a:hover,
.primary-menu a:focus {
	background: var(--color-surface);
	color: var(--color-primary);
}

.current-menu-item > a,
.current_page_item > a {
	background: var(--color-primary);
	color: #ffffff;
}

.current-menu-item > a:hover,
.current-menu-item > a:focus,
.current_page_item > a:hover,
.current_page_item > a:focus {
	background: var(--color-primary-dark);
	color: #ffffff;
}

.menu-toggle {
	background: var(--color-primary);
	border: 0;
	border-radius: 999px;
	color: #ffffff;
	cursor: pointer;
	display: none;
	font: inherit;
	font-weight: 700;
	padding: 0.65rem 1rem;
}

/* Header Buttons
--------------------------------------------- */
.header-actions {
	align-items: center;
	display: flex;
	gap: 0.85rem;
	margin-left: 1.5rem;
}

.header-button {
	align-items: center;
	border: 2px solid #155e54;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.04em;
	line-height: 1;
	min-height: 42px;
	padding: 0.8rem 1.35rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-button-outline {
	background: #ffffff;
	color: #155e54;
}

.header-button-outline:hover,
.header-button-outline:focus {
	background: #155e54;
	color: #ffffff;
}

.header-button-solid {
	background: #155e54;
	color: #ffffff;
}

.header-button-solid:hover,
.header-button-solid:focus {
	background: #155e54;
	border-color: #155e541;
	color: #ffffff;
}

/* Dropdown Menus
--------------------------------------------- */
.primary-menu .menu-item-has-children > a {
	align-items: center;
	display: flex;
	gap: 0.4rem;
}

/* Arrow on menu items that have a submenu */
.primary-menu .menu-item-has-children > a::after {
	content: "\f107";
	font-family: "Font Awesome 6 Free";
	font-size: 0.75rem;
	font-weight: 900;
	line-height: 1;
	transition: transform 0.2s ease;
}

/* Rotate arrow when submenu is open */
.primary-menu .menu-item-has-children:hover > a::after,
.primary-menu .menu-item-has-children:focus-within > a::after,
.primary-menu .menu-item-has-children.submenu-open > a::after {
	transform: rotate(180deg);
}

.primary-menu .sub-menu {
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 0.85rem;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 230px;
	opacity: 0;
	padding: 0.55rem;
	position: absolute;
	top: calc(100% + 0.55rem);
	transform: translateY(10px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	visibility: hidden;
	z-index: 100;
}

.primary-menu .sub-menu li {
	width: 100%;
}

.primary-menu .sub-menu a {
	border-radius: 0.65rem;
	color: var(--color-text);
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
	padding: 0.7rem 0.85rem;
	white-space: nowrap;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus {
	background: var(--color-surface);
	color: var(--color-primary);
}

/* Reveal dropdown on hover or keyboard focus */
.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu,
.primary-menu .menu-item-has-children.submenu-open > .sub-menu {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

/* Homepage Hero
--------------------------------------------- */
.home-hero {
	align-items: center;
	color: #ffffff;
	display: flex;
	min-height: 36rem;
	overflow: hidden;
	position: relative;
	text-align: center;
}

.home-hero-bg {
	inset: 0;
	position: absolute;
	z-index: 0;
}

.home-hero-image {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	object-position: center;
	position: absolute;
	width: 100%;
}

.home-hero-fallback {
	background: #1E293B;
	height: 100%;
	width: 100%;
}

.home-hero-overlay {
	background: rgba(30, 41, 59, 0.78);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.home-hero-inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 7rem;
	padding-top: 7rem;
	position: relative;
	z-index: 2;
}

.home-hero-title {
	color: #ffffff;
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 0.95;
	margin: 0 0 1.5rem;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.home-hero-title span {
	color: #14f1d2;
}

.home-hero-text {
	color: #f8fafc;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 2.5rem;
	max-width: 760px;
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.home-hero-button {
	align-items: center;
	background: #fff200;
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
	color: #111827;
	display: inline-flex;
	font-size: 1.05rem;
	font-weight: 900;
	gap: 0.75rem;
	justify-content: center;
	line-height: 1;
	padding: 1.05rem 2.5rem;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero-button:hover,
.home-hero-button:focus {
	background: #facc15;
	color: #111827;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
	transform: translateY(-2px);
}

.home-hero-button i {
	font-size: 0.9rem;
}

.home .site-footer {
	margin-top: 0;
}

@media (max-width: 760px) {
	.home-hero {
		min-height: 30rem;
	}

	.home-hero-inner {
		padding-bottom: 5rem;
		padding-top: 5rem;
	}

	.home-hero-title {
		font-size: clamp(2.5rem, 14vw, 4rem);
	}

	.home-hero-text {
		font-size: 1.2rem;
	}

	.home-hero-button {
		font-size: 1rem;
		padding: 1rem 2rem;
	}
}

/* Content
--------------------------------------------- */
.site-main {
	min-height: 60vh;
}

.content-wrap {
	padding-block: 3rem;
}

.page-content,
.single-post-content,
.post-summary {
	max-width: 820px;
}

.entry-title,
.page-header h1 {
	color: var(--color-primary-dark);
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.1;
	margin: 0 0 1rem;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-meta,
.eyebrow {
	color: var(--color-muted);
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.eyebrow {
	color: var(--color-accent);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.featured-image {
	margin: 2rem 0;
}

.featured-image img {
	border-radius: 1rem;
	display: block;
}

.post-summary {
	border-bottom: 1px solid var(--color-border);
	padding: 1.5rem 0;
}

.post-summary:first-of-type {
	padding-top: 0;
}

.post-summary .entry-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 0.5rem;
}

.post-summary .entry-title a {
	text-decoration: none;
}

.navigation.pagination {
	margin-top: 2rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.page-numbers {
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	display: inline-block;
	padding: 0.4rem 0.75rem;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--color-primary);
	color: #ffffff;
}

.button,
.wp-block-button__link {
	background: var(--color-primary);
	border-radius: 999px;
	color: #ffffff;
	display: inline-block;
	font-weight: 700;
	padding: 0.75rem 1.15rem;
	text-decoration: none;
}

.button:hover,
.button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
	background: var(--color-primary-dark);
	color: #ffffff;
}


.home .site-footer {
	margin-top: 0;
}

.home-page-content {
	background: #ffffff;
}


/* Footer
--------------------------------------------- */
/* Footer
--------------------------------------------- */
.site-footer {
	background: var(--color-mynavy);
	color: #ffffff;
	margin-top: 3rem;
}

.footer-main {
	display: grid;
	gap: 4rem;
	grid-template-columns: 1fr 2fr;
	padding-block: 4.25rem 3.5rem;
}

.footer-brand {
	max-width: 420px;
}

.footer-logo-box {
	background: #ffffff;
	border-radius: 0.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	min-height: 74px;
	padding: 0.8rem 1.25rem;
	width: 145px;
}

.footer-logo-box .custom-logo-link {
	display: inline-flex;
}

.footer-logo-box .custom-logo {
	max-height: 58px;
	width: auto;
}

.footer-site-title {
	color: #092728;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

.footer-org-name {
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.45;
	margin: 0 0 1.75rem;
}

.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-contact li {
	align-items: center;
	display: flex;
	gap: 0.9rem;
	margin-bottom: 0.45rem;
}

.footer-contact i {
	color: #14f1d2;
	font-size: 0.95rem;
	width: 18px;
}

.footer-contact a {
	color: #ffffff;
	text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus {
	color: #14f1d2;
	text-decoration: underline;
}

.footer-mission h2 {
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 0 1.25rem;
}

.footer-mission p {
	color: #ffffff;
	font-size: 1rem;
	line-height: 1.65;
	margin: 0;
	max-width: 930px;
}

.footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	padding-block: 2.25rem;
}

.footer-copyright {
	font-size: 0.875rem;
	line-height: 1.5;
	margin: 0;
}

.footer-copyright a {
	color: #ffffff;
	text-decoration: none;
}

.footer-copyright a:hover,
.footer-copyright a:focus {
	color: #14f1d2;
	text-decoration: underline;
}

.footer-link-separator {
	color: #14f1d2;
	margin-inline: 0.25rem;
}

.footer-actions {
	align-items: center;
	display: flex;
	gap: 1.4rem;
	white-space: nowrap;
}

.footer-portal-button {
	background: #14f1d2;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.03em;
	line-height: 1;
	padding: 0.75rem 1.25rem;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-portal-button:hover,
.footer-portal-button:focus {
	background: #10B981;
	color: #ffffff;
}

.footer-top-link {
	align-items: center;
	color: #ffffff;
	display: inline-flex;
	font-size: 0.875rem;
	font-weight: 700;
	gap: 0.35rem;
	text-decoration: none;
}

.footer-top-link:hover,
.footer-top-link:focus {
	color: #14f1d2;
}

/* Responsive
--------------------------------------------- */
@media (max-width: 760px) {
	.header-actions {
		justify-content: center;
		margin-left: 0;
		width: 100%;
	}

	.header-button {
		flex: 1;
		max-width: 180px;
	}
}
@media (max-width: 760px) {
	.header-inner {
		align-items: stretch;
		flex-direction: column;
		gap: 1rem;
	}

	.site-branding {
		justify-content: space-between;
	}

	.menu-toggle {
		display: inline-flex;
		justify-content: center;
		width: max-content;
	}

	.primary-navigation {
		display: none;
		margin-left: 0;
		width: 100%;
	}

	body.menu-open .primary-navigation {
		display: block;
	}

	.primary-menu {
		align-items: stretch;
		flex-direction: column;
		width: 100%;
	}

	.primary-menu a {
		border: 1px solid var(--color-border);
		border-radius: 0.75rem;
		padding: 0.85rem 1rem;
	}

	.content-wrap {
		padding-block: 2rem;
	}
}
@media (max-width: 760px) {
	.primary-menu .menu-item-has-children > a {
		justify-content: space-between;
	}

	.primary-menu .sub-menu {
		background: #f8fafc;
		border: 1px solid var(--color-border);
		box-shadow: none;
		display: none;
		margin-top: 0.35rem;
		min-width: 100%;
		opacity: 1;
		padding: 0.5rem;
		position: static;
		transform: none;
		visibility: visible;
	}

	.primary-menu .menu-item-has-children.submenu-open > .sub-menu {
		display: block;
	}

	.primary-menu .sub-menu a {
		white-space: normal;
	}
}

@media (max-width: 760px) {
	.footer-main {
		gap: 2.5rem;
		grid-template-columns: 1fr;
		padding-block: 3rem 2.5rem;
	}

	.footer-brand {
		max-width: none;
		text-align: center;
	}

	.footer-contact li {
		justify-content: center;
	}

	.footer-bottom {
		align-items: center;
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}

	.footer-actions {
		flex-direction: column;
		gap: 1rem;
		white-space: normal;
	}
}
/* Top Bar
--------------------------------------------- */
.top-bar {
	background: var(--color-mynavy);
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
}

.top-bar-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 32px;
	gap: 1rem;
}

.top-bar-message,
.top-bar-right,
.top-bar-phone,
.top-social {
	align-items: center;
	display: flex;
}

.top-bar-message {
	gap: 0.5rem;
}

.top-bar-message i,
.top-bar-phone i {
	color: var(--color-mygreen);
}

.top-bar-right {
	gap: 1rem;
}

.top-bar-phone {
	color: #ffffff;
	gap: 0.5rem;
	text-decoration: none;
}

.top-bar-phone:hover,
.top-bar-phone:focus {
	color: #ffffff;
	text-decoration: underline;
}

.top-bar-divider {
	background: rgba(255, 255, 255, 0.35);
	display: inline-block;
	height: 22px;
	width: 1px;
}

.top-social {
	gap: 0.9rem;
}

.top-social a {
	color: var(--color-mygreen);
	display: inline-flex;
	font-size: 0.9rem;
	text-decoration: none;
}

.top-social a:hover,
.top-social a:focus {
	color: #10B981;
}
@media (max-width: 760px) {
	.top-bar-inner {
		align-items: center;
		flex-direction: column;
		justify-content: center;
		min-height: auto;
		padding-block: 0.6rem;
		text-align: center;
	}

	.top-bar-right {
		flex-wrap: wrap;
		justify-content: center;
	}

	.top-bar-divider {
		display: none;
	}
}