/* =========================================================
   New Life Society — main stylesheet
   ========================================================= */

:root {
	--maroon: #4a1414;
	--green: #1f5c3f;
	--green-dark: #123a27;
	--green-darker: #0e2e1e;
	--orange: #ef9834;
	--orange-dark: #d97e1a;
	--cream: #f7f1e4;
	--tan: #efe6d3;
	--ink: #22201b;
	--ink-soft: #514c42;
	--white: #ffffff;
	--border: #e7ded0;
	--font-display: 'Poppins', sans-serif;
	--font-body: 'Plus Jakarta Sans', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	line-height: 1.2;
	margin: 0 0 16px;
	font-weight: 700;
}

p { margin: 0 0 16px; }

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.text-accent { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 15px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
	background: var(--maroon);
	color: #f3e6e6;
	font-size: 13px;
}
.topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 24px;
	gap: 16px;
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left i { margin-right: 6px; color: var(--orange); }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a { color: #f3e6e6; }
.topbar-right a:hover { color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,.05);
	position: sticky;
	top: 0;
	z-index: 100;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	gap: 24px;
}
.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	color: var(--ink);
}
.logo-mark {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	flex-shrink: 0;
}
.logo-text em { color: var(--green); font-style: normal; }

.nav-menu {
	display: flex;
	gap: 30px;
}
.nav-menu a {
	color: var(--ink);
	font-weight: 500;
	font-size: 15px;
}
.nav-menu a:hover { color: var(--green); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { padding: 11px 20px; font-size: 14px; }

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	color: #fff;
	overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(20,15,10,.88) 10%, rgba(20,15,10,.55) 60%, rgba(20,15,10,.35) 100%);
}
.hero-content {
	position: relative;
	padding: 110px 24px 160px;
	max-width: 720px;
}
.hero-content h1 {
	color: #fff;
	font-size: clamp(34px, 5vw, 58px);
	margin-bottom: 20px;
}
.hero-content p {
	font-size: 17px;
	color: rgba(255,255,255,.88);
	max-width: 540px;
}
.hero-buttons { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }

.hero-stats {
	position: relative;
	background: #fff;
	margin-top: -60px;
	box-shadow: 0 -4px 24px rgba(0,0,0,.06);
}
.hero-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.stat-box {
	text-align: center;
	padding: 26px 12px;
	border-right: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.stat-box:last-child { border-right: none; }
.stat-number {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 30px;
	color: var(--green);
}
.stat-number small { font-size: 18px; }
.stat-label { font-size: 13px; color: var(--ink-soft); font-weight: 600; }

/* ---------- Section basics ---------- */
.section { padding: 90px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-tan { background: var(--tan); }
.section-green {
	background: linear-gradient(160deg, var(--green-dark), var(--green-darker));
	color: #fff;
}
.section-green h2, .section-green h3 { color: #fff; }

.eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 12px;
}
.section-heading { max-width: 640px; margin-bottom: 50px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-sub { color: var(--ink-soft); font-size: 16px; }
.section-heading.light .section-sub { color: rgba(255,255,255,.75); }
.section-heading.light .eyebrow { color: var(--orange); }

/* ---------- Intro / Service section ---------- */
.intro-grid, .about-grid, .vision-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.intro-media img {
	border-radius: 50% 50% 50% 8%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border: 8px solid #fff;
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}
.pull-quote {
	margin: 24px 0;
	padding: 18px 22px;
	border-left: 4px solid var(--green);
	background: #fff;
	font-style: italic;
	color: var(--ink);
	border-radius: 0 8px 8px 0;
}

/* ---------- Impact at a Glance ---------- */
.glance-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.glance-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 32px 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(20,20,10,.04);
}
.glance-card i { font-size: 26px; color: var(--orange); margin-bottom: 14px; }
.glance-number {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 28px;
	color: var(--green);
}
.glance-label { font-size: 14px; color: var(--ink-soft); font-weight: 600; }

/* ---------- About ---------- */
.about-media { position: relative; }
.about-media img { border-radius: 12px; }
.about-badge {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: var(--green);
	color: #fff;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 22px;
	border: 5px solid #fff;
}
.about-badge small { font-size: 14px; }
.checklist { margin-top: 20px; }
.checklist li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 500; }
.checklist i { color: var(--green); }

/* ---------- Programs ---------- */
.programs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.program-card {
	background: #fff;
	border-radius: 12px;
	padding: 32px 26px;
	box-shadow: 0 10px 30px rgba(20,20,10,.05);
	transition: transform .2s ease, box-shadow .2s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(20,20,10,.1); }
.program-icon {
	width: 54px;
	height: 54px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #fff;
	margin-bottom: 18px;
}
.icon-green { background: var(--green); }
.icon-orange { background: var(--orange); }
.icon-blue { background: #3d7ab5; }
.icon-teal { background: #2a9d8f; }
.icon-purple { background: #8a5cb0; }
.icon-red { background: #c1443c; }
.program-card h3 { font-size: 19px; margin-bottom: 10px; }
.program-card p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 16px; }
.card-link { color: var(--green); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.card-link i { font-size: 12px; transition: transform .2s ease; }
.card-link:hover i { transform: translateX(4px); }

/* ---------- Stories ---------- */
.stories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.story-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}
.story-body { padding: 24px; }
.story-quote { font-style: italic; color: var(--ink-soft); font-size: 15px; }
.story-author { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.story-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--tan); flex-shrink: 0; }
.story-author strong { display: block; font-size: 14px; }
.story-author span { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Get involved ---------- */
.involved-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.involved-card {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 12px;
	padding: 30px 22px;
	text-align: center;
}
.involved-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin: 0 auto 16px;
}
.involved-card h3 { color: #fff; font-size: 18px; }
.involved-card p { color: rgba(255,255,255,.72); font-size: 14px; margin-bottom: 20px; }

/* ---------- Donate ---------- */
.donate-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 60px;
	align-items: start;
}
.donate-methods {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 24px;
}
.donate-method {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 18px;
}
.donate-method i { color: var(--orange); font-size: 20px; margin-top: 2px; }
.donate-method strong { display: block; font-size: 14.5px; }
.donate-method span { font-size: 13px; color: var(--ink-soft); }

.donate-form-card {
	background: #fff;
	border-radius: 14px;
	padding: 32px;
	box-shadow: 0 20px 50px rgba(20,20,10,.08);
}
.donate-form-card h3 { font-size: 18px; margin-bottom: 16px; }
.donate-amounts { display: flex; gap: 10px; margin-bottom: 20px; }
.amount-pill {
	flex: 1;
	padding: 12px;
	border-radius: 8px;
	border: 2px solid var(--border);
	background: #fff;
	font-weight: 700;
	cursor: pointer;
	color: var(--ink);
}
.amount-pill.active, .amount-pill:hover { border-color: var(--green); color: var(--green); background: #eef6f1; }
.donate-form { display: flex; flex-direction: column; gap: 14px; }
.donate-form input,
.donate-form select,
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 13px 14px;
	border-radius: 8px;
	border: 1.5px solid var(--border);
	font-family: var(--font-body);
	font-size: 14.5px;
	background: #fbfaf7;
}
.donate-form input:focus,
.donate-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--green);
	background: #fff;
}

/* ---------- Gallery ---------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}
.gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.center-btn { text-align: center; margin-top: 40px; }

/* ---------- Accountability ---------- */
.accountability-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.accountability-card {
	text-align: center;
	background: var(--cream);
	border-radius: 12px;
	overflow: hidden;
	padding-bottom: 24px;
}
.accountability-card img { margin-bottom: 18px; }
.accountability-card i { font-size: 22px; color: var(--green); margin-bottom: 10px; display: block; }
.accountability-card h3 { font-size: 16px; margin: 0; }

/* ---------- International connections ---------- */
.intl-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
.intl-item {
	display: flex;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255,255,255,.12);
}
.intl-item i { font-size: 22px; color: var(--orange); margin-top: 2px; }
.intl-item strong { display: block; color: #fff; font-size: 16px; margin-bottom: 4px; }
.intl-item span { color: rgba(255,255,255,.7); font-size: 14px; }

/* ---------- News ---------- */
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.news-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}
.news-body { padding: 22px; }
.news-body h3 { font-size: 18px; margin-bottom: 8px; }
.news-body p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }

/* ---------- Vision ---------- */
.vision-section img { border-radius: 14px; }
.vision-content blockquote {
	font-family: var(--font-display);
	font-size: 20px;
	font-style: italic;
	color: var(--ink);
	margin: 18px 0 26px;
	line-height: 1.5;
}

/* ---------- Contact ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 50px;
}
.contact-info { background: var(--cream); border-radius: 14px; padding: 34px; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-weight: 500; }
.contact-line i { color: var(--green); width: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: #12180f; color: rgba(255,255,255,.75); padding-top: 70px; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 50px;
}
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,255,255,.7); font-size: 14.5px; }
.footer-col ul a:hover { color: var(--orange); }
.footer-about p { font-size: 14px; margin: 16px 0; color: rgba(255,255,255,.65); }
.footer-logo { color: #fff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
	width: 36px; height: 36px; border-radius: 50%;
	background: rgba(255,255,255,.08);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
}
.footer-social a:hover { background: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
	.programs-grid, .stories-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
	.glance-grid, .involved-grid, .accountability-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-grid { grid-template-columns: repeat(4, 1fr); }
	.intro-grid, .about-grid, .vision-grid, .donate-grid, .contact-grid, .intl-grid {
		grid-template-columns: 1fr;
	}
	.about-media, .intro-media { order: -1; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 782px) {
	.nav-menu, .header-actions .btn { display: none; }
	.menu-toggle { display: flex; }
	.header-actions { gap: 8px; }
	.nav-menu.is-open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		padding: 20px 24px;
		box-shadow: 0 10px 20px rgba(0,0,0,.08);
		gap: 16px;
	}
	.topbar-hide-sm { display: none; }
	.hero-content { padding: 70px 24px 120px; }
	.hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
	.stat-box { border-right: none; border-bottom: 1px solid var(--border); }
	.programs-grid, .stories-grid, .news-grid, .glance-grid, .involved-grid, .accountability-grid {
		grid-template-columns: 1fr;
	}
	.gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.donate-methods { grid-template-columns: 1fr; }
	.section { padding: 60px 0; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom-inner { flex-direction: column; text-align: center; }
}
