html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #000;
font-family: "Montserrat", sans-serif;
}
a:hover {
color: pink;
}
.webgl {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.ui-layer {
	position: absolute;
	margin-top: -350px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px;
	box-sizing: border-box;
	color: #fff;
}
.pointer-auto {
	pointer-events: auto;
}
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo {
	font-family: "Oswald", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.logo span {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 1px;
	opacity: 0.8;
}
nav ul {
	display: flex;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}
nav a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: opacity 0.3s;
	position: relative;
}
nav a:hover {
	opacity: 1;
}

nav a.active {
	opacity: 1;
	color: #ff0055;
	text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}

nav a.active::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 4px;
	background: #ff0055;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(255, 0, 85, 0.8);
}
.text-section {
	position: relative;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: 5%;
}

.text-subtitle {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 5px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 15px;
	opacity: 0.9;
	font-weight: 500;
}

.text-subtitle::before {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #ff0055;
}

h1.text-title {
	font-size: 10rem;
	margin: 10px 0;
	line-height: 0.9;
	text-transform: uppercase;
	letter-spacing: -2px;
	color: #fff;
	background: none;
	-webkit-text-fill-color: initial;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.text-desk {
	max-width: 450px;
	font-size: 1rem;
	line-height: 1.7;
	opacity: 0.9;
	margin-top: 20px;
	border-left: 0;
	padding-left: 0;
	font-weight: 300;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}


.footer-right {
	font-size: 1.5rem;
	font-family: "Oswald", sans-serif;
	letter-spacing: 8px;
	text-transform: uppercase;
	opacity: 0.8;
	display: flex;
	align-items: center;
}

.footer-right::before {
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background: #fff;
	margin-right: 20px;
}
@media (max-width: 768px) {
	.ui-layer {
		padding: 24px;
     
	}

	header {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		position: relative;
      
	}

	.logo {
		margin-bottom: 5px;
		text-align: center;
      
	}

	.logo span {
		display: inline-block;
	}

	nav ul {
		gap: 20px;
		flex-wrap: wrap;
		justify-content: center;
	}

	nav a {
		font-size: 0.75rem;
		letter-spacing: 2px;
	}


	.text-section {
		padding-left: 0;
		align-items: center;
		text-align: center;
		margin-top: 40px;
		justify-content: flex-start;
	}

	.text-subtitle {
		justify-content: center;
		font-size: 0.8rem;
		margin-bottom: 10px;
	}

	.text-subtitle::before {
		display: none;
	}

	h1.text-title {
		font-size: clamp(3rem, 13vw, 5rem);
		line-height: 0.9;
		margin-bottom: 20px;
	}

	.text-desk {
		font-size: 0.9rem;
		max-width: 90%;
		border: none;
		margin-top: 10px;
		padding: 0;
		line-height: 1.6;
	}

	footer {
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
		padding-bottom: 30px;
		gap: 30px;
	}

	

	.footer-right {
		display: none;
	}

}
