/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

:root {
	--color-navy: #02142c;
	--color-gold: #c9a44a;
	--color-offwhite: #f7f7f7;
	--color-lightgray: #e5e9ef;
	--color-darkgray: #262626;
	--color-white: #ffffff;
	--max-width: 1180px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	color: var(--color-darkgray);
	background-color: var(--color-white);
	line-height: 1.6;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.page-wrapper {
	min-height: 100vh;
	background-color: var(--color-white);
}

.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.site-header {
	display: none;
}

/* Header */
header.site-header-inner {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: rgba(2, 20, 44, 0.98);
	backdrop-filter: blur(12px);
	color: var(--color-white);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	max-width: var(--max-width);
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-mark {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #3b7cc7, var(--color-navy));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-weight: 700;
	font-size: 1rem;
}

.logo-text {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.header-inner a:hover,
.header-inner a:focus,
.header-inner a:active {
	color: white;
}

nav.main-nav ul {
	list-style: none;
	display: flex;
	gap: 1.75rem;
	align-items: center;
	font-size: 0.95rem;
	margin-top: 1.7em;
}

nav.main-nav a {
	opacity: 0.9;
	transition: opacity 0.2s ease, color 0.2s ease;
}

nav.main-nav a:hover {
	opacity: 1;
	color: var(--color-gold);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
	text-decoration: none;
}

.btn-primary {
	background-color: var(--color-gold);
	color: var(--color-navy);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
	background-color: #dfb963;
	color: var(--color-navy) !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.btn-outline {
	background-color: var(--color-navy);
	color: var(--color-white);
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
	background-color: var(--color-gold);
	border: 1px solid var(--color-gold);
}

.full-width-content .container.grid-container{
	padding:0;
}




/* CTA */
.cta {
	background-color: var(--color-offwhite);
	border-top: 1px solid var(--color-lightgray);
}

.cta-box {
	border-radius: 18px;
	background: linear-gradient(135deg, var(--color-navy), #06284e);
	color: var(--color-white);
	padding: 2.4rem 2rem;
	display: grid;
	grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
	gap: 2rem;
	align-items: center;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.cta-title {
	font-family: "Montserrat", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.cta-text {
	font-size: 0.98rem;
	color: #dde5ff;
	max-width: 520px;
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: flex-end;
}
.cta-subcopy {
	width: 100%;
	text-align: right;
	font-size: 0.82rem;
	color: #a9b8dd;
	margin-top: 0.2rem;
}

/* Footer */
footer.site-footer {
	background-color: var(--color-navy);
	color: #d6e0f8;
	padding: 2.5rem 1em 1.5rem 1em;
	margin-top: 0;
	max-width: 100% !important;
}

.site-footer .site-info {
	display: none;
}

.footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-logo-text {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 1.05rem;
	margin-bottom: 0.4rem;
}

.footer-about {
	font-size: 0.9rem;
	color: #c0ccee;
}

.footer-column-title {
	font-family: "Montserrat", sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #f0f4ff;
}

.footer-links {
	/* list-style: none; */
	font-size: 0.88rem;
	margin: 0 1.3em;
}

.footer-links li+li {
	margin-top: 0.35rem;
}

.footer-links a {
	color: #c0ccee;
	transition: color 0.18s ease;
}

.footer-links a:hover {
	color: var(--color-gold);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 1.1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	font-size: 0.8rem;
	color: #9ca8d4;
}

.footer-bottom a {
	color: inherit;
}



/* Responsive */
@media (max-width: 960px) {
	nav.main-nav ul {
		flex-wrap: wrap;
		gap: 1rem;
		row-gap: 0.5rem;
		justify-content: center;
		margin: 10px;
	}

	.header-inner {
		padding-inline: 1rem;
		flex-direction: column;
	}
	nav.main-nav a.btn-primary {
		display: block;
		margin: 12px 0 0;
	}
	.cta-box {
		grid-template-columns: minmax(0, 1fr);
	}

	.cta-actions {
		justify-content: flex-start;
	}
	.cta-subcopy {
		text-align: left;
	}

	.footer-top {
		grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {

	.footer-top {
		grid-template-columns: minmax(0, 1fr);
	}

	section {
		padding: 3rem 1em;
	}
}