* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: 'Montserrat', sans-serif;
	overflow: hidden;
}

body {
	scroll-behavior: smooth;
}

/* Navbar */
.navbar {
	position: sticky;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(6px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 2rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	z-index: 1000;
}

.navbar-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.small-icon {
	width: 30px;
	height: 30px;
}

.logo {
	font-weight: 700;
	font-size: 1.25rem;
	letter-spacing: 0.5px;
	color: #111;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	position: relative;
	padding: 0.25rem 0;
	transition: color 0.3s ease;
}

.nav-links a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0%;
	height: 2px;
	background-color: limegreen;
	transition: width 0.3s ease;
}

.nav-links a:hover {
	color: dark;
}

.nav-links a:hover::after {
	width: 100%;
}

.container {
	height: 100vh;
	overflow-y: scroll;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
}

.section {
	width: 100%;
	height: 100vh;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	padding: 2rem;
}

.white {
	background-color: #fff;
	color: #222;
}

.muted {
	background-color: #f4f4f4;
	color: #222;
}