/*
Theme Name:   Crown Church Child
Theme URI:    https://crownorl.com
Description:  Child theme for GeneratePress — Crown Church Orlando
Author:       Crown Church
Template:     generatepress
Version:      1.0.0
Text Domain:  crown-church-child
*/

/* ============================================================
   Google Fonts — loaded via wp_enqueue_style in functions.php
   (removed @import to eliminate render-blocking font request)
   ============================================================ */

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
	--color-gold:       #cfae6b;
	--color-dark:       #1b252f;
	--color-dark-alt:   #243140;
	--font-primary:     'Poppins', sans-serif;
}

/* ============================================================
   Base Typography
   ============================================================ */
body,
button,
input,
select,
textarea {
	font-family: var(--font-primary);
}


/* ============================================================
   === HOMEPAGE STYLES ===
   All rules scoped to .crown-homepage where possible so they
   don't bleed into other WP pages.
   ============================================================ */

/* ------------------------------------------------------------
   Expand brand tokens (full palette)
   ------------------------------------------------------------ */
:root {
	--color-gold:         #cfae6b;
	--color-gold-btn:     #bca36d;
	--color-dark:         #1b252f;
	--color-dark-alt:     #243140;
	--color-body-text:    #333333;
	--color-heading:      #0d1013;
	--color-bg-light:     #ecf0f3;
	--color-bg-section:   #f9f9fc;
	--color-gray:         #3c3e41;
	--color-gray-2:       #626567;
	--color-white:        #ffffff;
	--color-black:        #000000;
	--font-primary:       'Poppins', sans-serif;
	--nav-height:         72px;
}

/* ------------------------------------------------------------
   GeneratePress layout overrides on the homepage
   Hide GP's default header, nav, and content wrappers so our
   custom markup is the only thing visible.
   ------------------------------------------------------------ */
.crown-homepage #site-header,
.crown-homepage .main-navigation,
.crown-homepage .nav-below-header,
.crown-homepage .top-bar,
.crown-homepage .site-footer {
	display: none !important;
}

.crown-homepage .site-main,
.crown-homepage #page,
.crown-homepage .site-content,
.crown-homepage .content-area,
.crown-homepage .inside-page-hero,
.crown-homepage .page-header {
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
}

/* Shared container */
.cc-container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 1.25rem;
}

/* ------------------------------------------------------------
   Button system
   ------------------------------------------------------------ */
.cc-btn {
	display: inline-block;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.875rem 2rem;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
	line-height: 1;
}

.cc-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.cc-btn--gold {
	background-color: var(--color-gold);
	color: var(--color-dark);
	border: 2px solid var(--color-gold);
}

.cc-btn--gold:hover {
	background-color: var(--color-gold-btn);
	border-color: var(--color-gold-btn);
	color: var(--color-dark);
}

.cc-btn--outline {
	background-color: transparent;
	color: var(--color-white);
	border: 2px solid var(--color-white);
}

.cc-btn--outline:hover {
	background-color: rgba(255, 255, 255, 0.12);
	color: var(--color-white);
}

/* ------------------------------------------------------------
   Section title utility classes
   ------------------------------------------------------------ */
.cc-section-title {
	font-family: var(--font-primary);
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--color-heading);
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.cc-section-title--center {
	text-align: center;
}

.cc-section-title--light {
	color: var(--color-white);
}

/* Arrow link utility */
.cc-link-arrow {
	display: inline-block;
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--color-gray-2);
	text-decoration: none;
	transition: color 0.2s;
}

.cc-link-arrow:hover {
	color: var(--color-gold);
	text-decoration: none;
}

.cc-link-arrow--gold {
	color: var(--color-gold);
	font-size: 1rem;
	letter-spacing: 0.02em;
}

.cc-link-arrow--gold:hover {
	color: var(--color-gold-btn);
}


/* ============================================================
   1. HEADER / NAV
   ============================================================ */
.cc-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: var(--color-dark);
	height: var(--nav-height);
	transition: box-shadow 0.3s ease;
}

.cc-header--scrolled {
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.cc-nav-inner {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 1.25rem;
	height: var(--nav-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.cc-logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	text-decoration: none;
}

.cc-logo img {
	height: 44px;
	width: auto;
	display: block;
}

/* Nav list */
.cc-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.125rem;
}

.cc-nav-list li a {
	display: block;
	padding: 0.5rem 0.875rem;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	border-radius: 4px;
	transition: color 0.2s;
}

.cc-nav-list li a:hover {
	color: var(--color-gold);
	text-decoration: none;
}

/* Give button in nav */
.cc-nav-give {
	margin-left: 0.5rem;
}

.cc-nav-give .cc-btn {
	font-size: 0.8rem;
	padding: 0.55rem 1.25rem;
	letter-spacing: 0.06em;
}

/* Hamburger button */
.cc-hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 26px;
	height: 18px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}

.cc-hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-white);
	border-radius: 2px;
	transform-origin: center;
	transition: transform 0.3s ease, opacity 0.25s ease;
}

/* Hamburger → X */
.cc-hamburger--open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.cc-hamburger--open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.cc-hamburger--open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Mobile: show hamburger, hide nav by default */
@media (max-width: 767px) {
	.cc-hamburger {
		display: flex;
	}

	.cc-nav {
		position: fixed;
		top: var(--nav-height);
		left: 0;
		right: 0;
		background-color: var(--color-dark);
		padding: 0.75rem 1.25rem 1.5rem;
		transform: translateY(-110%);
		opacity: 0;
		transition: transform 0.3s ease, opacity 0.25s ease;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
		z-index: 999;
	}

	.cc-nav--open {
		transform: translateY(0);
		opacity: 1;
	}

	.cc-nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.cc-nav-list li a {
		padding: 0.875rem 0.5rem;
		font-size: 1rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		border-radius: 0;
	}

	.cc-nav-give {
		margin-left: 0;
		margin-top: 1rem;
	}

	.cc-nav-give .cc-btn {
		display: block;
		text-align: center;
		padding: 0.875rem;
		font-size: 0.9rem;
	}
}

@media (min-width: 768px) {
	.cc-hamburger {
		display: none;
	}
}


/* ============================================================
   2. HERO SECTION
   ============================================================ */
.cc-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	/* Path is relative to this CSS file — both live in the theme root */
	background-image: url('assets/images/Duma_opt.jpg');
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
	padding-top: var(--nav-height);
}

/* Disable parallax on mobile — iOS Safari issue */
@media (max-width: 767px) {
	.cc-hero {
		background-attachment: scroll;
	}
}

.cc-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(27, 37, 47, 0.62);
	z-index: 1;
}

.cc-hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding: 5rem 1.25rem 4rem;
}

.cc-hero-text {
	max-width: 720px;
}

.cc-hero-headline {
	font-family: var(--font-primary);
	font-size: clamp(2.25rem, 6vw, 4.25rem);
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.08;
	margin-top: 0;
	margin-bottom: 1.25rem;
	letter-spacing: -0.015em;
}

/* Gold signature bar */
.cc-hero-accent-bar {
	width: 68px;
	height: 4px;
	background-color: var(--color-gold);
	border-radius: 2px;
	margin-bottom: 1.5rem;
}

.cc-hero-sub {
	font-family: var(--font-primary);
	font-size: clamp(0.9rem, 2vw, 1.1rem);
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 2.5rem;
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1.6;
}

.cc-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}


/* ============================================================
   3. SERVICE INFO STRIP
   ============================================================ */
.cc-service-strip {
	background-color: var(--color-dark);
	padding: 2rem 1.25rem;
	border-top: 1px solid rgba(207, 174, 107, 0.2);
}

.cc-service-strip-inner {
	max-width: 1200px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.cc-service-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.cc-service-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

.cc-service-icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--color-gold);
}

.cc-service-info {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.cc-service-label {
	font-family: var(--font-primary);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-gold);
}

.cc-service-value {
	font-family: var(--font-primary);
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 400;
}

.cc-service-link {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.88);
	transition: color 0.2s;
}

.cc-service-link:hover {
	color: var(--color-gold);
	text-decoration: none;
}

@media (min-width: 768px) {
	.cc-service-strip-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-around;
	}

	.cc-service-item {
		flex: 1;
	}

	.cc-service-item + .cc-service-item {
		border-left: 1px solid rgba(255, 255, 255, 0.1);
		padding-left: 2.5rem;
	}
}


/* ============================================================
   4. MISSION / VALUES SECTION
   ============================================================ */
.cc-mission {
	background-color: var(--color-bg-section);
	padding: 5rem 1.25rem;
}

.cc-mission-statement {
	max-width: 680px;
	margin-bottom: 3.5rem;
}

.cc-mission-text {
	font-family: var(--font-primary);
	font-size: 1.05rem;
	color: var(--color-gray);
	line-height: 1.8;
	margin-top: 0.75rem;
	margin-bottom: 0;
}

.cc-values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.cc-value-card {
	background: var(--color-white);
	padding: 1.75rem 1.5rem;
	border-radius: 6px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.cc-value-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.cc-value-accent {
	display: block;
	width: 36px;
	height: 3px;
	background-color: var(--color-gold);
	border-radius: 2px;
	margin-bottom: 1rem;
}

.cc-value-title {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-heading);
	margin-top: 0;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.cc-value-desc {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	color: var(--color-gray-2);
	line-height: 1.7;
	margin: 0;
}

@media (min-width: 768px) {
	.cc-values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.cc-values-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.cc-mission-statement {
		max-width: 760px;
	}
}


/* ============================================================
   5. LATEST SERMON SECTION
   ============================================================ */
.cc-sermons {
	background-color: var(--color-bg-light);
	padding: 5rem 1.25rem;
}

.cc-sermons .cc-section-title {
	margin-bottom: 2.5rem;
}

/* Responsive 16:9 wrapper */
.cc-sermon-embed-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
	background-color: var(--color-dark);
	max-width: 900px;
	margin-inline: auto;
}

.cc-sermon-embed-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.cc-sermon-cta {
	text-align: center;
	margin-top: 2.5rem;
}


/* ============================================================
   6. EVENTS SECTION
   ============================================================ */
.cc-events {
	background-color: var(--color-bg-section);
	padding: 5rem 1.25rem;
}

.cc-events .cc-section-title {
	margin-bottom: 2.5rem;
}

.cc-events-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
	width: 100%;
	box-sizing: border-box;
}

/* Base event card */
.cc-event-card {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

/* Featured card image layer */
.cc-event-card--featured {
	min-height: 380px;
}

.cc-event-card-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
	transition: transform 0.45s ease;
}

.cc-event-card--featured:hover .cc-event-card-bg {
	transform: scale(1.04);
}

.cc-event-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(27, 37, 47, 0.93) 0%,
		rgba(27, 37, 47, 0.4) 55%,
		transparent 100%
	);
	z-index: 1;
}

.cc-event-card-content {
	position: relative;
	z-index: 2;
	padding: 1.75rem;
}

.cc-event-tag {
	display: inline-block;
	font-family: var(--font-primary);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold);
	background-color: rgba(207, 174, 107, 0.12);
	border: 1px solid rgba(207, 174, 107, 0.4);
	padding: 0.25rem 0.65rem;
	border-radius: 3px;
	margin-bottom: 0.65rem;
}

.cc-event-title {
	font-family: var(--font-primary);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--color-white);
	margin-top: 0;
	margin-bottom: 0.4rem;
	line-height: 1.25;
}

.cc-event-dates {
	font-family: var(--font-primary);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 1.25rem;
	font-weight: 500;
}

/* Side column (2 small cards) */
.cc-events-side {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.cc-event-card--small {
	background-color: var(--color-dark);
	min-height: 0;
	flex: 1;
	justify-content: center;
}

.cc-event-card--small .cc-event-card-content {
	padding: 1.5rem 1.75rem;
}

.cc-event-card--small .cc-event-title {
	font-size: 1.05rem;
}

.cc-events-footer {
	text-align: center;
	margin-top: 2rem;
}

@media (min-width: 1200px) {
	/* .cc-events-grid keeps repeat(2, minmax(0, 1fr)) at all widths — no override */

	.cc-event-card--featured {
		min-height: 460px;
	}
}


/* ============================================================
   7. CONNECT / PATHWAY SECTION
   ============================================================ */
.cc-pathway {
	background-color: var(--color-dark);
	padding: 5rem 1.25rem;
}

.cc-pathway .cc-section-title {
	margin-bottom: 3rem;
}

.cc-pathway-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.cc-pathway-step {
	padding: 2rem 1.75rem;
	border: 1px solid rgba(207, 174, 107, 0.18);
	border-radius: 6px;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.cc-pathway-step:hover {
	border-color: var(--color-gold);
	background-color: rgba(207, 174, 107, 0.04);
}

.cc-pathway-number {
	display: block;
	font-family: var(--font-primary);
	font-size: 3rem;
	font-weight: 700;
	color: rgba(207, 174, 107, 0.2);
	line-height: 1;
	margin-bottom: 0.75rem;
	font-variant-numeric: tabular-nums;
}

.cc-pathway-label {
	font-family: var(--font-primary);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-top: 0;
	margin-bottom: 0.6rem;
}

.cc-pathway-desc {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.cc-pathway-link {
	font-family: var(--font-primary);
	font-size: 0.825rem;
	font-weight: 600;
	color: var(--color-gold);
	text-decoration: none;
	letter-spacing: 0.03em;
	transition: color 0.2s;
}

.cc-pathway-link:hover {
	color: #e8cc8a;
	text-decoration: none;
}

@media (min-width: 768px) {
	.cc-pathway-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.cc-pathway-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}


/* ============================================================
   8. SOCIAL LINKS STRIP
   ============================================================ */
.cc-social-strip {
	background-color: var(--color-gold);
	padding: 3rem 1.25rem;
}

.cc-social-headline {
	font-family: var(--font-primary);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--color-dark);
	text-align: center;
	margin-top: 0;
	margin-bottom: 1.75rem;
	letter-spacing: -0.01em;
}

.cc-social-icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem 2.5rem;
}

.cc-social-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: var(--color-dark);
	font-family: var(--font-primary);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: transform 0.2s ease, opacity 0.2s;
}

.cc-social-link:hover {
	transform: translateY(-5px);
	opacity: 0.8;
	color: var(--color-dark);
	text-decoration: none;
}

.cc-social-link i {
	font-size: 1.875rem;
}

@media (min-width: 768px) {
	.cc-social-icons {
		gap: 1.5rem 4rem;
	}

	.cc-social-link i {
		font-size: 2.25rem;
	}
}


/* ============================================================
   9. FOOTER
   ============================================================ */
.cc-footer {
	background-color: var(--color-dark);
	padding-top: 4rem;
}

.cc-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-bottom: 3.5rem;
}

/* Logo — invert to white if original is dark.
   Remove filter if the logo is already on a transparent/light bg. */
.cc-footer-logo {
	display: block;
	height: 40px;
	width: auto;
	margin-bottom: 1rem;
	filter: brightness(0) invert(1);
}

.cc-footer-tagline {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.58);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.cc-footer-give {
	font-size: 0.8rem;
	padding: 0.7rem 1.5rem;
}

.cc-footer-heading {
	font-family: var(--font-primary);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: var(--color-gold);
	margin-top: 0;
	margin-bottom: 1rem;
}

.cc-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.cc-footer-links a {
	font-family: var(--font-primary);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	transition: color 0.2s;
}

.cc-footer-links a:hover {
	color: var(--color-gold);
	text-decoration: none;
}

.cc-footer-address {
	font-style: normal;
}

.cc-footer-address p {
	font-family: var(--font-primary);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.68);
	margin-bottom: 0.75rem;
	line-height: 1.65;
}

.cc-footer-address strong {
	color: rgba(255, 255, 255, 0.88);
}

.cc-footer-address a {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	transition: color 0.2s;
}

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

/* Bottom copyright bar */
.cc-footer-bar {
	border-top: 2px solid var(--color-gold);
	padding: 1.25rem 1.25rem;
	background-color: rgba(0, 0, 0, 0.22);
}

.cc-footer-bar p {
	font-family: var(--font-primary);
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
	text-align: center;
}

@media (min-width: 768px) {
	.cc-footer-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;
	}
}

@media (min-width: 1200px) {
	.cc-footer-grid {
		grid-template-columns: 2fr 1fr 2fr;
		gap: 4rem;
	}
}


/* ============================================================
   === ABOUT US SECTION ===
   Two-column split: text left, image right.
   Background: var(--color-bg-section) — clean, matches section rhythm.
   ============================================================ */

.cc-about {
	background-color: var(--color-bg-section);
	padding: 5.5rem 1.25rem;
}

.cc-about-inner {
	max-width: 1200px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;          /* mobile: stacks image above text */
	gap: 3rem;
	align-items: center;
}

/* Text column */
.cc-about-col--text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0;
}

.cc-about-heading {
	font-family: var(--font-primary);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 700;
	color: var(--color-heading);
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.05;
	margin-top: 0;
	margin-bottom: 1rem;
}

.cc-about-accent-bar {
	width: 52px;
	height: 4px;
	background-color: var(--color-gold);
	border-radius: 2px;
	margin-bottom: 1.5rem;
}

.cc-about-body {
	font-family: var(--font-primary);
	font-size: 1.05rem;
	color: var(--color-body-text);
	line-height: 1.8;
	margin-bottom: 2rem;
	max-width: 520px;
}

/* Outlined dark button — unique to About Us */
.cc-btn--outline-dark {
	background-color: transparent;
	color: var(--color-heading);
	border: 2px solid var(--color-heading);
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	padding: 0.875rem 2rem;
	border-radius: 4px;
	align-self: flex-start;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.cc-btn--outline-dark:hover {
	background-color: var(--color-heading);
	color: var(--color-white);
	transform: translateY(-2px);
	text-decoration: none;
}

/* Image column */
.cc-about-col--image {
	width: 100%;
}

.cc-about-img {
	display: block;
	width: 100%;
	height: 440px;
	object-fit: cover;
	object-position: center top;
	border-radius: 6px;
}

/* Desktop: side-by-side, image order corrected to right */
@media (min-width: 768px) {
	.cc-about-inner {
		flex-direction: row;
		gap: 4rem;
		align-items: stretch;
	}

	.cc-about-col--text {
		flex: 1;
		order: 1;               /* text on left */
	}

	.cc-about-col--image {
		flex: 1;
		order: 2;               /* image on right */
	}

	.cc-about-img {
		height: 100%;
		min-height: 380px;
		max-height: 520px;
	}
}

@media (min-width: 1200px) {
	.cc-about {
		padding: 6.5rem 1.25rem;
	}

	.cc-about-inner {
		gap: 5rem;
	}
}


/* ============================================================
   === ABOUT THE LEADERS SECTION ===
   Two-column split: image left, text right.
   Background: warm cream (#fdf6ec) — complements golden photo tones.
   ============================================================ */

.cc-leaders {
	background-color: #fdf6ec;
	padding: 5.5rem 1.25rem;
}

.cc-leaders-inner {
	max-width: 1200px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;          /* mobile: image on top */
	gap: 3rem;
	align-items: center;
}

/* Image column */
.cc-leaders-col--image {
	width: 100%;
}

.cc-leaders-img {
	display: block;
	width: 100%;
	height: 460px;
	object-fit: cover;
	object-position: center top;
	border-radius: 6px;
}

/* Text column */
.cc-leaders-col--text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cc-leaders-heading {
	font-family: var(--font-primary);
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--color-heading);
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.05;
	margin-top: 0;
	margin-bottom: 0.75rem;
}

/* Gold accent bar sits between heading and subtitle */
.cc-leaders-accent-bar {
	width: 52px;
	height: 3px;
	background-color: var(--color-gold);
	border-radius: 2px;
	margin-bottom: 0.85rem;
}

.cc-leaders-subtitle {
	font-family: var(--font-primary);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-gray-2);
	margin-top: 0;
	margin-bottom: 1.75rem;
}

.cc-leaders-body {
	font-family: var(--font-primary);
	font-size: 1rem;
	color: var(--color-body-text);
	line-height: 1.85;
	margin: 0;
	max-width: 540px;
}

/* Desktop: side-by-side, image left / text right */
@media (min-width: 768px) {
	.cc-leaders-inner {
		flex-direction: row;
		gap: 4rem;
		align-items: stretch;
	}

	.cc-leaders-col--image {
		flex: 1;
		order: 1;               /* image on left */
	}

	.cc-leaders-col--text {
		flex: 1;
		order: 2;               /* text on right */
	}

	.cc-leaders-img {
		height: 100%;
		min-height: 400px;
		max-height: 560px;
		object-position: center center;
	}
}

@media (min-width: 1200px) {
	.cc-leaders {
		padding: 6.5rem 1.25rem;
	}

	.cc-leaders-inner {
		gap: 5rem;
	}
}


/* ============================================================
   SESSION 3 UPDATE — Light Theme Conversion
   All rules below override their Session 1/2 counterparts.
   The footer (.cc-footer) is intentionally untouched.
   Changes are grouped by the brief's change number.
   ============================================================ */


/* SESSION 3 UPDATE — Change 2: Nav Light Theme
   Was: dark (#1b252f) bg, white text.
   Now: white bg, dark text, gold hover, light border + shadow.
   --------------------------------------------------------------- */
.cc-header {
	background-color: #ffffff;
	border-bottom: 1px solid #e8e8e8;
}

.cc-header--scrolled {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cc-nav-list li a {
	color: #0d1013;
}

.cc-nav-list li a:hover {
	color: var(--color-gold);
}

/* Hamburger bars: white → dark so they show on white nav */
.cc-hamburger span {
	background-color: #0d1013;
}

/* Mobile drawer: dark bg → white */
@media (max-width: 767px) {
	.cc-nav {
		background-color: #ffffff;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	}

	.cc-nav-list li a {
		color: #0d1013;
		border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	}
}


/* SERMONS PAGE — Dark Header Override
   Session 3 set .cc-header to white for the homepage light theme.
   The sermons page uses a dark design — force it back to dark.
   body.crown-sermons-page is added via body_class() in template-sermons.php.
   --------------------------------------------------------------- */
body.crown-sermons-page .cc-header {
	background-color: #1b252f !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
	box-shadow: none;
}

body.crown-sermons-page .cc-header--scrolled {
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45) !important;
}

body.crown-sermons-page .cc-nav-list li a {
	color: rgba(255, 255, 255, 0.85) !important;
}

body.crown-sermons-page .cc-nav-list li a:hover {
	color: #cfae6b !important;
}

body.crown-sermons-page .cc-hamburger span {
	background-color: #ffffff !important;
}

@media (max-width: 767px) {
	body.crown-sermons-page .cc-nav {
		background-color: #1b252f !important;
	}

	body.crown-sermons-page .cc-nav-list li a {
		border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
	}
}


/* SESSION 3 UPDATE — Change 3: Hero Directional Gradient Overlay
   Was: flat rgba(27,37,47,0.62).
   Now: dark-left → near-transparent-right so photo shows on right.
   --------------------------------------------------------------- */
.cc-hero-overlay {
	background: linear-gradient(
		to right,
		rgba(27, 37, 47, 0.75) 0%,
		rgba(27, 37, 47, 0.40) 55%,
		rgba(27, 37, 47, 0.10) 100%
	);
}


/* SESSION 3 UPDATE — Change 4: Alternating Section Backgrounds
   Pattern: #f4f4f6 / #ffffff / #f4f4f6 / #ffffff …
   Footer stays #1b252f — not listed here.
   --------------------------------------------------------------- */

/* Service Info Strip → #f4f4f6 */
.cc-service-strip {
	background-color: #f4f4f6;
	border-top: 1px solid #e8e8e8;
}

/* Service strip content was white-on-dark — now dark-on-light */
.cc-service-value {
	color: #333333;
}

.cc-service-link {
	color: #333333;
}

.cc-service-link:hover {
	color: var(--color-gold);
}

@media (min-width: 768px) {
	/* Divider between service columns — was white tint, now dark tint */
	.cc-service-item + .cc-service-item {
		border-left: 1px solid rgba(0, 0, 0, 0.1);
	}
}

/* About Us → #ffffff */
.cc-about {
	background-color: #ffffff;
}

/* About The Leaders → #f4f4f6 */
.cc-leaders {
	background-color: #f4f4f6;
}

/* Mission / Values → #ffffff */
.cc-mission {
	background-color: #ffffff;
}

/* Value cards: were white on light-gray — keep white, add slightly stronger shadow on white bg */
.cc-value-card {
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

/* Latest Sermon → #f4f4f6 */
.cc-sermons {
	background-color: #f4f4f6;
}

/* Events → #ffffff */
.cc-events {
	background-color: #ffffff;
}

/* Connect / Pathway → #f4f4f6  (was #1b252f dark — full text color flip below) */
.cc-pathway {
	background-color: #f4f4f6;
}

/* Pathway cards: border was barely visible gold on dark, bump opacity for light bg */
.cc-pathway-step {
	border: 1px solid rgba(207, 174, 107, 0.4);
}

.cc-pathway-step:hover {
	background-color: rgba(207, 174, 107, 0.07);
	border-color: var(--color-gold);
}

/* Pathway big number: was faint gold on dark bg — deepen so it reads on light */
.cc-pathway-number {
	color: rgba(207, 174, 107, 0.35);
}

/* Pathway text: was white-on-dark — now dark-on-light */
.cc-pathway-label {
	color: #0d1013;
}

.cc-pathway-desc {
	color: #333333;
}

/* Social Strip → #ffffff  (was solid gold bg — now white with borders) */
.cc-social-strip {
	background-color: #ffffff;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
}

/* Social headline and icons: were dark-on-gold — stay dark-on-white (same contrast) */
.cc-social-headline {
	color: #0d1013;
}

.cc-social-link {
	color: #0d1013;
}

.cc-social-link:hover {
	color: #0d1013;
	opacity: 0.65;
}


/* SESSION 3 UPDATE — Change 5: Gold accent bar above all section titles
   Uses ::before so no extra HTML is needed.
   Centered titles get margin-inline: auto on the bar.
   Sections with manual accent bars (About Us, About Leaders) are
   scoped to .cc-section-title only — those headings use different
   classes (.cc-about-heading, .cc-leaders-heading) so no double bars.
   --------------------------------------------------------------- */
.cc-section-title::before {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	background-color: var(--color-gold);
	border-radius: 2px;
	margin-bottom: 14px;
}

.cc-section-title--center::before {
	margin-inline: auto;
}

/* --light modifier is now effectively retired (pathway on light bg).
   Override so any cc-section-title--light usage stays readable. */
.cc-section-title--light {
	color: var(--color-heading);
}


/* SESSION 3 UPDATE — Change 6: Leaders photo crop fix
   Problem: object-position: center center was cutting off heads.
   Actual selectors in this codebase: .cc-leaders-col--image / .cc-leaders-img
   --------------------------------------------------------------- */
.cc-leaders-col--image {
	overflow: hidden;
}

/* Always anchor to the top of the image so heads stay in frame */
.cc-leaders-img {
	object-position: top center;
}

@media (min-width: 768px) {
	.cc-leaders-col--image {
		min-height: 500px;
		max-height: 650px;
	}

	/* Fix: was "center center" at desktop breakpoint (Session 2 line 1315) */
	.cc-leaders-img {
		object-position: top center;
	}
}

@media (max-width: 767px) {
	/* Mobile: contain keeps full photo visible without cropping */
	.cc-leaders-img {
		height: auto;
		min-height: 0;
		object-fit: contain;
		object-position: top center;
	}
}


/* ============================================================
   SESSION 4 — Smooth Scroll
   scroll-margin-top offsets section anchors so the sticky
   nav (--nav-height: 72px) doesn't cover the section heading.
   80px gives an 8px breathing gap above the section.
   ============================================================ */
html {
	scroll-behavior: smooth;
}

#hero,
#recalibrate,
#services,
#sermons,
#about,
#leaders,
#mission,
#events,
#connect,
#give {
	scroll-margin-top: 80px;
}


/* ============================================================
   SESSION 4 — Active Nav State
   .main-nav is added alongside .cc-nav in the Session 4 HTML.
   Active indicator: gold text + 2px gold underline bar.
   Scoped to top-level links only (> li > a) so the About
   submenu links never get the underline bar.
   Give button is explicitly excluded — it keeps its gold pill style.
   ============================================================ */
.main-nav a.active {
	color: #cfae6b;
}

/* Underline bar — top-level direct children only, not submenu */
.cc-nav-list > li > a.active::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #cfae6b;
	margin-top: 3px;
	border-radius: 1px;
}

/* Give button: never show active state — it always keeps gold pill style */
.cc-nav-give a.active {
	color: #0d1013;
}

.cc-nav-give a.active::after {
	display: none;
}

/* Submenu active links: gold text, no underline bar */
.nav-about .submenu a.active {
	color: #cfae6b;
}

.nav-about .submenu a.active::after {
	display: none;
}


/* ============================================================
   SESSION 4 — About Dropdown
   .nav-about is the <li> class. Desktop: CSS :hover opens.
   Mobile: JS adds .open class on tap (navigation.js).
   ============================================================ */
.nav-about {
	position: relative;
}

/* Caret appended to the About toggle link */
.nav-about > a {
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-about > a::after {
	content: '▾';
	font-size: 11px;
	color: #cfae6b;
	transition: transform 0.2s ease;
	/* Override the active::after bar rule above */
	display: inline;
	width: auto;
	height: auto;
	background: none;
	margin-top: 0;
	border-radius: 0;
}

/* Rotate caret when open (JS-toggled .open class on mobile) */
.nav-about.open > a::after {
	transform: rotate(180deg);
}

/* Submenu panel */
.nav-about .submenu {
	display: none;
	list-style: none;
	margin: 0;
	/* padding-top bridges the visual gap without creating a dead zone;
	   top: 100% means the submenu starts right at the bottom of .nav-about
	   so :hover never drops — the submenu IS a child, keeping :hover alive */
	padding: 10px 0 8px 0;
	position: absolute;
	top: 100%;
	left: 0;
	background: #ffffff;
	border-top: 2px solid #cfae6b;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
	min-width: 200px;
	border-radius: 0 0 6px 6px;
	z-index: 999;
}

.nav-about.open .submenu {
	display: block;
}

.nav-about .submenu a {
	display: block;
	padding: 10px 20px;
	font-family: 'Poppins', sans-serif;
	font-size: 0.875rem;
	color: #0d1013;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease, background 0.2s ease;
	/* Reset any inherited nav-list styles */
	border-radius: 0;
	letter-spacing: 0.01em;
}

.nav-about .submenu a:hover {
	color: #cfae6b;
	background: #f9f9f9;
}

/* Desktop: open on hover (no JS needed) */
@media (min-width: 769px) {
	.nav-about:hover .submenu {
		display: block;
	}

	/* Keep caret rotated on hover too */
	.nav-about:hover > a::after {
		transform: rotate(180deg);
	}
}

/* Mobile: static position, indented border treatment */
@media (max-width: 768px) {
	.nav-about .submenu {
		position: static;
		box-shadow: none;
		border-top: none;
		border-left: 2px solid #cfae6b;
		border-radius: 0;
		margin-left: 16px;
		padding: 4px 0;
		background: transparent;
	}

	.nav-about .submenu a {
		padding: 8px 16px;
		color: #0d1013;
		font-size: 0.9rem;
	}

	.nav-about .submenu a:hover {
		background: transparent;
		color: #cfae6b;
	}
}


/* ============================================================
   SESSION 5 — Recalibrate Section
   Full-width event promo with parallax bg, dual overlay,
   countdown timer, and fade-up entrance animation.
   ============================================================ */

/* ── Section wrapper ───────────────────────────────────────── */
.cc-recalibrate {
	position: relative;
	width: 100%;
	min-height: 90vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	/* background-image moved to inline PHP style in front-page.php
	   so WordPress get_stylesheet_directory_uri() generates an
	   absolute URL — more reliable than CSS-relative paths in Local */
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

/* ── Overlay layer 1: dark gradient, bottom-weighted ───────── */
.cc-recalibrate-overlay--dark {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to bottom,
		rgba(10, 8, 5, 0.30)  0%,
		rgba(10, 8, 5, 0.62) 55%,
		rgba(10, 8, 5, 0.80) 100%
	);
}

/* ── Overlay layer 2: gold radiance upper-right (mirrors photo sun) */
.cc-recalibrate-overlay--gold {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: radial-gradient(
		ellipse at 80% 10%,
		rgba(207, 174, 107, 0.22) 0%,
		transparent 65%
	);
}

/* ── Content container ─────────────────────────────────────── */
.recalibrate-content {
	position: relative;
	z-index: 3;
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
	padding: 120px 24px;
	text-align: center;
}

/* ── 1. Eyebrow label ──────────────────────────────────────── */
.recalibrate-eyebrow {
	font-family: var(--font-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #cfae6b;
	margin-top: 0;
	margin-bottom: 18px;
}

/* ── 2. Gold divider ───────────────────────────────────────── */
.recalibrate-divider {
	width: 60px;
	height: 2px;
	background: #cfae6b;
	border-radius: 1px;
	margin: 0 auto 28px auto;
}

/* ── 3. Event title block ──────────────────────────────────── */
.recalibrate-title {
	margin: 0 0 32px 0;
	padding: 0;
	line-height: 1;
}

.event-title-main {
	display: block;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-style: italic;
	font-weight: 400;
	font-size: 88px;
	color: #ffffff;
	line-height: 1.0;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

.event-subtitle {
	display: block;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #cfae6b;
	line-height: 1.2;
}

/* ── 4. Date badge ─────────────────────────────────────────── */
.recalibrate-date-badge {
	display: inline-block;
	border: 1px solid rgba(207, 174, 107, 0.55);
	border-radius: 3px;
	padding: 10px 28px;
	background: rgba(207, 174, 107, 0.10);
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.10em;
	color: #ffffff;
	margin-bottom: 28px;
}

/* ── 5. Tagline ────────────────────────────────────────────── */
.recalibrate-tagline {
	font-family: var(--font-primary);
	font-weight: 400;
	font-size: 17px;
	color: rgba(255, 255, 255, 0.88);
	max-width: 540px;
	margin: 0 auto 40px auto;
	line-height: 1.7;
}

/* ── 6. Countdown timer ────────────────────────────────────── */
.recalibrate-countdown {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.countdown-block {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(207, 174, 107, 0.30);
	border-radius: 6px;
	padding: 16px 20px;
	min-width: 72px;
	text-align: center;
}

.countdown-number {
	display: block;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 36px;
	color: #cfae6b;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
}

.countdown-label {
	display: block;
	font-family: var(--font-primary);
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.60);
	margin-top: 4px;
}

/* ── 7. CTA button ─────────────────────────────────────────── */
.btn-recalibrate {
	display: inline-block;
	background: #cfae6b;
	color: #0d1013;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 52px;
	border-radius: 3px;
	transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-recalibrate:hover {
	background: #bca36d;
	color: #0d1013;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(207, 174, 107, 0.35);
	text-decoration: none;
}

/* ── 8. Fine print ─────────────────────────────────────────── */
.recalibrate-fine-print {
	font-family: var(--font-primary);
	font-weight: 400;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.40);
	letter-spacing: 0.08em;
	margin-top: 20px;
	margin-bottom: 0;
}

/* ── Entrance animation ────────────────────────────────────── */
.cc-recalibrate .recalibrate-content {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.75s ease, transform 0.75s ease;
}

.cc-recalibrate.in-view .recalibrate-content {
	opacity: 1;
	transform: translateY(0);
}

/* ── Responsive — mobile ───────────────────────────────────── */
@media (max-width: 768px) {
	.cc-recalibrate {
		background-attachment: scroll; /* disable parallax — iOS Safari bug */
		min-height: 100vh;
	}

	.recalibrate-content {
		padding: 80px 20px;
	}

	.event-title-main {
		font-size: 52px;
	}

	.event-subtitle {
		font-size: 16px;
		letter-spacing: 0.18em;
	}

	.recalibrate-countdown {
		gap: 12px;
	}

	.countdown-block {
		min-width: 58px;
		padding: 12px 10px;
	}

	.countdown-number {
		font-size: 26px;
	}

	.btn-recalibrate {
		display: block;
		padding: 14px 36px;
		width: 100%;
		max-width: 280px;
		margin-left: auto;
		margin-right: auto;
	}
}


/* ============================================================
   SESSION 6 — Site-Wide Animation Layer
   8 animations: hero entrance, scroll reveal, gold line draw,
   button pulse, card hover lifts, nav underline slide,
   countdown tick, social icon bounce.
   Pure CSS + vanilla JS (IntersectionObserver). No libraries.
   ============================================================ */

/* ----------------------------------------------------------
   A1 — Hero Entrance Sequence
   Staggers the 4 direct children of .cc-hero-text
   (h1, accent bar, p, ctas) via CSS animation on page load.
   ---------------------------------------------------------- */
@keyframes heroFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cc-hero-text > * {
	opacity: 0;
	transform: translateY(20px);
	animation: heroFadeUp 0.70s ease forwards;
}

.cc-hero-text > *:nth-child(1) { animation-delay: 0.10s; }
.cc-hero-text > *:nth-child(2) { animation-delay: 0.28s; }
.cc-hero-text > *:nth-child(3) { animation-delay: 0.44s; }
.cc-hero-text > *:nth-child(4) { animation-delay: 0.60s; }


/* ----------------------------------------------------------
   A2 — Scroll Reveal
   JS adds .revealed when element enters viewport (threshold 0.12).
   Delay variants via data-animate-delay="1..5".
   ---------------------------------------------------------- */
[data-animate] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].revealed {
	opacity: 1;
	transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.10s; }
[data-animate-delay="2"] { transition-delay: 0.20s; }
[data-animate-delay="3"] { transition-delay: 0.30s; }
[data-animate-delay="4"] { transition-delay: 0.40s; }
[data-animate-delay="5"] { transition-delay: 0.50s; }


/* ----------------------------------------------------------
   A3 — Gold Line Draw on Section Titles
   Overrides Session 4 static width: 48px.
   Starts at 0 and expands to 48px when .revealed is added by JS.
   ---------------------------------------------------------- */
.cc-section-title::before {
	width: 0;
	transition: width 0.60s ease 0.20s;
}

.cc-section-title.revealed::before {
	width: 48px;
}


/* ----------------------------------------------------------
   A4 — Button Pulse
   Gentle scale pulse on hero CTA buttons and Recalibrate CTA.
   Starts after hero entrance finishes (1.2s delay).
   ---------------------------------------------------------- */
@keyframes goldPulse {
	0%,
	100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(207, 174, 107, 0); }
	50%  { transform: scale(1.04); box-shadow: 0 0 0 8px rgba(207, 174, 107, 0); }
}

.cc-hero .cc-btn--gold,
.cc-hero .cc-btn--outline,
.btn-recalibrate {
	animation: goldPulse 2.8s ease-in-out infinite;
	animation-delay: 1.2s;
}


/* ----------------------------------------------------------
   A5 — Card Hover Lifts
   Event cards, value cards, and pathway step blocks.
   ---------------------------------------------------------- */
.cc-event-card {
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cc-event-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.cc-value-card {
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cc-value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(207, 174, 107, 0.18);
}

.cc-pathway-step {
	transition: transform 0.28s ease, border-color 0.25s ease, background 0.25s ease;
}

.cc-pathway-step:hover {
	transform: translateY(-4px);
}


/* ----------------------------------------------------------
   A6 — Nav Underline Slide
   Overrides Session 4 static active underline with animated
   slide-in on hover and active state.
   Excludes Give button (.cc-nav-give) and About caret (.nav-about).
   ---------------------------------------------------------- */
.cc-nav-list > li:not(.cc-nav-give):not(.nav-about) > a {
	position: relative;
	padding-bottom: 3px;
}

.cc-nav-list > li:not(.cc-nav-give):not(.nav-about) > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #cfae6b;
	transition: width 0.28s ease;
	border-radius: 1px;
	display: block;
	margin-top: 0;
}

.cc-nav-list > li:not(.cc-nav-give):not(.nav-about) > a:hover::after,
.cc-nav-list > li:not(.cc-nav-give):not(.nav-about) > a.active::after {
	width: 100%;
}

/* Ensure Give button pill never gets underline pseudo-element */
.cc-nav-give a::after {
	display: none !important;
}


/* ----------------------------------------------------------
   A7 — Countdown Tick
   JS removes and re-adds .ticking each second via void offsetWidth
   reflow to re-trigger the animation.
   ---------------------------------------------------------- */
@keyframes countTick {
	0%   { transform: scale(1); }
	40%  { transform: scale(1.12); }
	100% { transform: scale(1); }
}

.countdown-number.ticking {
	animation: countTick 0.30s ease;
}


/* ----------------------------------------------------------
   A8 — Social Icon Bounce
   Triggers on hover of each .cc-social-link anchor.
   ---------------------------------------------------------- */
@keyframes iconBounce {
	0%   { transform: translateY(0); }
	40%  { transform: translateY(-7px); }
	70%  { transform: translateY(-3px); }
	100% { transform: translateY(0); }
}

.cc-social-link:hover {
	animation: iconBounce 0.42s ease;
	transform: none;
	opacity: 1;
}


/* ----------------------------------------------------------
   Reduced Motion — Accessibility
   Strips all animation/transition for prefers-reduced-motion.
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.cc-hero-text > *,
	[data-animate],
	.countdown-number,
	.cc-social-link,
	.cc-btn,
	.btn-recalibrate,
	.cc-event-card,
	.cc-value-card,
	.cc-pathway-step {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}

	.cc-section-title::before {
		width: 48px !important;
		transition: none !important;
	}
}


/* ----------------------------------------------------------
   Mobile — Disable parallax background-attachment: fixed
   (causes jank/black-flash on iOS Safari and Android Chrome)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
	#hero,
	.cc-recalibrate {
		background-attachment: scroll;
	}
}


/* ============================================================
   SESSION 7 — Cinematic Sermon Section
   Full redesign of #sermons: dark cinematic bg, custom player,
   gold pulsing play button, live dot, typewriter title,
   platform badges footer.
   ============================================================ */

/* ----------------------------------------------------------
   Section wrapper
   ---------------------------------------------------------- */
.cc-sermons-cinematic {
	background-color: #0d1013;
	padding: 100px 0 80px 0;
	position: relative;
	overflow: hidden;
}

/* Atmospheric gold glow layer */
.cc-sermons-cinematic::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse at 18% 50%,
			rgba(207, 174, 107, 0.07) 0%,
			transparent 58%
		),
		radial-gradient(
			ellipse at 82% 28%,
			rgba(207, 174, 107, 0.05) 0%,
			transparent 52%
		);
	pointer-events: none;
	z-index: 0;
}


/* ----------------------------------------------------------
   Section header
   ---------------------------------------------------------- */
.sermons-header {
	text-align: center;
	margin-bottom: 52px;
}

/* Eyebrow label with flanking gold lines */
.sermons-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: 'Poppins', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: #cfae6b;
	margin: 0 0 16px 0;
}

.eyebrow-line {
	display: inline-block;
	width: 36px;
	height: 1px;
	background: #cfae6b;
	opacity: 0.55;
	flex-shrink: 0;
}

/* Live availability row */
.sermons-live-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
}

@keyframes livePulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(207, 174, 107, 0.70);
		opacity: 1;
	}
	50% {
		box-shadow: 0 0 0 9px rgba(207, 174, 107, 0);
		opacity: 0.85;
	}
}

.live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #cfae6b;
	flex-shrink: 0;
	animation: livePulse 1.9s ease-in-out infinite;
}

.sermons-live-label {
	font-family: 'Poppins', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.50);
}

/* Sermon title — typewriter target */
.sermon-title-reveal {
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0 0 12px 0;
	visibility: hidden; /* JS reveals before typing */
	min-height: 1.2em;  /* prevent layout shift while hidden */
}

/* Pastor byline */
.sermon-byline {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.48);
	letter-spacing: 0.06em;
	margin: 0;
}


/* ----------------------------------------------------------
   Cinematic video player
   ---------------------------------------------------------- */
.sermon-player-wrap {
	position: relative;
	width: 100%;
	max-width: 860px;
	margin: 0 auto 52px auto;
	border-radius: 10px;
	overflow: hidden;
	box-shadow:
		0 0 0 1px rgba(207, 174, 107, 0.18),
		0 32px 80px rgba(0, 0, 0, 0.68),
		0 0 70px rgba(207, 174, 107, 0.07);
}

/* 16:9 aspect ratio lock for both thumbnail and iframe states */
.sermon-thumbnail,
.sermon-iframe-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.sermon-thumb-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease, filter 0.40s ease;
	cursor: pointer;
}

.sermon-thumbnail:hover .sermon-thumb-img {
	transform: scale(1.035);
	filter: brightness(0.78);
}

.sermon-thumb-overlay {
	position: absolute;
	inset: 0;
	background: rgba(13, 16, 19, 0.35);
	transition: background 0.30s ease;
	pointer-events: none;
}

.sermon-thumbnail:hover .sermon-thumb-overlay {
	background: rgba(13, 16, 19, 0.52);
}

/* Gold play button */
.sermon-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 82px;
	height: 82px;
	background: #cfae6b;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.28s ease, background 0.28s ease,
	            box-shadow 0.28s ease;
	padding: 0;
}

.sermon-play-btn:hover {
	background: #bca36d;
	transform: translate(-50%, -50%) scale(1.12);
	box-shadow: 0 0 32px rgba(207, 174, 107, 0.50);
}

.play-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sermon-play-btn svg {
	width: 28px;
	height: 28px;
	margin-left: 5px; /* optical centre for play triangle */
}

/* Pulsing rings behind play button */
.play-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 2px solid rgba(207, 174, 107, 0.42);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.play-ring-1 {
	width: 116px;
	height: 116px;
	animation: ringPulse 2.4s ease-out infinite;
}

.play-ring-2 {
	width: 150px;
	height: 150px;
	animation: ringPulse 2.4s ease-out infinite 0.60s;
}

@keyframes ringPulse {
	0% {
		transform: translate(-50%, -50%) scale(0.86);
		opacity: 0.82;
	}
	100% {
		transform: translate(-50%, -50%) scale(1.22);
		opacity: 0;
	}
}

/* Pause rings on hover so they don't distract from the button state */
.sermon-thumbnail:hover .play-ring {
	animation-play-state: paused;
}

/* iframe injected after click */
.sermon-iframe-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


/* ----------------------------------------------------------
   Section footer: action buttons + platform badges
   ---------------------------------------------------------- */
.sermons-section-footer {
	text-align: center;
}

/* Row 1 — Action buttons */
.sermons-footer-btns {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.btn-sermons-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #cfae6b;
	color: #0d1013;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 38px;
	border-radius: 3px;
	border: 2px solid #cfae6b;
	transition: background 0.25s ease, transform 0.22s ease,
	            border-color 0.25s ease;
}

.btn-sermons-primary:hover {
	background: #bca36d;
	border-color: #bca36d;
	transform: translateY(-2px);
	color: #0d1013;
	text-decoration: none;
}

.btn-sermons-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: #cfae6b;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 38px;
	border-radius: 3px;
	border: 1px solid rgba(207, 174, 107, 0.48);
	transition: border-color 0.25s ease, background 0.25s ease,
	            transform 0.22s ease;
}

.btn-sermons-outline:hover {
	border-color: #cfae6b;
	background: rgba(207, 174, 107, 0.08);
	transform: translateY(-2px);
	color: #cfae6b;
	text-decoration: none;
}

/* Row 2 — Platform badges */
.watch-online-badges {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.watch-label {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.36);
	letter-spacing: 0.06em;
}

.watch-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.48);
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 400;
	text-decoration: none;
	padding: 7px 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;
	transition: color 0.22s ease, border-color 0.22s ease,
	            background 0.22s ease;
}

.watch-badge:hover {
	color: #cfae6b;
	border-color: rgba(207, 174, 107, 0.48);
	background: rgba(207, 174, 107, 0.06);
	text-decoration: none;
}


/* ----------------------------------------------------------
   Typewriter cursor
   ---------------------------------------------------------- */
.type-cursor {
	display: inline-block;
	color: #cfae6b;
	font-weight: 300;
	margin-left: 2px;
	animation: cursorBlink 0.78s step-end infinite;
}

@keyframes cursorBlink {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0; }
}

@keyframes cursorFade {
	to { opacity: 0; width: 0; margin: 0; }
}


/* ----------------------------------------------------------
   Reduced motion — SESSION 7 elements
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.live-dot    { animation: none; }
	.play-ring   { animation: none; }
	.type-cursor { animation: none; }
	.sermon-thumb-img  { transition: none; }
	.sermon-thumb-overlay { transition: none; }
	.sermon-play-btn   { transition: none; }
	.btn-sermons-primary,
	.btn-sermons-outline,
	.watch-badge { transition: none; }
}


/* ----------------------------------------------------------
   Mobile — max-width: 768px
   ---------------------------------------------------------- */
@media (max-width: 768px) {
	.cc-sermons-cinematic {
		padding: 70px 20px 60px 20px;
	}

	.sermon-player-wrap {
		max-width: 100%;
		border-radius: 8px;
	}

	.sermon-title-reveal {
		font-size: 28px;
	}

	.sermon-play-btn {
		width: 66px;
		height: 66px;
	}

	.sermon-play-btn svg {
		width: 22px;
		height: 22px;
		margin-left: 4px;
	}

	.play-ring-1 {
		width: 92px;
		height: 92px;
	}

	.play-ring-2 {
		width: 118px;
		height: 118px;
	}

	.sermons-footer-btns .btn-sermons-primary,
	.sermons-footer-btns .btn-sermons-outline {
		width: 100%;
		max-width: 300px;
	}

	.watch-online-badges {
		gap: 8px;
	}
}


/* ============================================================
   SESSION 7b — Sermon Section Light Theme Conversion
   Overrides Session 7 dark/cinematic rules.
   Scoped entirely under .cc-sermons-cinematic.
   Append only — Session 7 rules are preserved below.
   ============================================================ */

/* ----------------------------------------------------------
   Section wrapper — light background + separator borders
   ---------------------------------------------------------- */
.cc-sermons-cinematic {
	background-color: #f4f4f6;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
}

/* Atmosphere layer — subtle warm gold on white/light bg */
.cc-sermons-cinematic::before {
	background:
		radial-gradient(
			ellipse at 18% 50%,
			rgba(207, 174, 107, 0.05) 0%,
			transparent 58%
		),
		radial-gradient(
			ellipse at 82% 28%,
			rgba(207, 174, 107, 0.04) 0%,
			transparent 52%
		);
}


/* ----------------------------------------------------------
   Text — dark on light
   ---------------------------------------------------------- */
.cc-sermons-cinematic .sermon-title-reveal {
	color: #0d1013;
}

.cc-sermons-cinematic .sermons-live-label {
	color: #626567;
}

.cc-sermons-cinematic .sermon-byline {
	color: #626567;
}

.cc-sermons-cinematic .watch-label {
	color: #626567;
}


/* ----------------------------------------------------------
   Video player wrapper — light shadow
   ---------------------------------------------------------- */
.cc-sermons-cinematic .sermon-player-wrap {
	box-shadow:
		0 0 0 1px rgba(207, 174, 107, 0.20),
		0 20px 60px rgba(0, 0, 0, 0.12),
		0 0 40px rgba(207, 174, 107, 0.06);
}


/* ----------------------------------------------------------
   Thumbnail overlays — lighter so photo reads on light bg
   ---------------------------------------------------------- */
.cc-sermons-cinematic .sermon-thumb-overlay {
	background: rgba(13, 16, 19, 0.18);
}

.cc-sermons-cinematic .sermon-thumbnail:hover .sermon-thumb-overlay {
	background: rgba(13, 16, 19, 0.30);
}


/* ----------------------------------------------------------
   Platform badge pills — dark borders on light bg
   ---------------------------------------------------------- */
.cc-sermons-cinematic .watch-badge {
	color: #626567;
	border-color: rgba(0, 0, 0, 0.12);
}

.cc-sermons-cinematic .watch-badge:hover {
	color: #cfae6b;
	border-color: rgba(207, 174, 107, 0.55);
	background: rgba(207, 174, 107, 0.10);
}


/* ----------------------------------------------------------
   Outline CTA button — slightly stronger border on light bg
   ---------------------------------------------------------- */
.cc-sermons-cinematic .btn-sermons-outline {
	border-color: rgba(207, 174, 107, 0.60);
}

.cc-sermons-cinematic .btn-sermons-outline:hover {
	border-color: #cfae6b;
	background: rgba(207, 174, 107, 0.10);
}


/* ============================================================
   SESSION 9 — Footer Light Theme Conversion
   Overrides dark footer from Session 1.
   Every rule scoped under .cc-footer.
   Gold accent line (border-top: 2px solid var(--color-gold))
   and Give Online button are intentionally untouched.
   ============================================================ */

/* ----------------------------------------------------------
   Footer wrapper — light background + top separator border
   ---------------------------------------------------------- */
.cc-footer {
	background-color: #f4f4f6;
	border-top: 1px solid #e0e0e0;
}

/* ----------------------------------------------------------
   Logo — remove dark-bg invert filter; show original colors
   ---------------------------------------------------------- */
.cc-footer .cc-footer-logo {
	filter: none;
}

/* ----------------------------------------------------------
   Tagline
   ---------------------------------------------------------- */
.cc-footer .cc-footer-tagline {
	color: #626567;
}

/* ----------------------------------------------------------
   Column headings (QUICK LINKS, VISIT US)
   Were gold on dark — now dark on light
   ---------------------------------------------------------- */
.cc-footer .cc-footer-heading {
	color: #0d1013;
}

/* ----------------------------------------------------------
   Quick Links nav
   ---------------------------------------------------------- */
.cc-footer .cc-footer-links a {
	color: #333333;
}

.cc-footer .cc-footer-links a:hover {
	color: var(--color-gold); /* stays gold */
}

/* ----------------------------------------------------------
   Address block — body text, bold line, email link
   ---------------------------------------------------------- */
.cc-footer .cc-footer-address p {
	color: #333333;
}

.cc-footer .cc-footer-address strong {
	color: #0d1013; /* "Sundays at 10:00 AM" — keep strong emphasis */
}

.cc-footer .cc-footer-address a {
	color: #333333;
}

.cc-footer .cc-footer-address a:hover {
	color: var(--color-gold); /* stays gold */
}

/* ----------------------------------------------------------
   Copyright bar — light gray bg, gold accent line preserved
   border-top: 2px solid var(--color-gold) is NOT overridden
   ---------------------------------------------------------- */
.cc-footer-bar {
	background-color: #e8e8e8;
}

.cc-footer-bar p {
	color: #626567;
}

/* ----------------------------------------------------------
   Sermon video lightbox modal
   ---------------------------------------------------------- */
.cc-yt-modal { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.25s ease; }
.cc-yt-modal:not([hidden]) { opacity:1; pointer-events:all; }
.cc-yt-modal__backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.88); cursor:pointer; }
.cc-yt-modal__box { position:relative; z-index:1; width:90vw; max-width:960px; }
.cc-yt-modal__close { position:absolute; top:-2.5rem; right:0; background:none; border:none; color:#ffffff; font-size:2rem; line-height:1; cursor:pointer; padding:0.25rem 0.5rem; transition:color 0.2s; }
.cc-yt-modal__close:hover { color:#cfae6b; }
.cc-yt-modal__player { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; border-radius:8px; background:#000; }
.cc-yt-modal__player iframe { position:absolute; inset:0; width:100%; height:100%; border:none; }


/* ================================================
   Church Center Modal — iOS-safe iframe containment
   Applies to all four Church Center modals:
     #crown-give-overlay, #crown-groups-overlay,
     #crown-serve-overlay, #crown-visit-overlay
   ================================================ */

.cc-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.75);
	align-items: center;
	justify-content: center;
}

.cc-modal-overlay.is-open {
	display: flex;
}

.cc-modal-box {
	position: relative;
	width: 100%;
	max-width: 700px;
	height: 88vh;
	max-height: 88vh;
	background: #fff;
	border-radius: 8px;
	border-top: 4px solid #cfae6b;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	display: flex;
	flex-direction: column;
}

.cc-modal-close {
	position: absolute;
	top: 10px;
	right: 14px;
	z-index: 10;
	background: transparent;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: #1b252f;
	cursor: pointer;
	padding: 4px 8px;
}

.cc-modal-close:hover {
	color: #cfae6b;
}

.cc-modal-scroll-wrap {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	position: relative;
	width: 100%;
	min-height: 0;
}

.cc-modal-scroll-wrap iframe {
	display: block;
	width: 100%;
	height: 900px;
	border: none;
}

/* Prevent body scroll behind open modal on iOS */
body.modal-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

/* ── Visit modal: form-only mode ── */
.cc-modal-box.modal--form-only .modal-header       { display: none; }
.cc-modal-box.modal--form-only .modal-service-info { display: none; }
.cc-modal-box.modal--form-only .modal-map          { display: none; }
.cc-modal-box.modal--form-only .modal-divider      { display: none; }

.cc-modal-box.modal--form-only .modal-connect-label {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #1b252f;
	letter-spacing: 0;
	text-transform: none;
	text-align: center;
	margin: 28px 0 16px 0;
	padding: 0 40px;
}
