/* ========== RESET & BASE ========== */
html,
body {
	font-family: 'Lato', sans-serif;
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.page-container {
	width: 100%;
	max-width: 100vw;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

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

.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	border: 0;
	white-space: nowrap;
}

/* ========== HEADER & BANNER ========== */
.header {
	background: #B2C8D2;
	width: 100%;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
}

.scrolling-text {
	font-family: "Allura", cursive;
	font-size: 25px;
	color: #2F3A4C;
	text-align: center;
	background: #B2C8D2;
	padding: 10px 10px;
	overflow: hidden;
	white-space: nowrap;
	animation: marquee 12s linear infinite;
	box-sizing: border-box;
}

@keyframes marquee {
	0% {
		text-indent: 100%;
	}

	100% {
		text-indent: -100%;
	}
}

/* ========== NAVIGATION ========== */
.main-nav {
	background: #2F3A4C;
	padding: 15px 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	box-sizing: border-box;
	overflow: visible !important;
	position: relative;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding-right: 35px;
	position: relative;
}

.logo {
	height: 80px;
	width: auto;
	margin-left: 16px;
	display: block;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
	position: relative;
}

.hamburger span {
	height: 4px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	margin: 5px 0;
	transition: 0.3s;
}

.nav-links {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-left: auto;
	box-sizing: border-box;
}

nav a.apply-now,
.hero-content .apply-now {
	background: #B09375;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 18px 22px;
	font-weight: bold;
	transition: background 0.2s, transform 0.2s;
	display: inline-block;
}

nav a.apply-now:hover,
.hero-content .apply-now:hover {
	background: #8c735d;
	color: #fff !important;
	transform: translateY(-2px) scale(1.04);
}

/* Base nav links */
nav a {
	color: #F6F5F1;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	background: #2F3A4C;
	border-radius: 50px;
	padding: 12px;
	transition: color 0.2s;
}

/* Hover effect for ALL nav links*/
nav a:hover {
	background: none;
	color: #8c735d;
}

/* No hover effect for logo link */
nav a.logo-link,
nav a.logo-link:hover,
nav a.logo-link:active,
nav a.logo-link:focus {
	background: none !important;
	color: inherit !important;
	padding: 0 !important;
	border-radius: 0 !important;
}

/* logo link align image nicely */
nav a.logo-link {
	display: flex;
	align-items: center;
}

/* NAVIGATION RESPONSIVE */
@media (max-width: 1000px) {
	.nav-container {
		padding-right: 15px;
	}

	.logo {
		height: 60px;
		margin-left: 8px;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		background: #2F3A4C;
		width: 100vw;
		left: 0;
		right: 0;
		position: absolute;
		top: 100%;
		z-index: 1000;
		font-family: 'Lato', sans-serif;
		padding-bottom: 30px;
	}

	.nav-links.active {
		display: flex;
	}
}

/* ======================= HERO / INTRO MESSAGE ======================== */
.hero-section {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
}

.hero-bg {
	width: 100%;
	height: 550px;
	object-fit: cover;
	display: block;
}

@media (max-width: 700px) {
	.hero-bg {
		height: 300px;
	}
}

/* Admissions Intro Section */
.admissions-fit-intro {
	width: 100%;
	padding: 24px 0 12px 0;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}

.fit-message-container {
	width: 100%;
	max-width: 1200px;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: center;
	padding: 0 1rem;
}

.fit-title {
	font-size: 2.2rem;
	color: #2F3A4C;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.fit-subtitle {
	font-size: 1.18rem;
	color: #2F3A4C;
	font-family: 'Lato', sans-serif;
	margin-bottom: 0;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.fit-title {
		font-size: 1.9rem;
	}

	.fit-subtitle {
		font-size: 1.09rem;
	}
}

@media (max-width: 600px) {
	.admissions-fit-intro {
		padding: 16px 0 8px 0;
	}

	.fit-message-container {
		padding: 0 0.5rem;
	}

	.fit-title {
		font-size: 1.3rem;
	}

	.fit-subtitle {
		font-size: 0.95rem;
	}
}

/* =====================================================ADMISSIONS CARDS SECTION===================================================== */
.admissions-cards-section {
	width: 100%;
	max-width: 1100px;
	margin: 38px auto 10px auto;
	display: flex;
	justify-content: center;
	color: #2F3A4C;
}

.admissions-cards-container {
	display: flex;
	gap: 48px;
	justify-content: center;
	width: 100%;
}

.admissions-card {
	background: #f6f5f1;
	padding: 32px 26px 28px 26px;
	flex: 1 1 0;
	min-width: 290px;
	max-width: 440px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.admissions-card h3 {
	font-size: 1.28rem;
	color: #2F3A4C;
	font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: 0.2px;
}

.admissions-card .italic {
	font-style: italic;
	font-weight: 500;
	color: #2F3A4C;
}

.card-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 1.07rem;
	line-height: 1.7;
}

.card-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
	color: #2F3A4C;
}

.card-list .icon {
	font-size: 1.22em;
	margin-right: 12px;
	margin-top: 1px;
}

.checks .icon {
	color: #2F3A4C;
	font-weight: bold;
}

.crosses .icon {
	color: #B09375;
	font-weight: bold;
}

@media (max-width: 900px) {
	.admissions-cards-container {
		flex-direction: column !important;
		gap: 1.5rem;
		align-items: center;
	}

	.admissions-card {
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
	}
}

/* ======================================ADMISSIONS BANNER (with RESPONSIVENESS)===================================== */
.admissions-banner {
	max-width: 1200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	width: 100%;
	margin: 55px auto 10px auto;
	overflow: hidden;
}

.admissions-banner-text {
	flex: 1;
	padding: 15px 0 36px 38px;
	background: #2F3A4C;
	min-width: 230px;
}

.admissions-title {
	color: #f6f5f1;
	font-size: 2.3rem;
	font-family: 'Lato', sans-serif;
	font-weight: bold;
	margin-bottom: 16px;
	letter-spacing: 0.5px;
}

.admissions-lead {
	color: #f6f5f1;
	font-size: 1.18rem;
	font-family: 'Lato', sans-serif;
	line-height: 1.6;
	margin: 0 0 10px 0;
	font-weight: 400;
}

@media (max-width: 900px) {
	.admissions-banner {
		max-width: 1200px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
		width: 100%;
		margin: 55px auto 10px auto;
		overflow: hidden;
	}

	.admissions-banner-text {
		flex: 1;
		padding: 15px 0 36px 38px;
		background: #2F3A4C;
		min-width: 230px;
	}
}

@media (max-width: 700px) {
	.admissions-banner-text {
		padding: 0 8px 14px 8px;
	}

	.admissions-title {
		font-size: 2.3rem;
	}

	.admissions-lead {
		font-size: 1.18rem;
	}
}

/* =====================================================APPLY NOW FLEX SECTION===================================================== */
.apply-now-flex-section {
	display: flex;
	gap: 48px;
	justify-content: center;
	align-items: flex-start;
	background: #FFF;
	max-width: 1200px;
	margin: 10px auto 10px auto;
	padding: 45px 34px 55px 34px;
	box-sizing: border-box;
	width: 100%;
	overflow-x: hidden;
}

.apply-info-side {
	box-sizing: border-box;
	flex: 1 1 0;
	min-width: 290px;
	max-width: 500px;
	padding: 12px 20px 12px 10px;
	background: #fff;
	border-radius: 14px;
	margin-right: 15px;
	color: #2F3A4C;
	font-size: 1.08rem;
}

.apply-steps-title {
	font-size: 1.8rem;
	color: #2F3A4C;
	font-weight: 600;
	margin-bottom: 18px;
	letter-spacing: 0.5px;
}

.apply-steps-list {
	color: #2F3A4C;
	font-size: 1.08rem;
	line-height: 1.7;
	margin-bottom: 15px;
	padding-left: 17px;
}

.apply-info-side a {
	color: #B09375;
	text-decoration: underline;
}

.apply-info-note {
	margin-top: 8px;
	font-weight: 600;
	color: #B09375;
	font-size: 1.08rem;
}

.apply-form-side {
	flex: 1 1 0;
	min-width: 320px;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: transparent;
	margin-top: 18px;
}

.apply-form {
	box-sizing: border-box;
	background: #fff;
	border-radius: 12px;
	padding: 10px 10px;
	max-width: 480px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 18px;
	font-family: 'Lato', sans-serif;
	width: 100%;
}

.apply-form label {
	font-weight: 600;
	color: #2F3A4C;
	font-size: 1rem;
	margin-bottom: 4px;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
	padding: 10px;
	border: 1.5px solid #B2C8D2;
	border-radius: 6px;
	font-size: 1rem;
	font-family: 'Lato', sans-serif;
	color: #2F3A4C;
	background: #fff;
}

.apply-form textarea {
	resize: vertical;
}

.apply-send-btn {
	margin-top: 25px;
	background: #2F3A4C;
	color: #F6F5F1;
	font-size: 1.4rem;
	font-family: 'Lato', sans-serif;
	font-weight: bold;
	border: none;
	border-radius: 30px;
	padding: 5px 45px;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	box-shadow: 0 2px 6px rgba(47, 58, 76, 0.08);
}

.apply-send-btn:hover {
	background: #1a2230;
	transform: translateY(-2px) scale(1.04);
}

.form-success-message {
	color: #2F3A4C;
	font-size: 1.3rem;
	padding: 15px;
	margin-top: 5px;
	text-align: center;
}

.h-captcha {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1rem 0;
}

@media (max-width: 900px) {
	.apply-now-flex-section {
		flex-direction: column;
		gap: 2rem;
		padding: 1rem;
		margin-right: 30px;
		margin-left: 15px;
	}

	.admissions-banner {
		flex-direction: column;
		gap: 0;
	}

	.admissions-banner-text {
		min-width: 0;
		text-align: center;
	}

	.apply-info-side,
	.apply-form-side {
		max-width: 100%;
		margin: 0;
		padding: 18px 5px;
	}
}

@media (max-width: 700px) {
	.apply-now-flex-section {
		flex-direction: column;
		gap: 2rem;
		padding: 1rem 0.5rem;
		margin: 0 auto;
		width: 100%;
		box-sizing: border-box;
	}
.h-captcha {
    box-sizing: border-box;
}
	.apply-info-side,
	.apply-form-side {
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: 0.5rem 0;
		box-sizing: border-box;
		min-width: 0;
	}

	.apply-form-side {
		align-items: stretch;
		/* Remove center-align so form can stretch */
	}

	.apply-info-side {
		padding-left: 0.7rem;
	}

	.apply-form {
		width: 100%;
		max-width: 100%;
		padding: 0.5rem 0.2rem;
		margin: 0;
		box-sizing: border-box;
	}

	@media (max-width: 500px) {
		.apply-form {
			padding: 0 0.2rem;
		}
	}
	.apply-form input,
.apply-form select,
.apply-form textarea {
    width: 100%;
    box-sizing: border-box;
}
}

/* =====================================================PASTOR'S MESSAGE SECTION===================================================== */
.pastor-message-section {
	background: #f6f5f1;
	color: #fff;
	padding: 28px 0;
	text-align: center;
	font-family: 'Lato', sans-serif;
	box-sizing: border-box;
	max-width: 1200px;
	margin: 10px auto 10px auto;
	justify-content: center;
}

.pastor-message-container {
	max-width: 750px;
	margin: 0 auto;
	padding: 0 20px;
}

.pastor-message-title {
	font-family: "Allura", cursive;
	font-size: 2.1rem;
	color: #B09375;
	margin-bottom: 22px;
	letter-spacing: 1.5px;
}

.pastor-message-quote {
	font-size: 1.18rem;
	line-height: 1.7;
	font-style: italic;
	color: #2F3A4C;
	margin-bottom: 28px;
	border-left: 4px solid #B09375;
	padding-left: 18px;
	background: rgba(176, 147, 117, 0.06);
}

.pastor-message-author {
	font-size: 1.7rem;
	font-weight: 600;
	color: #B09375;
	letter-spacing: 0.5px;
	font-family: "Allura", cursive;
}

/* ========== FOOTER ========== */
.main-footer {
	background: #2F3A4C;
	color: #fff;
	text-align: left;
	padding: 15px 12px 12px 10px;
	font-family: 'Lato', sans-serif;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-logo {
	width: auto;
	height: 80px;
	margin-bottom: 10px;
	margin-right: 150px;
	margin-top: 45px;
	margin-left: 25px;
}

.footer-family {
	font-family: "Allura", cursive;
	font-size: 24px;
	color: #fff;
	margin-left: 35px;
}

.footer-right {
	flex: 1 1 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.footer-links-touch {
	display: flex;
	align-items: flex-start;
}

.footer-links {
	min-width: 130px;
}

.footer-section-title {
	font-family: "Allura", cursive;
	font-size: 24px;
	color: #fff;
	letter-spacing: 1px;
	margin-top: 10px;
}

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

.footer-links li {
	margin-bottom: 5px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	font-size: 1.0rem;
}

.footer-links a:hover,
.apply-now-footer {
	color: #F6F5F1;
	text-decoration: none;
}

.footer-divider {
	width: 2px;
	background: #B2C8D2;
	min-height: 230px;
	margin: 0 44px 0 -10px;
}

.footer-get-in-touch {
	min-width: 200px;
}

.footer-contact-info {
	font-size: 1.03rem;
	color: #fff;
	margin-top: 10px;
}

.footer-contact-info div {
	margin-bottom: 8px;
}

.footer-heart {
	color: #2F3A4C !important;
	font-size: 1.3em;
	vertical-align: middle;
	margin: 0 4px 0 4px;
}

.footer-designer {
	font-family: "Allura", cursive;
	font-size: 18px;
	color: #2F3A4C;
	letter-spacing: 1px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.footer-bar {
	background: #B2C8D2;
	color: #2F3A4C;
	text-align: center;
	font-family: 'Lato', sans-serif;
	padding: 15px 12px 12px 10px;
	font-size: 15px;
	letter-spacing: 0.02em;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
	width: 100%;
}

.footer-bar a.footer-legal-link {
	color: #2F3A4C !important;
	text-decoration: underline;
	font-family: 'Lato', sans-serif;
	font-size: 1em;
	margin: 0 2px;
	transition: color 0.2s;
	display: inline;
}

.footer-bar a.footer-legal-link:hover {
	color: #8c735d !important;
}

@media (max-width: 1000px) {
	.footer-content {
		flex-direction: column;
		align-items: flex-start;
		padding: 0 5px;
		margin-left: 15px;
	}

	.footer-logo {
		margin-bottom: 7px;
		margin-top: 5px;
		margin-left: 5px;
	}

	.footer-family {
		font-size: 1.1rem;
		margin-left: 5px;
		margin-bottom: 10px;
	}

	.footer-links-touch {
		flex-direction: column;
		gap: 18px;
	}

	.footer-divider {
		display: none;
	}

	.footer-right {
		width: 100%;
		align-items: flex-start;
	}
}

@media (max-width: 700px) {
	.main-footer {
		padding: 18px 0 10px 0;
	}

	.footer-logo {
		margin-bottom: 7px;
		margin-top: 5px;
		margin-left: 5px;
	}

	.footer-family {
		font-size: 1.1rem;
		margin-left: 5px;
	}

	.footer-bar {
		font-size: 0.93rem;
	}

	.footer-contact-info {
		white-space: normal !important;
		word-break: break-word;
		overflow-wrap: break-word;
	}
}

/* ========== CONSENT BANNER ========== */
#consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100vw;
	background: #2F3A4C;
	color: #fff;
	padding: 15px 0;
	z-index: 2000;
	text-align: center;
	font-size: 1rem;
}

#consent-banner a {
	color: #B2C8D2;
	text-decoration: underline;
	margin: 0 4px;
}

#consent-banner button {
	background: #B09375;
	color: #fff;
	border: none;
	padding: 7px 22px;
	border-radius: 5px;
	margin-left: 15px;
	cursor: pointer;
	font-size: 1em;
	transition: background 0.18s;
}

#consent-banner button:hover {
	background: #8c735d;
}