/*
 Theme Name:   Bradford Christian Fellowship
 Theme URI:    https://bcfchurch.co.uk/
 Description:  Bradford Christian Fellowship — Child Theme based on Faith & Hope by AncoraThemes. A Christ centred church in Bradford where everyone belongs.
 Author:       BCF Web Team
 Template:     faith-hope
 Version:      1.0.0
 Text Domain:  faith-hope
*/

/* =======================================================
   BCF Custom Styles — inherits Faith & Hope colour palette
   Primary Gold  : #DBB66D  (text_link)
   Hover Gold    : #BF994D  (text_hover)
   Dark Brown    : #240C00  (text_dark)
   Body BG       : #F8F5EB  (bg_color)
   Body Text     : #7C7874  (text)
   Dark Scheme BG: #130701
   ======================================================= */

/* ── HERO / SLIDER ─────────────────────────────────── */
.bcf-hero {
	position: relative;
	min-height: 100vh;
	background-color: #130701;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}
.bcf-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(5,2,0,0.65) 50%, rgba(15,6,0,0.85) 100%);
	z-index: 1;
	pointer-events: none;
}
.bcf-hero::before {
	display: none;
}
.bcf-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
	padding: 5rem 2rem 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.bcf-hero-tag {
	display: inline-block;
	font-size: 0.94em;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: #DBB66D;
	margin-bottom: 1.2rem;
	font-weight: 600;
}
/* ── Hero church name (replaces image logo in hero) ─── */
.bcf-hero-name-block {
	margin: 0.5rem auto 2rem;
	text-align: center;
}
.bcf-hero-name-main {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(2.8rem, 6vw, 5rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.05;
	letter-spacing: 0.04em;
	display: block;
}
.bcf-hero-name-main span { color: #DBB66D; }
.bcf-hero-name-sub {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.32rem;
	font-weight: 400;
	font-style: italic;
	color: #DBB66D;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	display: block;
	margin-top: 6px;
}
.bcf-hero h1 {
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	line-height: 1.1;
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 700;
}
.bcf-hero h1 span { color: #DBB66D; }
.bcf-hero-tagline {
	font-size: 1.29em;
	font-style: italic;
	color: rgba(255,255,255,0.7);
	margin-bottom: 0.5rem;
}
.bcf-hero-verse {
	font-size: 1.0em;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.08em;
	margin-bottom: 2.5rem;
}
.bcf-hero-btns {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.bcf-btn {
	display: inline-block;
	padding: 14px 36px;
	border-radius: 2px;
	font-size: 1.02em;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.25s;
	cursor: pointer;
}
.bcf-btn-primary {
	background: #DBB66D;
	color: #130701 !important;
	border: 2px solid #DBB66D;
}
.bcf-btn-primary:hover {
	background: #BF994D;
	border-color: #BF994D;
	color: #130701 !important;
}
.bcf-btn-outline {
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255,255,255,0.4);
}
.bcf-btn-outline:hover {
	border-color: #DBB66D;
	color: #DBB66D !important;
}

/* ── SERVICE TIMES BANNER ──────────────────────────── */
.bcf-service-banner {
	background: #240C00;
	padding: 14px 0;
	overflow: hidden;
	border-bottom: 1px solid rgba(219,182,109,0.2);
}
.bcf-ticker-track {
	display: flex;
	gap: 3.5rem;
	width: max-content;
	animation: bcf-ticker 28s linear infinite;
}
.bcf-ticker-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,0.65);
	font-size: 1.02em;
	white-space: nowrap;
}
.bcf-ticker-item::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #DBB66D;
	flex-shrink: 0;
}
@keyframes bcf-ticker {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ── SECTION COMMONS ───────────────────────────────── */
.bcf-section {
	padding: 5rem 0;
}
.bcf-section.bcf-dark {
	background: #130701;
	color: #CAC2C0;
}
.bcf-section.bcf-cream {
	background: #F8F5EB;
}
.bcf-section.bcf-white {
	background: #fff;
}
.bcf-wrap {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 2rem;
}
.bcf-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.88em;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #DBB66D;
	margin-bottom: 0.8rem;
}
.bcf-eyebrow::before {
	content: '';
	width: 28px;
	height: 2px;
	background: #DBB66D;
}
.bcf-section-title {
	font-size: clamp(1.9rem, 3.5vw, 2.8rem);
	font-weight: 700;
	line-height: 1.15;
	color: #240C00;
	margin-bottom: 0.8rem;
}
.bcf-dark .bcf-section-title { color: #F8F2F1; }
.bcf-divider {
	width: 56px;
	height: 3px;
	background: linear-gradient(90deg, #DBB66D, #BF994D);
	margin: 1rem 0 2rem;
}
.bcf-section-sub {
	font-size: 1.15em;
	line-height: 1.8;
	color: #7C7874;
	max-width: 600px;
}
.bcf-dark .bcf-section-sub { color: rgba(202,194,192,0.75); }

/* ── ABOUT GRID ────────────────────────────────────── */
.bcf-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}
.bcf-about-img {
	position: relative;
}
.bcf-about-img img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}
.bcf-about-badge {
	position: absolute;
	bottom: -24px;
	right: -24px;
	width: 130px;
	height: 130px;
	background: #240C00;
	border-radius: 50%;
	border: 4px solid #F8F5EB;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.bcf-about-badge strong {
	font-size: 1.79em;
	font-weight: 900;
	color: #DBB66D;
	line-height: 1;
}
.bcf-about-badge span {
	font-size: 0.81em;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.45);
}
.bcf-about-stats {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(219,182,109,0.25);
}
.bcf-stat-num {
	font-size: 2.02em;
	font-weight: 900;
	color: #DBB66D;
	line-height: 1;
}
.bcf-stat-lbl {
	font-size: 0.92em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #A79E99;
	margin-top: 4px;
}

/* ── WELCOME / PASTOR ──────────────────────────────── */
.bcf-welcome-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}
.bcf-welcome-text p {
	color: rgba(202,194,192,0.75);
	font-size: 1.15em;
	line-height: 1.85;
	font-weight: 300;
	margin-bottom: 1rem;
}
.bcf-pastor-sig {
	font-size: 1.46em;
	font-style: italic;
	color: #DBB66D;
	margin-top: 1.5rem;
}
.bcf-welcome-img {
	position: relative;
}
.bcf-welcome-img img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}
.bcf-welcome-img-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(19,7,1,0.92), transparent);
	padding: 2rem 1.5rem 1.5rem;
	border-radius: 0 0 4px 4px;
}
.bcf-welcome-img-caption h4 {
	font-size: 1.26em;
	font-weight: 700;
	color: #fff;
	margin: 0 0 3px;
}
.bcf-welcome-img-caption p {
	font-size: 0.9em;
	color: #DBB66D;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0;
}

/* ── VISION / MISSION CARDS ────────────────────────── */
.bcf-vmv-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1.5rem;
}
.bcf-vmv-card {
	padding: 2.5rem 2rem;
	border-radius: 4px;
}
.bcf-vmv-card.light {
	background: #fff;
	border-top: 3px solid #DBB66D;
}
.bcf-vmv-card.dark {
	background: #240C00;
}
.bcf-vmv-card h3 {
	font-size: 1.34em;
	font-weight: 700;
	color: #240C00;
	margin: 0.5rem 0 1rem;
}
.bcf-vmv-card.dark h3 { color: #F8F2F1; }
.bcf-vmv-card p {
	font-size: 1.1em;
	line-height: 1.75;
	color: #7C7874;
	font-weight: 300;
}
.bcf-vmv-card.dark p { color: rgba(202,194,192,0.65); }
.bcf-vmv-card blockquote {
	font-family: Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: 1.15em;
	line-height: 1.75;
	color: #7C7874;
	border: none;
	padding: 0;
	margin: 0;
}

/* ── VALUES GRID ───────────────────────────────────── */
.bcf-values-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1.4rem;
	margin-top: 3rem;
}
.bcf-value-card {
	background: #fff;
	padding: 2.2rem 1.8rem;
	border-radius: 4px;
	border: 1px solid rgba(219,182,109,0.2);
	position: relative;
	overflow: hidden;
	transition: transform 0.25s, box-shadow 0.25s;
}
.bcf-value-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(36,12,0,0.1);
}
.bcf-value-card::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, #DBB66D, #BF994D);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}
.bcf-value-card:hover::after { transform: scaleX(1); }
.bcf-value-icon {
	width: 50px; height: 50px;
	background: rgba(219,182,109,0.12);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.46rem;
	margin-bottom: 1.2rem;
}
.bcf-value-card h3 {
	font-size: 1.26em;
	font-weight: 700;
	color: #240C00;
	margin-bottom: 0.6rem;
}
.bcf-value-card p {
	font-size: 1.06em;
	line-height: 1.7;
	color: #7C7874;
	font-weight: 300;
}
.bcf-value-ref {
	display: block;
	font-size: 0.82em;
	color: #DBB66D;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-top: 0.1rem;
	margin-bottom: 0.85rem;
}

/* ── SERVICES ──────────────────────────────────────── */
.bcf-services-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1.4rem;
	margin-top: 3rem;
}
.bcf-service-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(219,182,109,0.18);
	border-radius: 4px;
	padding: 2.2rem 1.8rem;
	transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.bcf-service-card:hover {
	background: rgba(219,182,109,0.07);
	border-color: rgba(219,182,109,0.45);
	transform: translateY(-4px);
}
.bcf-service-card.featured {
	background: #DBB66D;
	border-color: #DBB66D;
}
.bcf-service-day {
	font-size: 0.92em;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #DBB66D;
	margin-bottom: 0.4rem;
}
.bcf-service-card.featured .bcf-service-day { color: #130701; }
.bcf-service-card h3 {
	font-size: 1.57em;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.3rem;
}
.bcf-service-card.featured h3 { color: #130701; }
.bcf-service-time {
	font-size: 1.09em;
	font-weight: 300;
	color: rgba(255,255,255,0.55);
	margin-bottom: 0.8rem;
}
.bcf-service-card.featured .bcf-service-time { color: rgba(19,7,1,0.65); }
.bcf-service-card p {
	font-size: 1.06em;
	line-height: 1.7;
	color: rgba(255,255,255,0.5);
	font-weight: 300;
}
.bcf-service-card.featured p { color: rgba(19,7,1,0.65); }
.bcf-mode-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.45);
	font-size: 0.92em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 20px;
	margin-top: 1rem;
}
.bcf-service-card.featured .bcf-mode-pill {
	background: rgba(19,7,1,0.12);
	color: #130701;
}

/* ── YOUTUBE / MEDIA ───────────────────────────────── */
.bcf-yt-featured {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 30px 60px rgba(36,12,0,0.25);
	margin-bottom: 1.8rem;
}
.bcf-yt-featured iframe {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	border: 0;
}
.bcf-yt-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1.2rem;
}
.bcf-yt-thumb {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 8px 24px rgba(36,12,0,0.12);
}
.bcf-yt-thumb iframe {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	border: 0;
}

/* ── MINISTRIES ────────────────────────────────────── */
.bcf-min-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4rem;
	margin-top: 3rem;
}
.bcf-min-card {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	height: 360px;
}
.bcf-min-card img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
	display: block;
}
.bcf-min-card:hover img { transform: scale(1.06); }
.bcf-min-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(19,7,1,0.92) 0%, rgba(19,7,1,0.25) 60%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem;
}
.bcf-min-tag {
	font-size: 0.92em;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #DBB66D;
	margin-bottom: 0.4rem;
}
.bcf-min-card h3 {
	font-size: 1.9em;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.6rem;
}
.bcf-min-card p {
	font-size: 1.06em;
	line-height: 1.65;
	color: rgba(255,255,255,0.65);
	font-weight: 300;
}

/* ── LEADERSHIP ────────────────────────────────────── */
.bcf-leader-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 2rem;
	margin-top: 3rem;
	justify-items: center;
}
/* Centre the last row (cards 4 & 5) when grid has 3 columns */
/* Card 4 starts at column 1 of row 2 — push it to column 2 start */
.bcf-leader-card:nth-child(3n+1):last-child,
.bcf-leader-card:nth-last-child(2):nth-child(3n+1) {
	grid-column: 1 / span 1;
}
/* Two remaining cards in last row — span middle columns */
.bcf-leader-grid:has(.bcf-leader-card:nth-child(5)) .bcf-leader-card:nth-child(4) {
	grid-column: 1 / 2;
	margin-left: auto;
}
.bcf-leader-grid:has(.bcf-leader-card:nth-child(5)) .bcf-leader-card:nth-child(5) {
	grid-column: 2 / 3;
	margin-right: auto;
}
/* Fallback for browsers without :has() — use a wrapper trick via justify-content */
.bcf-leader-grid {
	justify-content: center;
}
.bcf-leader-card {
	text-align: center;
}
.bcf-leader-avatar {
	width: 150px; height: 150px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 1.4rem;
	border: 3px solid rgba(219,182,109,0.25);
	position: relative;
}
.bcf-leader-avatar::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid #DBB66D;
	opacity: 0.35;
}
.bcf-leader-avatar img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.bcf-leader-card h4 {
	font-size: 1.34em;
	font-weight: 700;
	color: #240C00;
	margin-bottom: 3px;
}
.bcf-leader-role {
	font-size: 0.88em;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #DBB66D;
	margin-bottom: 0;
}
.bcf-leader-card p {
	font-size: 1.06em;
	line-height: 1.7;
	color: #7C7874;
	font-weight: 300;
}
.bcf-ministers-box {
	margin-top: 3rem;
	background: #fff;
	border: 1px solid rgba(219,182,109,0.2);
	border-radius: 4px;
	padding: 2.5rem;
	text-align: center;
}
.bcf-ministers-box h3 {
	font-size: 1.57em;
	font-weight: 700;
	color: #240C00;
	margin-bottom: 1.2rem;
}
.bcf-ministers-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem;
}
.bcf-minister-pill {
	background: rgba(219,182,109,0.1);
	color: #240C00;
	border: 1px solid rgba(219,182,109,0.3);
	padding: 6px 18px;
	border-radius: 30px;
	font-size: 1.06em;
	font-weight: 500;
}

/* ── CALENDAR ──────────────────────────────────────── */
.bcf-cal-year {
	display: inline-block;
	background: #DBB66D;
	color: #130701;
	font-size: 0.88em;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 2px;
	margin-bottom: 1.2rem;
}
.bcf-cal-grid {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.bcf-cal-row {
	display: grid;
	grid-template-columns: 120px 1fr 140px;
	align-items: center;
	padding: 1rem 1.4rem;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(219,182,109,0.1);
	border-radius: 3px;
	transition: background 0.2s, border-color 0.2s;
}
.bcf-cal-row:hover,
.bcf-cal-row.highlight {
	background: rgba(219,182,109,0.07);
	border-color: rgba(219,182,109,0.28);
}
.bcf-cal-month {
	font-size: 0.88em;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #DBB66D;
}
.bcf-cal-event {
	font-size: 1.03em;
	color: rgba(255,255,255,0.8);
}
.bcf-cal-date {
	font-size: 0.98em;
	color: rgba(255,255,255,0.35);
	text-align: right;
}

/* ── VISIT / CONTACT ───────────────────────────────── */
.bcf-visit-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}
.bcf-contact-item {
	display: flex;
	gap: 1.2rem;
	align-items: flex-start;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(219,182,109,0.15);
}
.bcf-contact-item:last-of-type { border-bottom: none; }
.bcf-contact-icon {
	width: 46px; height: 46px;
	background: #240C00;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.32rem;
	flex-shrink: 0;
}
.bcf-contact-item h4 {
	font-size: 1.15em;
	font-weight: 700;
	color: #240C00;
	margin-bottom: 4px;
}
.bcf-contact-item p,
.bcf-contact-item a {
	font-size: 1.1em;
	color: #7C7874;
	font-weight: 300;
	line-height: 1.65;
	text-decoration: none;
}
.bcf-contact-item a:hover { color: #DBB66D; }
.bcf-map-wrap {
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(36,12,0,0.12);
}
.bcf-map-wrap iframe { display: block; }
.bcf-expect-list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.7rem;
	margin-top: 1.8rem;
}
.bcf-expect-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.1em;
	color: #7C7874;
}
.bcf-expect-list li::before {
	content: '';
	width: 18px; height: 18px;
	border-radius: 50%;
	background: rgba(219,182,109,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23DBB66D' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
	flex-shrink: 0;
}

/* ── GIVING ────────────────────────────────────────── */
.bcf-giving-box {
	display: inline-grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 2.5rem auto;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(219,182,109,0.25);
	padding: 2rem 3rem;
	border-radius: 4px;
}
.bcf-giving-lbl {
	font-size: 0.88em;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.35);
	margin-bottom: 4px;
}
.bcf-giving-val {
	font-size: 1.46em;
	font-weight: 700;
	color: #fff;
}
.bcf-giving-note {
	font-size: 1.02em;
	color: rgba(255,255,255,0.35);
	font-style: italic;
	margin-top: 1rem;
}

/* ── FOOTER NAME & TAGLINE ─────────────────────────── */
.bcf-footer-name-link {
	text-decoration: none !important;
	display: block;
	margin-bottom: 0.5rem;
}
.bcf-footer-name-top {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.68rem;
	font-weight: 700;
	color: #F8F2F1;
	letter-spacing: 0.05em;
	display: block;
	transition: color 0.2s;
}
.bcf-footer-name-link:hover .bcf-footer-name-top {
	color: #DBB66D;
}
.bcf-footer-tagline {
	font-style: italic;
	color: rgba(219,182,109,0.5);
	font-size: 1.06em;
	margin: 0;
	font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
	.bcf-about-grid,
	.bcf-welcome-grid,
	.bcf-visit-grid { grid-template-columns: 1fr; gap: 2rem; }
	.bcf-about-badge { right: 10px; bottom: -16px; }
	.bcf-values-grid { grid-template-columns: 1fr 1fr; }
	.bcf-services-grid { grid-template-columns: 1fr; }
	.bcf-vmv-grid { grid-template-columns: 1fr; }
	.bcf-min-grid { grid-template-columns: 1fr; }
	.bcf-leader-grid { grid-template-columns: 1fr 1fr; }
	.bcf-yt-grid { grid-template-columns: 1fr; }
	.bcf-cal-row { grid-template-columns: 1fr; gap: 4px; }
	.bcf-cal-date { text-align: left; }
	.bcf-giving-box { grid-template-columns: 1fr; text-align: center; padding: 1.5rem 2rem; }
}
@media (max-width: 600px) {
	.bcf-values-grid { grid-template-columns: 1fr; }
	.bcf-leader-grid { grid-template-columns: 1fr; }
	.bcf-expect-list { grid-template-columns: 1fr; }
	.bcf-hero h1 { font-size: 2.24rem; }
}

/* ══════════════════════════════════════════════════════
   BCF NAVIGATION MENU STYLES
   ══════════════════════════════════════════════════════ */

/* ── Give button stands out as a gold CTA ─────────── */
.menu-item a[href*="/give/"],
.nav-menu .menu-item a[href*="give"] {
	background: #DBB66D !important;
	color: #130701 !important;
	padding: 7px 18px !important;
	border-radius: 3px !important;
	font-weight: 700 !important;
	transition: background 0.2s !important;
}
.menu-item a[href*="/give/"]:hover,
.nav-menu .menu-item a[href*="give"]:hover {
	background: #BF994D !important;
	color: #130701 !important;
}

/* ── Active menu item highlight ───────────────────── */
.current-menu-item > a,
.current_page_item > a,
.current-menu-ancestor > a {
	color: #DBB66D !important;
}

/* ── Dropdown sub-menu styling ─────────────────────── */
.sub-menu {
	background: #fff !important;
	border-top: 2px solid #DBB66D !important;
	box-shadow: 0 8px 32px rgba(36,12,0,0.12) !important;
	border-radius: 0 0 6px 6px !important;
	min-width: 220px !important;
}
.sub-menu li a {
	color: #7C7874 !important;
	font-size: 1.1em !important;
	padding: 9px 18px !important;
	display: block;
	border-bottom: 1px solid rgba(219,182,109,0.1);
	transition: color 0.2s, background 0.2s;
}
.sub-menu li:last-child a { border-bottom: none; }
.sub-menu li a:hover {
	color: #240C00 !important;
	background: rgba(219,182,109,0.07) !important;
}

/* ── Mobile menu ───────────────────────────────────── */
@media (max-width: 900px) {
	.menu-item a[href*="/give/"],
	.nav-menu .menu-item a[href*="give"] {
		display: inline-block !important;
		margin: 4px 0 !important;
	}
}

/* ══════════════════════════════════════════════════════
   ELEMENTOR COMPATIBILITY STYLES
   ══════════════════════════════════════════════════════ */

/* ── Elementor editor body class resets ─────────────── */
.elementor-editor-active .bcf-hero,
.elementor-editor-active .bcf-section {
	/* Allow Elementor to manage padding when editing */
	min-height: auto;
}

/* ── Elementor full-width: remove page wrapper constraints ── */
.bcf-elementor-canvas body,
.elementor-page .page_content_wrap,
.elementor-page .content_wrap {
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* ── Full-width template: no sidebar constraint ─────── */
.bcf-full-width-page,
.elementor-page .post_content {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
}

/* ── Elementor container uses BCF colours ───────────── */
.elementor-widget-container h1,
.elementor-widget-container h2,
.elementor-widget-container h3,
.elementor-widget-container h4,
.elementor-widget-container h5,
.elementor-widget-container h6 {
	color: #240C00;
}

/* ── BCF button widget style for Elementor ──────────── */
.elementor-button,
.elementor-widget-button .elementor-button {
	border-radius: 2px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: all 0.25s;
}
/* Primary button matches BCF gold */
.elementor-button.elementor-size-md,
.elementor-widget-button .elementor-button-wrapper a {
	background-color: #DBB66D;
	color: #130701;
	border-color: #DBB66D;
}
.elementor-button.elementor-size-md:hover,
.elementor-widget-button .elementor-button-wrapper a:hover {
	background-color: #BF994D;
	border-color: #BF994D;
	color: #130701;
}

/* ── Elementor divider uses BCF gold ────────────────── */
.elementor-widget-divider .elementor-divider-separator {
	border-color: #DBB66D;
}

/* ── Elementor heading colour override ──────────────── */
.elementor-heading-title {
	color: #240C00;
}
.elementor-section.bcf-dark-section .elementor-heading-title,
.elementor-section.bcf-dark-section .elementor-widget-container {
	color: #F8F2F1;
}

/* ── Make Elementor sections respect BCF background vars ─ */
.e-con, .e-con-inner,
.elementor-section, .elementor-container {
	--bcf-gold:       #DBB66D;
	--bcf-dark:       #240C00;
	--bcf-cream:      #F8F5EB;
}

/* ── Elementor image box — BCF style ────────────────── */
.elementor-widget-image-box .elementor-image-box-title {
	color: #240C00;
	font-weight: 700;
}
.elementor-widget-image-box .elementor-image-box-description {
	color: #7C7874;
}

/* ── Icon box widget — BCF gold icon ────────────────── */
.elementor-widget-icon-box .elementor-icon {
	color: #DBB66D !important;
}
.elementor-widget-icon-box .elementor-icon-box-title {
	color: #240C00;
}

/* ── Accordion / Toggle widget ──────────────────────── */
.elementor-accordion .elementor-tab-title.elementor-active {
	color: #DBB66D;
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon {
	color: #DBB66D;
}

/* ── Testimonial widget ─────────────────────────────── */
.elementor-testimonial-content {
	color: #7C7874;
}
.elementor-testimonial-name {
	color: #240C00;
	font-weight: 700;
}

/* ── Elementor Pro: Loop / Posts widget ─────────────── */
.elementor-posts .elementor-post__title a {
	color: #240C00;
}
.elementor-posts .elementor-post__title a:hover {
	color: #DBB66D;
}

/* ── Elementor editor drag handles — visible on BCF dark bgs ── */
.elementor-editor-active .elementor-element-overlay {
	border-color: rgba(219,182,109,0.6) !important;
}
.elementor-editor-active .elementor-editor-element-trigger {
	background: rgba(219,182,109,0.9) !important;
}

/* ── Responsive: Elementor sections on mobile ───────── */
@media (max-width: 767px) {
	.elementor-section.elementor-section-boxed > .elementor-container {
		max-width: 100%;
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* ══════════════════════════════════════════════════════
   TARGETED CHANGES — FONTS, HERO, HEADER, CART, VALUES
   ══════════════════════════════════════════════════════ */

/* ── 1. Global readable font — swap Cormorant body to Roboto ─── */
body,
p, li, td, th, span, div,
.bcf-section-sub,
.bcf-welcome-text p,
.bcf-service-card p,
.bcf-value-card p,
.bcf-min-card p,
.bcf-contact-item p,
.bcf-contact-item a,
.bcf-cal-event,
.bcf-expect-list li {
	font-family: 'Roboto', 'Segoe UI', Arial, sans-serif !important;
	letter-spacing: 0.01em;
}

/* Headings keep Cormorant Garamond but fall back to Georgia */
h1, h2, h3, h4, h5, h6,
.bcf-section-title,
.bcf-hero-name-main,
.bcf-footer-name-top,
.bcf-header-name-top,
.bcf-header-name-bottom {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
}

/* ── 2 & 3. Hero — church name bold white ──────────────────── */
.bcf-hero-name-white {
	color: #ffffff !important;
	font-weight: 900 !important;
	font-size: clamp(3rem, 7vw, 5.5rem) !important;
	text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.bcf-hero-name-white span {
	color: #DBB66D !important;
}
.bcf-hero-name-block {
	margin: 0 auto 2rem;
	text-align: center;
}

/* ── 4. Hide cart icon ─────────────────────────────────────── */
.sc_layouts_cart,
.widget_shopping_cart,
.cart-contents,
.header_cart,
.sc_layouts_cart_icon,
a[href*="cart"],
.woocommerce-cart-form,
.cart_dropdown,
.sc_layouts_item .sc_layouts_cart {
	display: none !important;
}

/* ── 5. Logo in top-left header ────────────────────────────── */
/* The header-logo.php already renders our text name.
   Here we also make room for the logo image if placed next to name */
.bcf-header-logo-img {
	height: 50px;
	width: auto;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	filter: drop-shadow(0 1px 4px rgba(36,12,0,0.25));
}
.bcf-site-name-link {
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	text-decoration: none !important;
}
.bcf-header-name-top {
	font-size: 1.44rem !important;
}
.bcf-header-name-bottom {
	font-size: 0.94rem !important;
}

/* ── 6. About — no badge, cleaner image ────────────────────── */
.bcf-about-badge { display: none !important; }
.bcf-about-img img {
	border-radius: 6px;
	box-shadow: 0 12px 40px rgba(36,12,0,0.15);
}

/* ── 8. Core values — no icon, add top border accent ────────── */
.bcf-value-icon { display: none !important; }
.bcf-value-card {
	padding-top: 2rem;
	border-top: 3px solid #DBB66D;
}
.bcf-value-card h3 {
	font-size: 1.44rem;
	margin-bottom: 0.75rem;
}

/* ── 9. Giving — contact info strip ────────────────────────── */
.bcf-giving-contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.2rem;
	margin: 1.5rem auto 0;
	padding: 1.2rem 1.5rem;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(219,182,109,0.2);
	border-radius: 6px;
	max-width: 680px;
	font-size: 1.1em;
	color: rgba(255,255,255,0.65);
}
.bcf-giving-contact a {
	color: #DBB66D;
	text-decoration: none;
}
.bcf-giving-contact a:hover { color: #BF994D; }

/* ── Ministry images fill properly ─────────────────────────── */
.bcf-min-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* ══════════════════════════════════════════════════════
   HERO — BIGGER, BOLDER, ALL WHITE TEXT
   ══════════════════════════════════════════════════════ */

/* Church name — much larger, pure white, extra bold */
.bcf-hero-name-main,
.bcf-hero-name-white {
	font-size: clamp(3.8rem, 9vw, 7rem) !important;
	font-weight: 900 !important;
	color: #ffffff !important;
	line-height: 1.0 !important;
	text-shadow: 0 4px 24px rgba(0,0,0,0.5) !important;
	letter-spacing: 0.02em !important;
}
.bcf-hero-name-main span,
.bcf-hero-name-white span {
	color: #DBB66D !important;
}

/* Sub-line under church name */
.bcf-hero-name-sub {
	font-size: 1.4rem !important;
	color: rgba(255,255,255,0.85) !important;
	letter-spacing: 0.28em !important;
	margin-top: 10px !important;
}

/* Tagline — full white, bigger */
.bcf-hero-tagline {
	font-size: 1.51rem !important;
	color: #ffffff !important;
	font-style: italic;
	margin-bottom: 0.8rem !important;
	text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

/* Scripture verse — white, more visible */
.bcf-hero-verse {
	font-size: 1.2rem !important;
	color: rgba(255,255,255,0.75) !important;
	letter-spacing: 0.06em;
	margin-bottom: 2.5rem !important;
}

/* Buttons — also bigger */
.bcf-hero-btns .bcf-btn {
	font-size: 1.09em !important;
	padding: 16px 42px !important;
}

/* Widen hero inner so large text doesn't wrap too early */
.bcf-hero-inner {
	max-width: 960px !important;
	padding: 7rem 2rem 5rem !important;
}

/* ══════════════════════════════════════════════════════
   FOOTER — REMOVE ALL DEMO CONTENT
   ══════════════════════════════════════════════════════ */

/* Hide the entire footer widgets area (contains demo address/email/socials) */
.footer_wrap .footer_widgets_wrap,
.footer_wrap .widget_area,
.footer_wrap .footer-widgets,
.footer_wrap aside.widget,
.footer_wrap .widget,
.footer_wrap .footer_widget,
footer .widget_area,
footer .widgetized-area,
.footer_widgets_area {
	display: none !important;
}

/* Also hide socials row in footer if showing demo links */
.footer_wrap .footer_socials_wrap,
.footer_wrap .sc_layouts_socials {
	display: none !important;
}

/* Hide any "Say Hello" / contact widget blocks showing demo info */
.footer_wrap .contacts_widget,
.footer_wrap .widget_faithhope_contacts_widget,
.footer_wrap [class*="contacts"],
.footer_wrap .sc_contacts {
	display: none !important;
}

/* ══════════════════════════════════════════════════════
   HERO LOGO — CENTRED ABOVE CHURCH NAME
   ══════════════════════════════════════════════════════ */
.bcf-hero-logo-center {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.6rem;
}
.bcf-hero-logo-img {
	width: 110px;
	height: auto;
	display: block;
	filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
@media (max-width: 768px) {
	.bcf-hero-logo-img {
		width: 85px;
	}
}

/* ══════════════════════════════════════════════════════
   SOCIAL MEDIA SECTION
   ══════════════════════════════════════════════════════ */
.bcf-social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.bcf-social-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.23rem;
	text-decoration: none !important;
	transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
	letter-spacing: 0.03em;
}
.bcf-social-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	opacity: 0.92;
}
.bcf-social-facebook {
	background: #1877F2;
	color: #ffffff !important;
}
.bcf-social-instagram {
	background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	color: #ffffff !important;
}
.bcf-social-youtube {
	background: #FF0000;
	color: #ffffff !important;
}
.bcf-social-btn svg {
	flex-shrink: 0;
}
@media (max-width: 480px) {
	.bcf-social-links { gap: 1rem; }
	.bcf-social-btn { padding: 12px 20px; font-size: 1.1rem; }
}

/* ── Leadership: avatar placeholder (no photo) ──────── */
.bcf-leader-avatar--placeholder {
	background: #F4EDD8;
}
.bcf-leader-avatar--placeholder svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* ── Footer bottom bar with socials ─────────────────── */
.bcf-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.bcf-footer-socials {
	display: flex;
	gap: 0.8rem;
	align-items: center;
}
.bcf-footer-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.65) !important;
	text-decoration: none !important;
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.bcf-footer-social-icon:hover {
	background: #DBB66D;
	color: #130701 !important;
	transform: scale(1.1);
}
@media (max-width: 600px) {
	.bcf-footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════
   SITEMAP PAGE
   ══════════════════════════════════════════════════════ */
.bcf-sitemap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}
.bcf-sitemap-card {
	background: #fff;
	border: 1px solid #e8e0d4;
	border-radius: 10px;
	padding: 1.5rem;
	transition: box-shadow 0.2s;
}
.bcf-sitemap-card:hover {
	box-shadow: 0 4px 20px rgba(36,12,0,0.09);
}
.bcf-sitemap-card-header {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #DBB66D;
}
.bcf-sitemap-icon {
	font-size: 1.3rem;
	line-height: 1;
}
.bcf-sitemap-card-header h2 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #240C00;
	margin: 0;
}
.bcf-sitemap-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.bcf-sitemap-list li {
	padding: 0.35rem 0;
	border-bottom: 1px solid #f0ece6;
	font-size: 0.9rem;
}
.bcf-sitemap-list li:last-child {
	border-bottom: none;
}
.bcf-sitemap-list li::before {
	content: '›';
	color: #DBB66D;
	font-weight: 700;
	margin-right: 0.5rem;
}
.bcf-sitemap-list a {
	color: #444;
	text-decoration: none;
	transition: color 0.15s;
}
.bcf-sitemap-list a:hover {
	color: #1B2A6B;
	text-decoration: underline;
}
@media (max-width: 600px) {
	.bcf-sitemap-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════
   SERVICE CARDS — INLINE LOCATION LABEL

/* ══════════════════════════════════════════════════════
   CALENDAR ACCORDION
   ══════════════════════════════════════════════════════ */
.bcf-cal-accordion {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    width: 100%;
}
.bcf-cal-month-block {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(219,182,109,0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.bcf-cal-month-block:hover {
    border-color: rgba(219,182,109,0.4);
}
.bcf-cal-month-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    transition: background 0.2s;
}
.bcf-cal-month-header:hover {
    background: rgba(219,182,109,0.08);
}
.bcf-cal-month-header[aria-expanded="true"] {
    background: rgba(219,182,109,0.12);
    border-bottom: 1px solid rgba(219,182,109,0.2);
}
.bcf-cal-month-header.has-special .bcf-cal-month-name {
    color: #DBB66D;
}
.bcf-cal-month-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex: 1;
}
.bcf-cal-month-count {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.bcf-cal-chevron {
    font-size: 1rem;
    color: #DBB66D;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.bcf-cal-month-events {
    padding: 8px 0 4px;
}
.bcf-cal-event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 8px;
}
.bcf-cal-event-row:last-child {
    border-bottom: none;
}
.bcf-cal-event-row.highlight {
    background: rgba(219,182,109,0.07);
}
.bcf-cal-event-row.highlight .bcf-cal-event-name {
    color: #DBB66D;
}
.bcf-cal-event-name {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    flex: 1;
    line-height: 1.4;
}
.bcf-cal-event-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    font-weight: 600;
}
.bcf-cal-empty {
    padding: 12px 18px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    font-style: italic;
}
@media (max-width: 480px) {
    .bcf-cal-accordion {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 340px) {
    .bcf-cal-accordion {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════
   SEO KEYWORD BLOCK — hidden from users, visible to crawlers
   ══════════════════════════════════════════════════════ */
.bcf-seo-keywords {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    font-size: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    user-select: none !important;
}

/* ══════════════════════════════════════════════════════
   HERO — MOBILE ONLY (max-width: 600px)
   Tightens everything so the hero fits on one screen
   Desktop styles are untouched above this block.
   ══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

	/* Keep hero as flex so overlay stretches correctly,
	   just remove the forced full-viewport height */
	.bcf-hero {
		min-height: auto !important;
		padding: 0 !important;
		display: flex !important;
		position: relative !important;
		overflow: hidden !important;
	}

	/* Overlay: use inset shorthand AND explicit trbl + w/h
	   to guarantee full coverage regardless of browser */
	.bcf-hero-overlay {
		position: absolute !important;
		inset: 0 !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		height: 100% !important;
		min-height: 100% !important;
		background: linear-gradient(to bottom,
			rgba(0,0,0,0.82) 0%,
			rgba(5,2,0,0.76) 50%,
			rgba(10,4,0,0.92) 100%) !important;
		z-index: 1 !important;
		pointer-events: none !important;
	}

	/* Also apply gradient via ::after as belt-and-braces backup */
	.bcf-hero::after {
		content: '' !important;
		display: block !important;
		position: absolute !important;
		inset: 0 !important;
		background: linear-gradient(to bottom,
			rgba(0,0,0,0.82) 0%,
			rgba(5,2,0,0.76) 50%,
			rgba(10,4,0,0.92) 100%) !important;
		z-index: 1 !important;
		pointer-events: none !important;
	}

	/* Inner content sits above both overlay layers */
	.bcf-hero-inner {
		position: relative !important;
		z-index: 3 !important;
		padding: 2rem 1.25rem 1.75rem !important;
		max-width: 100% !important;
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}

	/* Logo — smaller on mobile */
	.bcf-hero-logo-img {
		width: 64px !important;
	}
	.bcf-hero-logo-center {
		margin-bottom: 0.4rem !important;
	}

	/* Church name — much smaller on mobile */
	.bcf-hero-name-main,
	.bcf-hero-name-white {
		font-size: clamp(2rem, 9vw, 2.6rem) !important;
		line-height: 1.05 !important;
		letter-spacing: 0.01em !important;
	}

	/* Sub-tagline under name */
	.bcf-hero-name-sub {
		font-size: 0.78rem !important;
		letter-spacing: 0.14em !important;
		margin-top: 5px !important;
	}
	.bcf-hero-name-block {
		margin-bottom: 0.7rem !important;
		text-align: center !important;
	}

	/* Tagline — shorter and smaller */
	.bcf-hero-tagline {
		font-size: 0.9rem !important;
		margin-bottom: 0.4rem !important;
		line-height: 1.5 !important;
		text-align: center !important;
	}

	/* Scripture verse — smaller */
	.bcf-hero-verse {
		font-size: 0.72rem !important;
		margin-bottom: 1.2rem !important;
		letter-spacing: 0.03em !important;
		line-height: 1.55 !important;
		text-align: center !important;
	}

	/* Buttons — stacked, centred, compact */
	.bcf-hero-btns {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 0.55rem !important;
		width: 100% !important;
	}
	.bcf-hero-btns .bcf-btn {
		display: block !important;
		font-size: 0.75rem !important;
		padding: 10px 18px !important;
		width: 85% !important;
		max-width: 280px !important;
		text-align: center !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

/* ══════════════════════════════════════════════════════
   BCF GALLERY CAROUSEL
   ══════════════════════════════════════════════════════ */
/* ── Gallery carousel wrapper — no overflow:hidden so caption sits below ── */
.bcf-gallery-carousel {
	position: relative;
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
}

/* Track — contains only the image slides, prev/next buttons, and dots */
.bcf-gallery-track {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #0d0600;
	border-radius: 16px;
	overflow: hidden;
}

/* Individual slides */
.bcf-gallery-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.65s ease;
	pointer-events: none;
}
.bcf-gallery-slide.active {
	opacity: 1;
	pointer-events: auto;
}

/* Image inside slide */
.bcf-gallery-img-wrap {
	width: 100%;
	height: 100%;
	position: relative;
}
.bcf-gallery-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	background: #0d0600;
}

/* Caption — sits BELOW the track, outside the image, centered */
.bcf-gallery-caption-bar {
	width: 100%;
	text-align: center;
	padding: 0.8rem 1rem 0.4rem;
	min-height: 2.4rem;
}
.bcf-gallery-caption {
	display: inline-block;
	font-size: 0.88rem;
	font-family: 'Roboto', sans-serif;
	color: rgba(255,255,255,0.65);
	font-style: italic;
	letter-spacing: 0.02em;
	line-height: 1.5;
}

/* Prev / Next buttons — positioned on the track */
.bcf-gallery-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(0,0,0,0.45);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background 0.2s;
}
.bcf-gallery-btn:hover {
	background: rgba(219,182,109,0.85);
	color: #240C00;
}
.bcf-gallery-prev { left: 12px; }
.bcf-gallery-next { right: 12px; }

/* Dot indicators — below the track, above the caption */
.bcf-gallery-dots {
	display: flex;
	justify-content: center;
	gap: 7px;
	padding: 10px 0 0;
}
.bcf-gallery-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.3);
	cursor: pointer;
	padding: 0;
	transition: background 0.25s, width 0.25s;
}
.bcf-gallery-dot.active {
	background: #DBB66D;
	width: 22px;
	border-radius: 4px;
}

/* Mobile */
@media (max-width: 600px) {
	.bcf-gallery-track { aspect-ratio: 4 / 3; }
	.bcf-gallery-btn { width: 36px; height: 36px; }
	.bcf-gallery-prev { left: 7px; }
	.bcf-gallery-next { right: 7px; }
	.bcf-gallery-caption { font-size: 0.78rem; }
}

/* ── Leader grid — last row centred ── */
.bcf-leader-grid-last {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}
.bcf-leader-grid-last .bcf-leader-card {
	/* Match the column width of the 3-col grid */
	width: calc((100% - 4rem) / 3);
	max-width: 280px;
}
@media (max-width: 768px) {
	.bcf-leader-grid-last .bcf-leader-card {
		width: calc(50% - 1rem);
	}
}
@media (max-width: 480px) {
	.bcf-leader-grid-last .bcf-leader-card {
		width: 100%;
	}
}
