:root {
	--brand: #0d6efd; /* bootstrap primary */
	--brand-2: #ffc107; /* bootstrap warning */
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
}

/* Offset anchored sections so the sticky navbar doesn't cover their top content when jumped to via nav links */
section[id] {
	scroll-margin-top: 90px;
}

/* Navbar */
.navbar-brand img {
	height: 40px;
	margin-right: 10px;
}

.lang-switch a {
	font-size: 0.9rem;
}

/* Hero */
/* .hero {
	background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35)), url("../../fon.png") center/cover no-repeat;
	color: #fff;
}

.hero .container {
	padding: 120px 0;
} */
/* Hero */
.hero {
	background:
		radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.16), transparent 30%),
		radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.08), transparent 30%),
		linear-gradient(135deg, #062b6f 0%, #0d6efd 60%, #0756c9 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.hero .container {
	padding: 120px 0;
}

/* Stats */
.stat {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.stat h3 {
	font-weight: 700;
}

/* Project cards */
/* =========================
   Projects
   ========================= */

.projects-section {
	background: #f7f9fc;
	position: relative;
}

/* Section heading */

.projects-heading {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.section-label {
	display: inline-block;
	margin-bottom: 10px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(13, 110, 253, 0.08);
	color: var(--brand);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.projects-heading h2 {
	font-size: 2.2rem;
	color: #172033;
}

.projects-subtitle {
	margin: 0 auto;
	max-width: 600px;
	color: #687386;
	font-size: 1.05rem;
	line-height: 1.7;
}


/* Project card */

.project-card {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.07);
	border-radius: 20px;
	overflow: hidden;

	box-shadow:
		0 4px 12px rgba(15, 23, 42, 0.04),
		0 16px 40px rgba(15, 23, 42, 0.05);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;

	display: flex;
	flex-direction: column;
}

.project-card:hover {
	transform: translateY(-6px);

	box-shadow:
		0 8px 20px rgba(15, 23, 42, 0.07),
		0 24px 50px rgba(13, 110, 253, 0.10);

	border-color: rgba(13, 110, 253, 0.15);
}


/* Project image */

.project-image {
	height: 230px;
	overflow: hidden;
	position: relative;
}

.project-image::after {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.18),
		transparent 45%
	);

	pointer-events: none;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;

	transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
	transform: scale(1.04);
}


/* Project content */

.project-body {
	padding: 24px 26px 26px;

	display: flex;
	flex-direction: column;
	flex: 1;
}

.project-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 34px;
	height: 34px;

	margin-bottom: 14px;

	border-radius: 10px;

	background: rgba(13, 110, 253, 0.08);
	color: var(--brand);

	font-size: 0.8rem;
	font-weight: 800;
}

.project-title {
	margin-bottom: 12px;

	color: #172033;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
}

.project-text {
	margin-bottom: 14px;

	color: #5f6978;
	font-size: 0.98rem;
	line-height: 1.7;
}

.project-stats {
	margin-top: auto;
	margin-bottom: 20px;

	padding: 12px 14px;

	border-left: 3px solid var(--brand);

	background: rgba(13, 110, 253, 0.045);

	border-radius: 0 8px 8px 0;

	color: #495466;
	font-size: 0.9rem;
	line-height: 1.8;
}


/* Button */

.project-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	align-self: flex-start;

	padding: 9px 16px;

	border: 1px solid var(--brand);
	border-radius: 10px;

	background: transparent;
	color: var(--brand);

	font-size: 0.9rem;
	font-weight: 600;

	text-decoration: none;

	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.project-button span {
	font-size: 1.1rem;
	line-height: 1;

	transition: transform 0.2s ease;
}

.project-button:hover {
	background: var(--brand);
	color: #fff;
	transform: translateY(-1px);
}

.project-button:hover span {
	transform: translateX(3px);
}


/* Mobile */

@media (max-width: 767.98px) {

	.projects-heading h2 {
		font-size: 1.8rem;
	}

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

	.project-image {
		height: 200px;
	}

	.project-body {
		padding: 20px;
	}
}

/* Reports */
/* =========================
   Reports
   ========================= */

.reports-section {
	background: #f7f9fc;
}

.reports-heading {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.reports-heading h2 {
	font-size: 2.2rem;
	color: #172033;
}

.reports-subtitle {
	margin: 0 auto;
	max-width: 600px;
	color: #687386;
	font-size: 1.05rem;
	line-height: 1.7;
}


/* Report card */

.report-card {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.07);
	border-radius: 20px;
	padding: 26px;

	box-shadow:
		0 4px 12px rgba(15, 23, 42, 0.04),
		0 16px 40px rgba(15, 23, 42, 0.05);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.report-card:hover {
	transform: translateY(-5px);

	box-shadow:
		0 8px 20px rgba(15, 23, 42, 0.07),
		0 24px 50px rgba(13, 110, 253, 0.09);

	border-color: rgba(13, 110, 253, 0.15);
}


/* Header */

.report-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.report-icon {
	width: 52px;
	height: 58px;

	display: flex;
	align-items: center;
	justify-content: center;

	flex-shrink: 0;

	border-radius: 10px;

	background: rgba(13, 110, 253, 0.08);
	color: var(--brand);

	position: relative;
}

.report-icon::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;

	width: 14px;
	height: 14px;

	background: #fff;
	border-left: 1px solid rgba(13, 110, 253, 0.15);
	border-bottom: 1px solid rgba(13, 110, 253, 0.15);

	border-radius: 0 10px 0 5px;
}

.report-icon span {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.report-period {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--brand);
	margin-bottom: 3px;
}

.report-title {
	margin: 0;
	color: #172033;
	font-size: 1.2rem;
	font-weight: 700;
}


/* Description */

.report-description {
	color: #687386;
	font-size: 0.95rem;
	line-height: 1.65;
	margin-bottom: 22px;
}


/* Languages */

.report-languages {
	border-top: 1px solid #edf0f4;
}

.report-language {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;

	padding: 15px 0;

	border-bottom: 1px solid #edf0f4;
}

.report-language:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.language-info {
	display: flex;
	align-items: center;
	gap: 10px;

	color: #343d4d;
	font-size: 0.92rem;
	font-weight: 600;
}

.language-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 34px;
	height: 26px;

	border-radius: 7px;

	background: #f1f4f8;
	color: #566174;

	font-size: 0.72rem;
	font-weight: 800;
}


/* Actions */

.report-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.report-view,
.report-download {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 7px 11px;

	border-radius: 8px;

	font-size: 0.82rem;
	font-weight: 600;

	text-decoration: none;

	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.report-view {
	border: 1px solid #dce3ed;
	color: #4f5b6d;
	background: #fff;
}

.report-view:hover {
	background: #f5f7fa;
	color: #172033;
}

.report-download {
	border: 1px solid rgba(13, 110, 253, 0.2);
	background: rgba(13, 110, 253, 0.06);
	color: var(--brand);
}

.report-download:hover {
	background: var(--brand);
	color: #fff;
}

.report-download span {
	margin-left: 5px;
	font-size: 1rem;
}


/* Mobile */

@media (max-width: 575.98px) {

	.report-card {
		padding: 20px;
	}

	.report-language {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.report-actions {
		width: 100%;
	}

	.report-view,
	.report-download {
		flex: 1;
	}

	.reports-heading h2 {
		font-size: 1.8rem;
	}
}

/* About / Mission */
.mission-card {
	background: linear-gradient(135deg, rgba(13, 110, 253, 0.06) 0%, rgba(255, 193, 7, 0.08) 100%);
	border: 1px solid rgba(13, 110, 253, 0.1);
	border-radius: 20px;
}

.mission-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--brand) 0%, #1e90ff 100%);
	color: #fff;
}

/* Team */
.team-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.team-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--brand) 0%, #1e90ff 100%);
	color: #fff;
}

.team-count {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--brand);
}

/* Donate */
.donate {
	background: linear-gradient(90deg, var(--brand) 0%, #1e90ff 100%);
	color: #fff;
}

.donate img {
	max-width: 200px;
	border: 8px solid #fff;
	border-radius: 12px;
}

/* Footer */
footer a {
	text-decoration: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: #fff;
}

.footer-social-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: background 0.2s ease, transform 0.15s ease;
}

.footer-social-btn:hover {
	background: linear-gradient(135deg, var(--brand) 0%, #1e90ff 100%);
	transform: translateY(-2px);
}

/* --- Navbar glass/scroll styles --- */
.navbar-glass {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar-glass.scrolled {
	background: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	border-color: transparent;
}

.brand-logo {
	height: 36px;
	width: 36px;
	border-radius: 10px;
	object-fit: cover;
}

.brand-name {
	letter-spacing: 0.2px;
}

/* --- Primary nav links --- */
.main-nav .nav-link {
	position: relative;
	padding: 0.5rem 0.75rem;
	color: #555;
	transition: color 0.2s ease;
}

.main-nav .nav-link:hover {
	color: #111;
}

.main-nav .nav-link.active {
	color: var(--brand);
}

.main-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0.2rem;
	height: 2px;
	background: transparent;
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease, background 0.2s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
	background: var(--brand);
	transform: scaleX(1);
}

/* --- Donate button --- */
.btn-donate {
	background: #ffc107;
	color: #000;
	font-weight: 700;
	padding: 0.5rem 1rem;
	border-radius: 14px;
	border: none;
	box-shadow: 0 6px 14px rgba(255, 193, 7, 0.35);
	transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
	text-decoration: none;
}

.btn-donate:hover {
	box-shadow: 0 10px 22px rgba(255, 193, 7, 0.45);
}

.btn-donate:active {
	transform: translateY(1px) scale(0.99);
}

/* --- Language segmented control --- */
.btn-segment {
	display: inline-flex;
	background: #f1f3f5;
	padding: 4px;
	border-radius: 14px;
	gap: 4px;
	align-items: center;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-segment .seg-btn {
	border: 0;
	background: transparent;
	padding: 0.35rem 0.6rem;
	border-radius: 10px;
	font-weight: 600;
	color: #5b5b5b;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.08s ease;
}

.btn-segment .seg-btn:hover {
	color: #111;
}

.btn-segment .seg-btn.active {
	background: #fff;
	color: #0d6efd;
	box-shadow: 0 4px 10px rgba(13, 110, 253, 0.12);
}

.btn-segment .seg-btn:active {
	transform: translateY(1px);
}

/* Better spacing on mobile */
@media (max-width: 991.98px) {
	.main-nav .nav-link {
		padding: 0.5rem;
	}

	.btn-segment {
		margin-top: 0.5rem;
	}

	.btn-donate {
		margin-top: 0.5rem;
	}
}