/* Navigation */

.nav-section {
	font-family: 'Arial', sans-serif;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	padding: 2rem 0;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: all 0.3s linear;
	min-height: 20vh;
	height: auto;
	overflow: hidden;
}

.nav-container {
	width: 100%;
	margin: 0 auto;
	padding: 0 8%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-section h2 {
	margin-top: 52px;
	padding: 0 8%;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

ul.nav-links {
	padding: 0;
	margin-bottom: 0;
}

.nav-links li {
	position: relative;
}

.nav-links a {
	color: #333;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #aaabce, #120c1e);
	transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.nav-links a:hover {
	color: #120c1e;
	transform: translateY(-2px);
}

.log-in-btn {
	/* background: #120c1e; */
	color: black !important;
	padding: 0.8rem 2rem;
	border-bottom: 2px solid #000;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease-in;
}

.log-in-btn:hover {
	background: transparent;
}

/* Name section */
.name-section {
	background: linear-gradient(135deg, #120c1e, #aaabce);
	padding: 6rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.name-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="30" r="0.3" fill="%23ffffff" opacity="0.03"/><circle cx="70" cy="20" r="0.4" fill="%23ffffff" opacity="0.04"/><circle cx="20" cy="60" r="0.2" fill="%23ffffff" opacity="0.02"/><circle cx="80" cy="70" r="0.6" fill="%23ffffff" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.name-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 8%;
	position: relative;
}

.main-name {
	font-size: clamp(2rem, 4vw, 6rem);
	font-weight: 300;
	letter-spacing: -1px;
	opacity: 0;
	background: linear-gradient(135deg, #393939, #777777, #000000);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
	margin-top: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
	.nav-section {
		max-height: 150px;
		height: auto;
		overflow: hidden;
	}
	.nav-links {
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.nav-container {
		flex-direction: column;
		gap: 1rem;
		padding: 0;
	}

	.hero-section {
		padding: 0 4%;
		text-align: center;
		align-items: center;
	}

	.name-section {
		padding: 4rem 0;
	}

	.name-container {
		padding: 0 3%;
	}

	.main-name {
		margin-top: 20px !important;
		text-align: center;
	}
}

/* Scroll animations */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.animate-on-scroll.animate {
	opacity: 1;
	transform: translateY(0);
}
