/**
 * App-shell DonasiKu: bottom navigation persisten + gaya halaman Beranda/landing.
 * Warna One Ummah: primary #308A00, accent #40AF03, dark #1A4D2E.
 * Melengkapi donasiku.css (font, .dku-app-col).
 */

/* Ruang agar konten tidak tertutup bottom nav (fixed). */
body.dku-app {
	padding-bottom: 72px;
}

/* ---------- Bottom navigation ---------- */
.dku-bottomnav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	pointer-events: none;
}

.dku-bottomnav-inner {
	display: flex;
	max-width: 480px;
	margin: 0 auto;
	background: #fff;
	border-top: 1px solid #e2e8dd;
	box-shadow: 0 -2px 12px rgba( 26, 77, 46, 0.08 );
	pointer-events: auto;
	padding-bottom: env( safe-area-inset-bottom, 0 );
}

.dku-bnav-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	padding: 8px 2px 7px;
	text-decoration: none;
	color: #7b8a75;
	font-size: 10.5px;
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
	transition: color 0.15s;
}

.dku-bnav-item:hover {
	color: #308A00;
}

.dku-bnav-item.is-active {
	color: #308A00;
}

.dku-bnav-ico {
	width: 24px;
	height: 24px;
	display: inline-flex;
}

.dku-bnav-ico svg {
	width: 24px;
	height: 24px;
}

.dku-bnav-item.is-active .dku-bnav-ico {
	position: relative;
}

.dku-bnav-label {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ---------- Util section (dipakai Beranda & landing) ---------- */
.dku-app-section {
	padding: 18px 16px;
}

.dku-app-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 12px;
}

.dku-app-section-head h2 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #1A4D2E;
}

.dku-app-section-head a {
	font-size: 12.5px;
	font-weight: 600;
	color: #308A00;
	text-decoration: none;
}

/* ---------- Beranda ---------- */
.dku-beranda-body {
	background: #f4f6f4;
}

.dku-beranda-top {
	padding: 16px 16px 12px;
	background: #308A00;
	color: #fff;
}

.dku-beranda-brand {
	font-size: 18px;
	font-weight: 800;
}

/* Hero slider (CSS scroll-snap, tanpa JS) */
.dku-hero-slider {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding: 14px 16px;
}

.dku-hero-slider::-webkit-scrollbar {
	display: none;
}

.dku-hero-slide {
	position: relative;
	flex: 0 0 88%;
	scroll-snap-align: center;
	border-radius: 14px;
	overflow: hidden;
	background: #e9efe4;
	text-decoration: none;
	color: #fff;
	aspect-ratio: 16 / 9;
}

.dku-hero-slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dku-hero-slide-title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 24px 14px 12px;
	font-size: 14px;
	font-weight: 700;
	background: linear-gradient( to top, rgba( 0, 0, 0, 0.6 ), transparent );
}

/* Statistik */
.dku-stats {
	display: flex;
	gap: 10px;
	padding: 4px 16px 8px;
}

.dku-stat {
	flex: 1;
	background: #fff;
	border: 1px solid #e4e9e1;
	border-radius: 12px;
	padding: 12px 8px;
	text-align: center;
}

.dku-stat-num {
	font-size: 14px;
	font-weight: 800;
	color: #1A4D2E;
	word-break: break-word;
}

.dku-stat-lbl {
	margin-top: 3px;
	font-size: 11px;
	color: #6c7a68;
}

/* Quick links */
.dku-quicklinks {
	display: flex;
	gap: 10px;
	padding: 8px 16px 4px;
}

.dku-quicklink {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 6px;
	background: #fff;
	border: 1px solid #e4e9e1;
	border-radius: 12px;
	text-decoration: none;
	color: #1A4D2E;
	font-size: 11.5px;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}

.dku-quicklink-ico {
	font-size: 22px;
	color: #308A00;
	line-height: 1;
}

/* Campaign unggulan */
.dku-beranda-camps {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dku-beranda-camp {
	display: block;
	background: #fff;
	border: 1px solid #e4e9e1;
	border-radius: 12px;
	padding: 12px 14px;
	text-decoration: none;
	color: inherit;
}

.dku-beranda-camp-title {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #1A4D2E;
}

.dku-beranda-camp-bar {
	height: 7px;
	border-radius: 99px;
	background: #e6ece1;
	overflow: hidden;
}

.dku-beranda-camp-bar span {
	display: block;
	height: 100%;
	background: #40AF03;
	border-radius: 99px;
}

.dku-beranda-camp-meta {
	display: flex;
	justify-content: space-between;
	margin-top: 6px;
	font-size: 12.5px;
	color: #55634f;
}

/* ---------- Program ---------- */
.dku-program-body {
	background: #f4f6f4;
}

.dku-program-list {
	padding: 12px 12px 4px;
}

/* ---------- Sedekah Rutin landing ---------- */
.dku-rutin-body {
	background: #f4f6f4;
}

.dku-rutin-zakat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 14px 16px 4px;
	padding: 14px 16px;
	background: #eaf5e3;
	border: 1px solid #cfe6bf;
	border-radius: 12px;
}

.dku-rutin-zakat strong {
	display: block;
	font-size: 13.5px;
	color: #1A4D2E;
}

.dku-rutin-zakat span {
	font-size: 12px;
	color: #55634f;
}

.dku-rutin-zakat .dku-btn {
	flex: 0 0 auto;
	white-space: nowrap;
}

.dku-rutin-cta {
	color: #308A00;
	font-weight: 600;
}

/* ---------- Berita: Kontak & Tentang ---------- */
.dku-berita-kontak,
.dku-berita-tentang {
	background: #fff;
	border-top: 1px solid #e4e9e1;
}

.dku-berita-kontak-org {
	margin: 0 0 12px;
	font-weight: 700;
	color: #1A4D2E;
}

.dku-berita-note {
	color: #6c7a68;
	font-size: 13px;
}

.dku-berita-tentang-body {
	font-size: 14px;
	line-height: 1.7;
	color: #333c31;
}

.dku-berita-tentang-body p {
	margin: 0 0 12px;
}
