:root
{
	--primary-orange: #ff6600;
	--off-orange: #ff9100;
	--dark-bg: #141414b9;
	--light-text: #f8f8f8;
	--gray-text: #ccc;
	--title-starting-letter-spacing: .2em;
	--title-ending-letter-spacing: .55em;
	--welcome-starting-letter-spacing: .1em;
	--welcome-ending-letter-spacing: .3em;
	--std-border-radius: .7rem;
	--std-blur-val: 5px;
}

.site_body
{
	background: transparent;
	color: var(--light-text);
	font-family: barlow;
	margin: 0;
	position: relative; /* create stacking context for the background pseudo-element */
	z-index: 0;
	min-height: 100vh;
}

p
{
	font-family: inter;
}

@keyframes move_colors
{
	0% { background-position: 0% 50%; }
	100% { background-position: 100% 50%; }
}

/* animated page background behind all content */
.site_body::before
{
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(90deg, #eb7100 0%, #ce4b00 50%, #da6900 100%);
	background-size: 200% 100%;
	animation: move_colors 12s ease-in-out infinite alternate;
}

.site_logo
{
	max-height: 48px;
}

/* Header Layout */
.main_header
{
	position: sticky;
	top: 0;
	border-bottom: 1px solid #8181811c; /* Subtle separation when scrolling */
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	/* background: linear-gradient(135deg, #c2c2c2e0, #5e5e5e36); */
	background-color: rgba(128,66,0,0.6);
	backdrop-filter: blur(var(--std-blur-val));
	z-index: 50;
}

.nav_link
{
	color: var(--gray-text);
	opacity: 75%;
	text-decoration: none;
	margin: 0 35px;
	font-weight: bold;
	font-size: 1.4rem;
	transition: color, opacity 0.5s ease;
}

.nav_link:hover
{
	color: var(--off-orange);
	opacity: 95%;
}

.nav_link.active
{
	opacity: 100%;
	color: var(--primary-orange);
}

.no_select
{
	-webkit-user-select: none;
	/* Safari */
	-moz-user-select: none;
	/* Old Firefox */
	-ms-user-select: none;
	/* IE10+ */
	user-select: none;
	-webkit-touch-callout: none;
	/* iOS */
	cursor: default;
}

@media (prefers-reduced-motion: reduce)
{
	.site_body::before,
	.devraw_text
	{
		animation: none !important;
		background-position: 50% 50% !important;
	}
}

footer
{
	text-align: center;
	padding: 1.5rem 0;
	background: #222;
	color: #fff;
	font-size: 0.9rem;
	position: static;
	left: 0;
	right: 0;
}