:root {
	--black: #000000;
	--white: #ffffff;
	--gold: #ffe541;
	--dark-brown: #320b0b;
	--red-brown: #520000;
	--font-serif-display: "DM Serif Display", serif;
	--font-serif-text: "DM Serif Text", serif;
	--font-quicksand: "Quicksand", sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-quicksand);
	background-color: var(--white);
	color: var(--black);
	line-height: 1.6;
}

/* HEADER SECTION */
.header-section {
	position: relative;
	width: 100%;
	height: 876px;
	background-color: var(--dark-brown);
	overflow: hidden;
}

.header-section img.bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.my-navbar {
	background-color: transparent;
	transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.my-navbar.scrolled {
	background-color: rgba(74, 43, 30, 0.7); /* putih transparan */
	backdrop-filter: blur(10px); /* efek blur belakang */
	-webkit-backdrop-filter: blur(10px); /* untuk Safari */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.brand-text {
	font-size: 12px;
	color: white;
}

.navbar-nav .nav-link {
	color: white;
	font-size: 18px;
	font-family: var(--font-quicksand);
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	letter-spacing: 0.2px;
	transition: opacity 0.3s ease;
}

.my-navbar.scrolled .nav-link {
	color: white;
}

.nav-link:hover {
	opacity: 0.8;
}

.my-navbar .nav-link:focus,
.my-navbar .nav-link:active,
.my-navbar .nav-link.show {
	color: white !important;
}

.hero-content {
	position: absolute;
	top: 380px;
	left: 68px;
	z-index: 2;
	color: white;
	max-width: 650px;
}

.hero-content h1 {
	font-size: 64px;
	font-family: var(--font-serif-text);
	font-weight: 400;
	margin: 0;
	line-height: 1.1;
}

.hero-content h2 {
	font-size: 32px;
	font-family: var(--font-serif-text);
	font-weight: 400;
	color: white;
	margin: 16px 0 24px 0;
	line-height: 1.2;
}

.hero-description {
	font-size: 14px;
	font-family: var(--font-quicksand);
	font-weight: 400;
	line-height: 1.7;
	margin: 0;
	opacity: 0.95;
}

.gradient-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 116px;
	background: linear-gradient(to bottom, transparent, white);
	z-index: 1;
}

/* CONTAINER */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

/* INTRODUCTION SECTION */
.introduction-section {
	padding: 80px 0;
}

.intro-content {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.intro-text {
	flex: 1;
	max-width: 600px;
}

.intro-text h2 {
	font-size: 32px;
	font-family: var(--font-serif-text);
	font-weight: 400;
	margin-bottom: 24px;
	color: var(--black);
	line-height: 1.3;
}

.intro-text p {
	font-size: 16px;
	font-family: var(--font-quicksand);
	font-weight: 400;
	line-height: 1.7;
	margin-bottom: 20px;
	color: #333;
}

.intro-image {
	flex-shrink: 0;
	max-width: 400px;
}

.intro-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	border: 1px solid #e0e0e0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* SUBSUKU SECTION */
.subsuku-section {
	padding: 80px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.subsuku-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.subsuku-section .container {
	position: relative;
	z-index: 1;
}

.section-title {
	font-size: 32px;
	font-family: var(--font-serif-text);
	font-weight: 400;
	margin-bottom: 48px;
	color: var(--black);
	text-align: left;
	line-height: 1.3;
}

.subsuku-grid {
	display: grid;
	gap: 32px;
}

.subsuku-card {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	background-color: var(--white);
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subsuku-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-image {
	flex-shrink: 0;
}

.card-image img {
	width: 120px;
	height: 120px;
	border-radius: 12px;
	object-fit: cover;
	border: 2px solid #f0f0f0;
}

.card-content {
	flex: 1;
}

.card-content h3 {
	font-size: 20px;
	font-family: var(--font-serif-text);
	font-weight: 400;
	margin: 0 0 12px 0;
	color: var(--black);
	line-height: 1.3;
}

.card-content p {
	font-size: 15px;
	font-family: var(--font-quicksand);
	font-weight: 400;
	line-height: 1.6;
	margin: 0 0 16px 0;
	color: #555;
}

.btn {
	display: inline-block;
	background-color: var(--red-brown);
	color: white;
	padding: 8px 16px;
	font-size: 13px;
	font-family: var(--font-quicksand);
	font-weight: 500;
	border-radius: 20px;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.2s ease;
	letter-spacing: 0.3px;
}

.btn:hover {
	background-color: #6b0000;
	transform: translateY(-1px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
	.navbar {
		top: 40px;
		right: 20px;
		gap: 20px;
	}

	.navbar-link {
		font-size: 16px;
	}

	.hero-content {
		top: 300px;
		left: 20px;
		max-width: calc(100% - 40px);
	}

	.hero-content h1 {
		font-size: 48px;
	}

	.hero-content h2 {
		font-size: 24px;
	}

	.container {
		padding: 0 20px;
	}

	.intro-content {
		flex-direction: column;
		gap: 40px;
	}

	.intro-image {
		max-width: 100%;
	}

	.subsuku-card {
		flex-direction: column;
		text-align: center;
	}

	.card-image img {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 36px;
	}

	.hero-content h2 {
		font-size: 20px;
	}

	.hero-description {
		font-size: 13px;
	}

	.intro-text h2,
	.section-title {
		font-size: 24px;
	}

	.subsuku-section,
	.introduction-section {
		padding: 60px 0;
	}
}

/* FOOTER SECTION */
.footer {
	background: linear-gradient(to bottom, #ffffff 0%, #000000 15%);
	padding: 40px 0;
}

.footer-container {
	/* display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px; */
	margin: auto;
	padding: 50px 0;
	color: white;
}

.footer-left {
	text-align: left;
}

.footer-title {
	font-size: 90px;
	font-family: "Times New Roman", serif;
	font-weight: bold;
	letter-spacing: 8px;
	margin: 0 0 10px;
}

.footer-contact {
	font-size: 12px;
	font-family: Arial, sans-serif;
}

.footer-middle {
	display: flex;
	flex-direction: column;
	/* gap: 10px; */
}

.footer-middle a {
	color: white;
	text-decoration: none;
	font-family: var(--font-serif-text), sans-serif;
}

.footer-middle a:hover {
	text-decoration: underline;
}

.footer-right {
	text-align: center;
}

.footer-right img {
	max-width: 100px;
	width: 100%;
	display: block;
	margin: auto;
}

.footer-right p {
	margin-top: 3px;
	font-size: 14px;
}
