body {
	font-family: "Lato", sans-serif;
	color: #2d3b2e;
	background-color: #faf7f2;
	overflow-x: hidden;
}
.font-serif {
	font-family: "Playfair Display", serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #faf7f2;
}
::-webkit-scrollbar-thumb {
	background: #6b8f71;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: #4a6850;
}
/* Background Batik / Floral Pattern Overlay */
.bg-batik {
	background-image:
		radial-gradient(#c9a96e 1px, transparent 1px),
		radial-gradient(#6b8f71 1px, #faf7f2 1px);
	background-size: 32px 32px;
	background-position:
		0 0,
		16px 16px;
}
/* Cover overlay transition */
#cover-section {
	transition:
		transform 0.9s cubic-bezier(0.77, 0, 0.175, 1),
		opacity 0.9s ease;
}
.cover-opened {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}
/* Gunungan / Ornament divider */
.ornament-line {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		#c9a96e,
		transparent
	);
	flex-grow: 1;
}
/* Glassmorphism */
.glass-card {
	background: rgba(250, 247, 242, 0.85);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(201, 169, 110, 0.3);
}
.glass-dark {
	background: rgba(45, 59, 46, 0.85);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(201, 169, 110, 0.3);
}
