/* Reset default browser margin/padding */
body,
html {
	margin: 0;
	padding: 0;
	overflow: hidden !important;
	font-family: "Inter", sans-serif;
}

/* Styling dasar untuk setiap section fullPage.js */
.section {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	position: relative !important;
	box-sizing: border-box;
}

/* Kontainer konten utama di dalam setiap section */
.hero-content,
.section-content-wrapper,
.product-layout-container {
	/* Menggunakan kelas baru untuk produk */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1100px;
	height: auto;
	position: relative;
	z-index: 3;
	box-sizing: border-box;
}
.main-content-padding {
	padding: 2rem;
}
.product-layout-container {
	padding: 2rem; /* Padding dasar untuk mobile */
	gap: 1.5rem; /* Gap dasar untuk mobile, antara gambar dan teks */
}

/* Styling spesifik untuk hero-section */
.hero-section {
	background-color: #121214;
}
.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			ellipse 65% 85% at 0% 50%,
			rgba(100, 70, 45, 0.45) 0%,
			rgba(18, 18, 20, 0) 65%
		),
		radial-gradient(
			ellipse 65% 85% at 100% 50%,
			rgba(100, 70, 45, 0.45) 0%,
			rgba(18, 18, 20, 0) 65%
		);
	z-index: 1;
	pointer-events: none;
}
.hero-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilterSubtle'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch' seed='40'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilterSubtle)'/%3E%3C/svg%3E");
	opacity: 0.035;
	z-index: 2;
	pointer-events: none;
}

.hero-content {
	color: white;
	text-align: center;
}

.hero-main-logo {
	max-height: 70px;
	width: auto;
	margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
	.hero-main-logo {
		max-height: 90px;
	}
}

.hero-asset {
	max-width: 70%;
	max-height: auto;
	width: 1500px;
	margin-top: 1rem;
	margin-bottom: 1.5rem;
	object-fit: contain;
}

/* Styling untuk section lain */
.product-detail-section {
	background-color: #1f1f23;
	color: white;
}
.location-section {
	background-color: #2a2a2e;
	color: white;
}
.contact-section {
	background-color: #18181b;
	color: white;
}

@media (min-width: 768px) {
	.section-content-wrapper {
		flex-direction: row;
		gap: 3rem;
		align-items: flex-start;
	}
	.main-content-padding {
		padding: 3rem 2.5rem;
	}
	.product-layout-container {
		padding: 3.5rem 4rem;
		gap: 3.5rem;
		flex-direction: row;
		align-items: center;
	}
}
@media (min-width: 1024px) {
	.main-content-padding {
		padding: 3.5rem 3rem;
	}
	.product-layout-container {
		padding: 4rem 5rem;
		gap: 4rem;
	}
}

/* Penyesuaian untuk layout produk dari HTML Anda */
.product-image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 320px;
	margin-bottom: 1.5rem;
}
.product-text-wrapper {
	width: 100%;
	text-align: left;
}

@media (min-width: 768px) {
	.product-image-wrapper {
		width: 45%;
		max-width: 500px; /* Gambar lebih besar */
		flex-shrink: 0;
		margin-bottom: 0;
		margin-right: 3rem; /* Jarak kanan dari gambar lebih besar */
	}
	.product-text-wrapper {
		width: 55%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.location-section .section-text-content,
	.location-section .flex-shrink-0 {
		flex: 1;
		align-self: center;
	}
}

.product-detail-image {
	max-width: 100%;
	max-height: 70vh;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	object-fit: contain;
}

.section-text-content {
	text-align: left;
	max-width: 580px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0.5rem;
}
.contact-section .section-text-content {
	text-align: center;
	align-items: center;
}

.main-title,
.section-main-title {
	font-size: 2.25rem;
	line-height: 1.3;
	font-weight: bold;
	margin-bottom: 1.25rem;
	color: #f39c12;
}
@media (min-width: 768px) {
	.main-title,
	.section-main-title {
		font-size: 2.75rem;
		margin-bottom: 1.5rem;
	}
}

.product-text-wrapper p,
.section-text-content p {
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 1.25rem;
}
.product-text-wrapper ul {
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 1.25rem;
}
.product-text-wrapper li {
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
}

.hero-main-title,
.hero-subtitle,
.product-title,
.location-title,
.contact-title,
.section-main-title {
	opacity: 1;
}

/* Navigasi Kustom (Pengganti #fp-nav) */
#custom-nav {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
	z-index: 100;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.nav-dot {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-decoration: none;
	position: relative;
	height: 24px;
	cursor: pointer;
	width: auto;
	min-width: 24px;
}

.nav-dot .dot-circle {
	width: 10px;
	height: 10px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	filter: blur(1px);
	opacity: 0.7;
	transition: all 0.15s ease-out; /* Transisi lebih cepat */
	order: 2;
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
}

.nav-dot .dot-label {
	color: #ffffff;
	background: rgba(25, 25, 28, 0.9);
	backdrop-filter: blur(4px);
	padding: 7px 16px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	margin-right: 22px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(8px);
	transition: opacity 0.15s ease-out, visibility 0s linear 0.15s,
		transform 0.15s ease-out; /* Transisi lebih cepat */
	order: 1;
}

.nav-dot:hover .dot-circle {
	background-color: rgba(255, 255, 255, 0.9);
	filter: blur(0px);
	opacity: 1;
	transform: translateY(-50%) scale(1.3);
}

.nav-dot.active .dot-circle {
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(-50%) scale(0.5) !important;
}

.nav-dot.active .dot-label {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateX(0) !important;
	transition-delay: 0.05s !important;
}
