:root {
	--parchment: #f2efe4;
	--ink: #231f20;
	--crimson: #8a1c1c;
	--gold: #cfb53b;
	--faded: #6b655f;
	--white: #ffffff;
	--dark-bg: #1a1614;
	--font-serif: "Cinzel", serif;
	--font-sans: "Lato", sans-serif;
	--font-reading: "Merriweather", serif;
	--font-script: "Pinyon Script", cursive;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--parchment);
	color: var(--ink);
	font-family: var(--font-reading);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


@keyframes pageLoadFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

::selection {
	background-color: var(--crimson);
	color: var(--white);
}

::-moz-selection {
	background-color: var(--crimson);
	color: var(--white);
}

/* Hero Section Typography */
.inductions .font-script {
	font-family: var(--font-script);
}

.inductions .font-serif {
	font-family: var(--font-serif);
}

.inductions .font-body {
	font-family: var(--font-sans);
}

.inductions .font-reading {
	font-family: var(--font-reading);
}


.inductions .logo-group {
	display: flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	color: var(--ink);
}

.inductions .logo-icon {
	width: 50px;
	height: 50px;
	position: relative;
}


@keyframes glowPulse {

	0%,
	100% {
		opacity: 0.6;
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		opacity: 0.8;
		transform: translate(-50%, -50%) scale(1.1);
	}
}

.inductions .brand-name {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 2px;
	color: var(--crimson);
}

.inductions .brand-sub {
	font-family: var(--font-sans);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--faded);
}


/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {

	*,
	::before,
	::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.inductions .animate-marquee {
		animation: none !important;
		transform: none !important;
		white-space: normal !important;
		justify-content: center;
		flex-wrap: wrap;
	}
}

/* Paper Texture */
.inductions .paper-texture {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.4;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
	pointer-events: none;
}

.inductions .wax-seal {
	box-shadow:
		inset 0 0 10px rgba(0, 0, 0, 0.3),
		0 0 0 4px #701515,
		0 4px 10px rgba(0, 0, 0, 0.3);
	background: radial-gradient(circle at 30% 30%, #a82b2b, #8a1c1c);
}

/* Scroll Reveal Class */
.inductions .reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.inductions .reveal.active {
	opacity: 1;
	transform: translateY(0);
}