a img {border:none}
a:link, a:visited{color:#228B22 ;text-decoration:none;border: 0;}
a:hover {text-decoration:underline;}

@viewport {
	width: device-width;
	zoom: 1.1;
	min-zoom: 0.4;
	max-zoom: 2;
	user-zoom: fixed;
	}

@font-face {
    font-family:'NOZSTUDIO';
    src: url(fonts/NOZSTUDIO.ttf);
    
    font-weight: normal;
    font-style: normal; }

@font-face {
	font-family:'Helvetica Black Condensed Oblique';
	src: url(fonts/HelveticaBlackCondensedOblique.otf);
		
	font-weight: normal;
	font-style: normal; }  
	
html {
	scroll-behavior: smooth;
}

body {
	background-color: #000;
	color: #fff;
	font-family: Helvetica, sans-serif;
	text-align: center;
	font-size: 17px;
	padding-top: 80px;
	margin: 0;
	font-weight: 400;
	line-height: 1.4;
	/*border: 1px solid red;*/
}

/* Sticky Header */
#main-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.98);
	backdrop-filter: blur(10px);
	z-index: 100;
	border-bottom: 4px solid #228B22;
	padding: 20px 0;
	transition: all 0.4s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

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

.nav-logo {
	font-family: NOZSTUDIO, Helvetica;
	font-size: 2.5rem;
	color: #228B22;
	text-decoration: none;
	transition: all 0.4s ease;
	letter-spacing: 0.05em;
	transform: translateX(-100vw);
	opacity: 0;
}

body.home .nav-logo {
	visibility: hidden !important;
	pointer-events: none;
}

body:not(.home) .nav-logo {
	visibility: visible;
}

#main-header.nav-visible .nav-logo {
	transform: translateX(0);
	opacity: 1;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.nav-logo:hover {
	color: #2AB82A;
	text-decoration: none;
	transform: scale(1.02);
}

.nav-menu {
	display: flex;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

body.home .nav-menu {
	transform: translateX(-100vw);
	opacity: 0;
}

body.home #main-header.nav-visible .nav-menu {
	transform: translateX(0);
	opacity: 1;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.8s ease 0.1s;
}

.nav-menu li {
	position: relative;
}

.nav-menu li a {
	font-family: Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: all 0.4s ease;
	white-space: nowrap;
	padding: 8px 0;
	display: block;
	position: relative;
}

.nav-menu li a::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #228B22;
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.nav-menu li a:hover {
	color: #228B22;
	text-decoration: none;
}

.nav-menu li a.active::after {
	transform: scaleX(1);
}

.nav-menu li a:hover::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	width: 30px;
	height: 25px;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.menu-toggle:hover span {
	background-color: #2AB82A;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #228B22;
	transition: all 0.3s ease;
	border-radius: 2px;
}


/* Main Content Container */
#main-content {
	width: 100%;
	min-height: calc(100vh - 80px);
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Page Section Styles */
.page-section {
	width: 100%;
	min-height: calc(100vh - 80px);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 60px 40px;
}

.page-content {
	max-width: 980px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
}

.section-title {
	font-family: 'Helvetica Black Condensed Oblique', Helvetica, sans-serif;
	font-size: 60px;
	font-weight: normal;
	margin-bottom: 40px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.about-text {
	font-family: 'Helvetica Black Condensed Oblique', Helvetica, sans-serif;
	font-size: clamp(1rem, 2vw, 1.5rem);
	max-width: 700px;
	line-height: 1.6;
	color: #fff;
	margin: 0 auto;
}

.name {
	font-family: NOZSTUDIO, Helvetica;
	font-size: clamp(4rem, 12vw, 10rem);
	white-space: nowrap;
	color: #228B22;
	margin-bottom: 60px;
	text-shadow: 0 2px 8px rgba(34, 139, 34, 0.3);
	letter-spacing: 0.02em;
}

.follow {
    font-family: 'Helvetica Black Condensed Oblique', Helvetica, sans-serif;
	font-size: clamp(1.5rem, 2.5vw, 3rem);
	margin-bottom: 40px;
	line-height: 0.9em;
	color: #fff;
}

.mix {
    font-family: 'Helvetica Black Condensed Oblique', Helvetica, sans-serif;
    font-size: clamp(1rem, 1.5vw, 2rem);
	margin-top: 30px;
	line-height: 0.9em;
	color: #fff;
}

.contact {
    font-family: 'Helvetica Black Condensed Oblique', Helvetica, sans-serif;
    font-size: 15px;
	padding-top: 0;
	color: #fff;
}

.contact a {
	color: #228B22;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
	padding-bottom: 2px;
	text-decoration: none;
}

.contact a:hover {
	color: #2AB82A;
	border-bottom-color: #2AB82A;
	text-decoration: none;
}

#home_image {
	width: 100%;
	max-width: 500px;
	height: auto;
	margin: 0 auto;
	display: block;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#home_image:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}

.socials {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

.socials a {
	display: inline-block;
	transition: all 0.3s ease;
	opacity: 0.9;
}

.socials a:hover {
	opacity: 1;
	transform: translateY(-3px);
}

.socials img {
	margin-right: 0;
	height: auto;
	max-width: 50px;
	filter: brightness(1.1);
	transition: all 0.3s ease;
}

.socials a:hover img {
	filter: brightness(1.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	body {
		padding-top: 70px;
	}

	#main-header {
		padding: 15px 0;
	}

	#main-content {
		height: calc(100vh - 70px);
	}

	.nav-container {
		padding: 0 20px;
		position: relative;
	}

	.nav-logo {
		font-size: 2rem;
		z-index: 101;
	}

	.menu-toggle {
		display: flex;
		position: absolute;
		right: 45px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 101;
		width: 35px;
		height: 30px;
	}

	.menu-toggle span {
		height: 4px;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: rgba(0, 0, 0, 0.98);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 60px;
		gap: 35px;
		transition: left 0.4s ease;
		z-index: 99;
		box-shadow: 2px 0 8px rgba(0, 0, 0, 0.8);
		transform: none !important;
		opacity: 1 !important;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu li a {
		font-size: 16px;
		padding: 12px 0;
	}

	.page-section {
		padding: 80px 20px 40px;
		min-height: calc(100vh - 70px);
	}

	.page-content {
		max-width: 100%;
	}

	#main-content {
		min-height: calc(100vh - 70px);
	}

	.section-title {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.name {
		font-size: clamp(3rem, 12vw, 6rem);
		margin-bottom: 40px;
	}

	.follow {
		font-size: clamp(1.25rem, 4vw, 1.75rem);
		margin-bottom: 30px;
	}

	.mix {
		font-size: clamp(1rem, 3vw, 1.5rem);
	}

	#home_image {
		max-width: 400px;
	}
}

@media (max-width: 480px) {
	body {
		padding-top: 65px;
	}

	#main-header {
		padding: 12px 0;
	}

	#main-content {
		height: calc(100vh - 65px);
	}

	.nav-container {
		padding: 0 15px;
	}

	.nav-logo {
		font-size: 1.75rem;
	}

	.menu-toggle {
		right: 40px;
		width: 32px;
		height: 28px;
	}

	.menu-toggle span {
		height: 3px;
	}

	.page-section {
		padding: 80px 15px 30px;
		min-height: calc(100vh - 65px);
	}

	#main-content {
		min-height: calc(100vh - 65px);
	}

	.section-title {
		font-size: clamp(1.5rem, 7vw, 2.5rem);
		margin-bottom: 30px;
	}

	.name {
		font-size: clamp(2.5rem, 10vw, 4rem);
		margin-bottom: 30px;
	}

	.follow {
		font-size: clamp(1rem, 3.5vw, 1.25rem);
		margin-bottom: 25px;
	}

	.mix {
		font-size: clamp(0.875rem, 3vw, 1.125rem);
	}

	.contact {
		font-size: clamp(0.875rem, 2.5vw, 1rem);
	}

	.about-text {
		font-size: clamp(0.875rem, 3vw, 1rem);
	}

	.nav-menu {
		top: 65px;
		height: calc(100vh - 65px);
		padding-top: 50px;
		gap: 30px;
	}

	.nav-menu li a {
		font-size: 14px;
	}

	#home_image {
		max-width: 100%;
	}

	.socials img {
		max-width: 42px;
	}
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.page,
	.nav-menu,
	.nav-logo,
	.menu-toggle span,
	#home_image,
	.socials a,
	.socials img,
	.contact a {
		transition: none !important;
		animation: none !important;
	}
}

/* Additional polish for better visual hierarchy */
h1, h2 {
	margin: 0;
	padding: 0;
}

p {
	margin: 0;
	padding: 0;
}

/* Smooth focus states for accessibility */
a:focus,
button:focus {
	outline: 2px solid #228B22;
	outline-offset: 4px;
}

/* Prevent text selection on navigation for better UX */
.nav-menu,
.nav-logo {
	user-select: none;
	-webkit-user-select: none;
}

/* Back to main button */
.back-to-main {
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 1000;
}

.back-to-main a {
	display: inline-block;
	padding: 10px 20px;
	background-color: #232931;
	color: #fff;
	text-decoration: none;
	border-radius: 25px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
}

.back-to-main a:hover {
	background-color: #3A6EA5;
	transform: translateY(-2px);
	box-shadow: 0 7px 20px rgba(0, 0, 0, 0.45);
}

/* Footer */
.site-footer {
	position: fixed;
	bottom: 10px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 500;
}

.site-footer p {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 12px;
	color: rgb(90, 89, 89);
	margin: 0;
}

/* Mobile adjustments for back button */
@media (max-width: 768px) {
	.back-to-main {
		top: 10px;
		left: 10px;
	}

	.back-to-main a {
		padding: 8px 15px;
		font-size: 12px;
	}
}