@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* RESET */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #000;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* CONTAINER */
.container {
	width: 100%;
	min-height: 100vh; /* mobile safe */
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000;
}

.container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* NAVBAR */
nav {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 24px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.12),
		0 4px 16px rgba(0, 0, 0, 0.08);
	z-index: 999;
}

/* NAV LIST */
nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 55px;
	padding: 0 10px;
	position: relative;
}

/* NAV ITEMS */
nav ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	height: 100%;
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
	color: #000;
	transform: translateY(-2px);
}

/* INDICATOR DOT */
nav ul::after {
	content: '';
	position: absolute;
	bottom: 6px;
	left: 0;
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	opacity: 0;
	transition: all 0.3s ease;
}

nav ul.show-indicator::after {
	opacity: 1;
}

/* ===================== */
/* 📱 MOBILE RESPONSIVE */
/* ===================== */
@media (max-width: 768px) {
	nav {
		width: 80%;
		padding: 0 12px;
	}

	nav ul {
		overflow-x: auto;
		white-space: nowrap;
		scrollbar-width: none;
	}

	nav ul::-webkit-scrollbar {
		display: none;
	}

	nav ul li a {
		font-size: 0.85rem;
		padding: 0 12px;
	}
}

/* ===================== */
/* 📱 SMALL MOBILE */
/* ===================== */
@media (max-width: 480px) {
	nav {
		top: 10px;
		border-radius: 12px;
	}

	nav ul {
		height: 48px;
	}

	nav ul li a {
		font-size: 0.8rem;
	}
}
