/* =================================
FONDASI & GAYA GLOBAL
================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #000000;
	color: #FFFFFF;
	font-family: 'Work Sans', sans-serif;
	text-transform: uppercase;
	overflow-x: hidden;
}

/* =================================
KOMPONEN UMUM (REUSABLE)
================================= */
.section-title,
.section-title-gray {
	text-align: center;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 1.5rem 0;
	border-top: 1px solid #555;
	border-bottom: 1px solid #555;
}

.section-title { background-color: #000000ff; }
.section-title-gray { background-color: #868383ff; }

/* =================================
STRUKTUR HALAMAN
================================= */

/* --- Header --- */
.main-header {
	display: flex;
	align-items: center;
	padding: 1.5rem 2.5rem;
	border-bottom: 3px solid #FFFFFF;
}

.logo-brand a { display: block; }
.logo-brand img { height: 25px; display: block; }

.main-nav {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-nav a {
	position: relative;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	margin: 0 4.5rem;
}

.main-nav a:not(:first-child)::before {
	content: '|';
	position: absolute;
	color: #555;
	left: -4.5rem;
}

.main-nav a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #FFFFFF;
	bottom: -8px;
	left: 0;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.4s ease-out;
}

.main-nav a:hover::after { transform: scaleX(1); }

/* --- Section: About --- */
.about-section { padding-bottom: 4rem; }
.about-content { text-align: center; padding: 4rem 2rem; }
.about-logo { height: 30px; margin-bottom: 2rem; }

.about-content h3 {
	font-size: 1.5rem;
	font-weight: 800;
	max-width: 800px;
	margin: 0 auto 2rem auto;
	letter-spacing: 1px;
	line-height: 1.4;
}

.about-content p {
	font-weight: 600;
	max-width: 800px;
	margin: 0 auto 1.5rem auto;
	font-size: 0.9rem;
	line-height: 1.8;
	letter-spacing: 1px;
}

.about-tagline { font-size: 1rem !important; font-weight: 800 !important; }

/* --- Section: Footer --- */
.main-footer {
	padding: 0;
	background-color: #000;
	border-top: 1px solid #555;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	padding: 3rem 0;
	border-bottom: 1px solid #FFFFFF;
}

.footer-col {
	padding: 0 2.5rem;
	border-left: 1px solid #FFFFFF;
}
.footer-col:first-child { border-left: none; }
.footer-brand-logo { display: flex; align-items: center; }

.footer-brand-logo span {
	font-size: 8rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.05em;
}

.footer-col h4 {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul a { color: #FFFFFF; text-decoration: none; font-weight: 600; font-size: 1rem; text-transform: none; }

.footer-bottom { padding: 2rem 0 3rem 0; }

.footer-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 2rem;
	padding: 0 2.5rem;
}

.footer-tagline {
	font-size: clamp(3.5rem, 10vw, 9.5rem);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

/* =================================
	MENU RESPONSIVE (BURGER & PANEL)
	================================= */
.burger-menu {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 2rem; height: 2rem;
	background: transparent; border: none;
	cursor: pointer; padding: 0;
	z-index: 1001;
}

.burger-menu span {
	width: 6px; height: 6px;
	background-color: #fff;
	border-radius: 50%;
	margin: 0 auto;
}

.mobile-nav-panel {
	height: 100vh;
	width: 280px;
	background-color: #111;
	box-shadow: -5px 0 15px rgba(0,0,0,0.5);
	position: fixed;
	top: 0; right: 0;
	z-index: 1000;
	transform: translateX(100%);
	transition: transform 0.4s ease-in-out;
	padding: 4rem 2rem;
}

.mobile-nav-panel.is-open { transform: translateX(0); }

.mobile-nav-links a {
	display: block;
	color: #fff;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 600;
	padding: 1rem 0;
	border-bottom: 1px solid #333;
}

.close-btn {
	position: absolute;
	top: 1rem; right: 1.5rem;
	background: none; border: none;
	color: #fff;
	font-size: 2.5rem;
	cursor: pointer;
}

.overlay {
	display: none;
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999;
}

.overlay.is-open { display: block; }
.is-hidden { display: none !important; }

/* =================================
	MEDIA QUERIES (RESPONSIVE)
	================================= */

@media (max-width: 1024px) {
	.main-nav a { margin: 0 2rem; }
	.main-nav a:not(:first-child)::before { left: -2rem; }

	.footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2rem 0;}
	.footer-col { padding: 2rem 2.5rem; }
	.footer-col:nth-child(odd) { border-left: none; }
	.footer-col:nth-child(even) { border-left: 1px solid #FFFFFF; }
	.footer-col:nth-child(n+3) { border-top: 1px solid #FFFFFF; }
	.footer-brand-logo span { font-size: 6rem; }
}

/* --- Tampilan Ponsel (Layar di bawah 768px) --- */
@media (max-width: 768px) {
	.main-header {
		flex-direction: row;
		justify-content: space-between;
		gap: 0;
	}
	.main-nav { display: none; }
	.burger-menu { display: flex; }

	.footer-top { grid-template-columns: 1fr; padding: 0; }
	.footer-col {
		border-left: none;
		text-align: center;
		padding: 2rem 0;
	}
	.footer-col:not(:first-child) { border-top: 1px solid #FFFFFF; }
	.footer-brand-logo { justify-content: center; }
	
	.footer-meta {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}