:root {
	--navy: #015c53;
	--beige: #f5f1e8;
	--gold: #bfa171;
	--white: #ffffff;
	--gray: #4e5156;
	--black: #111;
}

body {
	margin: 0;
	font-family: 'Georgia', serif;
	background: var(--beige);
	color: var(--navy);
	padding: 0 16px; /* ✅ Tambahkan padding agar isi tidak mepet di mobile */
	box-sizing: border-box;
}

/* NAVBAR */
nav {
	background-color: var(--navy);
	padding: 16px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}

nav .logo img {
	max-height: 72px; /* ✅ Diperbesar */
	width: auto;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.8em;
	color: var(--beige);
	cursor: pointer;
	z-index: 1001;
}

.menu-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.menu-links a {
	color: var(--beige);
	text-decoration: none;
	font-size: 1em;
}

/* HERO */
.hero {
	display: flex;
	flex-direction: column;
	background-color: var(--beige);
}

.hero-banner {
	background-image: url('images/background.jpg'); /* ✅ gunakan versi lebih terang */
	background-size: cover;
	background-position: center;
	height: 335px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--beige);
	position: relative;
}

.hero-banner::after {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-color: rgba(0, 0, 0, 0.2); /* ✅ lebih terang dari 0.25 */
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 0 16px;
}

.hero-content h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.hero-content p {
	font-size: 1.2rem;
}

/* INTRO CONTENT */
.intro-content {
	padding: 60px 16px;
	background-color: #f8f8f8;
	color: var(--gray);
}

.intro-content .container {
	max-width: 1000px;
	margin: 0 auto;
}

.intro-content h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	text-align: center;
	color: var(--black);
}

.intro-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 20px;
	text-align: justify;
}

/* PRINCIPLES LIST */
.principles-list {
	margin-top: 20px;
	padding-left: 20px;
	list-style-type: disc;
	color: #000000;
	font-size: 1.05em;
	line-height: 1.6;
	columns: 2;
	column-gap: 40px;
}

.principles-list li {
	margin-bottom: 10px;
	break-inside: avoid;
}

/* FORM */
form input,
form textarea {
	font-family: inherit;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1em;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 12px;
}

form button {
	background-color: var(--navy);
	color: var(--beige);
	border: none;
	cursor: pointer;
	font-size: 1em;
	border-radius: 6px;
	padding: 10px 20px;
}

/* FOOTER */
footer {
	background-color: var(--navy);
	color: var(--beige);
	text-align: center;
	padding: 20px;
	font-size: 0.95em;
}

/* RESPONSIVE */
@media (min-width: 768px) {
	.hero {
		flex-direction: row;
		height: 100vh;
		padding: 0 20px;
	}

	.hero-left {
		flex: 1;
		padding: 80px 60px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.hero-left h1 {
		font-size: 2.6em;
	}

	.menu-links {
		display: flex !important;
		flex-direction: row;
		gap: 24px;
		width: auto;
		margin-top: 0;
	}

	.menu-toggle {
		display: none;
	}
}

@media (max-width: 768px) {
	nav {
		flex-direction: column;
		align-items: flex-start;
	}

	.menu-toggle {
		display: block;
		position: absolute;
		top: 15px;
		right: 20px;
	}

	.menu-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		right: 20px;
		background-color: var(--black);
		padding: 15px;
		border-radius: 5px;
		z-index: 1000;
		width: max-content;
	}

	.menu-links.show {
		display: flex;
	}

	nav .menu-links a {
		padding: 8px 0;
		width: 100%;
	}

	.hero-left h1 {
		font-size: 1.8em;
	}

	.hero-left p {
		font-size: 1em;
	}

	.intro-content {
		padding: 40px 16px;
	}
}

/* PAGE-SPECIFIC OVERRIDES */
body.aboutus .hero-left {
	color: #000000;
}
