/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* end of reset */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
	--bg-color: #ffffff;
	--text-color: #333333;
	--text-muted: #666666;
	--heading-color: #a00;
	--link-hover: #39f;
	--code-color: #aaa;
	--border-color: #eee;
	--card-bg: rgba(255, 255, 255, 0.918);
	--card-bg-solid: rgba(255, 255, 255, 0.95);
	--particle-color: #000000;
	--shadow-color: rgba(0, 0, 0, 0.1);
	--nav-bg: rgba(255, 255, 255, 0.98);
	--skill-tag-bg: #f0f0f0;
	--skill-tag-border: #ddd;
	--timeline-color: #a00;
}

/* ===== DARK MODE ===== */
body.dark-mode {
	--bg-color: #1a1a2e;
	--text-color: #e0e0e0;
	--text-muted: #a0a0a0;
	--heading-color: #ff6b6b;
	--link-hover: #64b5f6;
	--code-color: #f0a050;
	--border-color: #333;
	--card-bg: rgba(26, 26, 46, 0.95);
	--card-bg-solid: rgba(26, 26, 46, 0.98);
	--particle-color: #ffffff;
	--shadow-color: rgba(0, 0, 0, 0.3);
	--nav-bg: rgba(26, 26, 46, 0.98);
	--skill-tag-bg: #2d2d44;
	--skill-tag-border: #444;
	--timeline-color: #ff6b6b;
}

/* ===== BASE STYLES ===== */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
}

#particles-js {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 0;
	background-color: var(--bg-color);
	pointer-events: none;
	transition: background-color 0.3s ease;
}


#content {
	position: relative;
	z-index: 10;
	width: 100%;
	min-height: 100vh;
	background: transparent;
}

.text-container {
	position: relative;
	margin: 0 auto;
	max-width: 1200px;
	width: 95%;
	min-height: 100vh;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		var(--card-bg) 8%,
		var(--card-bg) 92%,
		rgba(255, 255, 255, 0) 100%
	);
	padding: 4em 2em 2em 2em;
	pointer-events: auto;
	z-index: 11;
	box-sizing: border-box;
	transition: background 0.3s ease;
	margin-top: 0;
}

body {
	font: normal normal 400;
	font-size: 80%;
	line-height: 1.5em;
	font-family: Verdana, sans-serif;
	margin: 0;
	padding: 0;
	color: var(--text-color);
	transition: color 0.3s ease;
}

/* ===== CONTROL BUTTONS ===== */
.controls-container {
	position: fixed;
	top: 1em;
	right: 1em;
	z-index: 1000;
	display: flex;
	gap: 0.5em;
}

.control-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--border-color);
	background: var(--nav-bg);
	color: var(--text-color);
	cursor: pointer;
	font-size: 1.2em;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px var(--shadow-color);
}

.control-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 12px var(--shadow-color);
}

/* Dark mode toggle icons */
.dark-mode-toggle .icon-moon {
	display: none;
}

.dark-mode-toggle .icon-sun {
	display: inline;
}

body.dark-mode .dark-mode-toggle .icon-moon {
	display: inline;
}

body.dark-mode .dark-mode-toggle .icon-sun {
	display: none;
}

/* ===== NAVIGATION MENU ===== */
.nav-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 280px;
	height: 100vh;
	background: var(--nav-bg);
	z-index: 999;
	box-shadow: -4px 0 20px var(--shadow-color);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
}

.nav-menu.open {
	transform: translateX(0);
}

.nav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em;
	border-bottom: 1px solid var(--border-color);
	font-weight: bold;
	color: var(--heading-color);
}

.nav-close {
	background: none;
	border: none;
	font-size: 1.5em;
	cursor: pointer;
	color: var(--text-muted);
	transition: color 0.2s;
}

.nav-close:hover {
	color: var(--heading-color);
}

.nav-links {
	padding: 1em;
}

.nav-links li {
	margin-bottom: 0.5em;
}

.nav-links a {
	display: block;
	padding: 0.75em 1em;
	color: var(--text-color);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.nav-links a:hover {
	background: var(--skill-tag-bg);
	color: var(--heading-color);
	padding-left: 1.5em;
}

/* ===== TYPOGRAPHY ===== */
p {
	position: relative;
	left: 22%;
	margin-bottom: 0.7em;
	margin-right: 0;
	width: 76%;
}

code {
	font-size: 85%;
	font-family: Menlo, monospace, sans-serif;
	color: var(--code-color);
	transition: color 0.3s ease;
	font-weight: 600;
}

/* Date codes - display inline right after title */
p code,
code.date-code {
	display: inline;
	position: relative;
	margin-left: 0.5em;
	background: var(--skill-tag-bg);
	padding: 2px 8px;
	border-radius: 4px;
	white-space: nowrap;
}

/* Ensure date appears right after title, not floated */
code.date-code {
	float: none;
}

ul {
	position: relative;
	left: 22%;
	width: 76%;
	margin-bottom: 1.5em;
	margin-top: -0.5em;
}

li {
	padding-left: 1.25em;
	text-indent: -1.25em;
	margin-bottom: 0.5em;
	line-height: 1.4em;
}

li ul {
	position: relative;
	left: 0;
	width: 100%;
	margin-top: 0.25em;
}

h1, h2, h3, h4 {
	font-weight: 400;
	font-family: Cousine, Verdana, sans-serif;
	width: 70%;
}

h1 {
	text-align: left;
	font-size: 3em;
	line-height: 1em;
	position: relative;
	left: 22%;
	width: 76%;
	color: var(--text-color);
}

h1 + p {
	font-style: italic;
	margin-top: 0.5em;
	font-size: 110%;
	text-align: left;
	left: 22%;
	width: 76%;
}

h2 {
	font-size: 1.1em;
	color: var(--heading-color);
	margin-top: 1em;
	position: relative;
	top: 1.4em;
	width: 18%;
	transition: color 0.3s ease;
	user-select: none;
	/* Flexbox for toggle alignment - align to top */
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 6px;
	text-align: right;
}

h2:hover {
	opacity: 0.8;
}

h3 {
	font-size: 1em;
	line-height: 2em;
	position: relative;
	top: 1.7em;
	text-align: right;
	width: 18%;
}

/* ===== COLLAPSIBLE SECTIONS ===== */

.collapse-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	min-width: 16px;
	background: var(--skill-tag-bg);
	border-radius: 3px;
	font-size: 11px;
	font-weight: bold;
	color: var(--text-muted);
	transition: all 0.2s ease;
}

h2:hover .collapse-toggle {
	background: var(--heading-color);
	color: white;
}

.collapsible-content {
	overflow: visible;
	transition: max-height 0.4s ease-out, opacity 0.3s ease;
}

.collapsible-content.collapsed {
	max-height: 0 !important;
	overflow: hidden;
	opacity: 0;
}

/* ===== LINKS ===== */
a {
	color: inherit;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--link-hover);
}

#webaddress {
	margin-top: 1em;
	position: relative;
	left: 22%;
	color: var(--code-color);
	font-family: Menlo, monospace, sans-serif;
	font-size: 80%;
	text-align: left;
	width: 76%;
}

#webaddress a {
	text-decoration: none;
}

/* ===== EMPHASIS ===== */
li em {
	font-weight: normal;
	font-style: italic;
}

em {
	font-weight: bold;
	font-style: italic;
}

strong {
	font-weight: bold;
}

#address {
	display: none;
}

/* ===== JOB/EDUCATION ENTRY STYLING ===== */

/* Entry header (Company/Institution + Date) */
.entry-header {
	margin-top: 1.5em;
	padding-top: 1em;
	border-top: 1px solid var(--border-color);
}

/* First entry doesn't need top border - align with h2 */
.collapsible-content > .entry-header:first-of-type {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}

/* Company/Institution name - more prominent */
.entry-header strong {
	font-size: 1.15em;
	color: var(--text-color);
}

/* Entry details list - align with company name */
ul.entry-details {
	margin-top: 0.3em;
	border-left: 3px solid var(--heading-color);
	padding-left: 0.8em;
	left: 22%;
	width: calc(76% - 0.8em);
	margin-left: 0;
}

/* Job title - first item, aligned with arrows */
li.job-title {
	padding-left: 0 !important;
	text-indent: 0;
	margin-bottom: 0.6em;
	border-bottom: 1px dashed var(--border-color);
	padding-bottom: 0.5em;
	margin-left: 0;
}

li.job-title em {
	color: var(--heading-color);
	font-weight: 600;
	font-style: normal;
	font-size: 1.05em;
}

/* Responsibilities styling */
ul.entry-details li:not(.job-title) {
	position: relative;
	padding-left: 1em;
	text-indent: 0;
	margin-bottom: 0.35em;
	color: var(--text-muted);
	font-size: 0.95em;
}

ul.entry-details li:not(.job-title)::before {
	content: "›";
	position: absolute;
	left: 0;
	color: var(--heading-color);
	font-weight: bold;
}

/* Reset general li padding for entry-details */
ul.entry-details li {
	padding-left: 1em;
	text-indent: 0;
}

ul.entry-details li.job-title {
	padding-left: 0;
}

/* Responsibility items (Personal Skills, etc) - with arrows */
ul.entry-details li.responsibility-item {
	position: relative;
	padding-left: 1em;
	text-indent: 0;
	margin-bottom: 0.35em;
	color: var(--text-muted);
	font-size: 0.95em;
}

ul.entry-details li.responsibility-item::before {
	content: "›";
	position: absolute;
	left: 0;
	color: var(--heading-color);
	font-weight: bold;
}

/* Language tags */
.language-tag {
	display: inline-flex;
	align-items: baseline;
	gap: 0.5em;
	padding: 4px 12px;
	border: 1px solid var(--text-muted);
	border-radius: 3px;
	font-size: 0.9em;
}

.language-tag strong {
	color: var(--text-color);
}

.language-tag .lang-level {
	color: var(--text-muted);
	font-size: 0.9em;
}

/* ===== SPECIALIZATION TAGS ===== */

/* Subtitle - simple separator styling */
.subtitle-enhanced {
	font-style: italic !important;
}

.subtitle-tag {
	color: var(--heading-color);
	font-weight: 500;
}

.subtitle-sep {
	color: var(--text-muted);
	margin: 0 0.4em;
}

/* Specialized in section tags - inline with header */
.spec-paragraph {
	margin-top: 0 !important;
}

.specialization-inline {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
}

.spec-tag {
	display: inline-block;
	padding: 2px 8px;
	background: transparent;
	border: 1px solid var(--text-muted);
	border-radius: 3px;
	font-size: 0.85em;
	color: var(--text-color);
	transition: all 0.2s ease;
	cursor: default;
}

.spec-tag:hover {
	border-color: var(--heading-color);
	color: var(--heading-color);
}

/* ===== SKILL TAGS ===== */
.skill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0.3em 0 1.2em 0;
	position: relative;
	left: 22%;
	width: 76%;
}

/* Hide original list when skill tags are shown (screen only) */
.skills-hidden {
	display: none !important;
}

.skill-tag {
	display: inline-block;
	padding: 2px 8px;
	background: transparent;
	border: 1px solid var(--text-muted);
	border-radius: 3px;
	font-size: 0.85em;
	color: var(--text-color);
	transition: all 0.2s ease;
	cursor: default;
}

.skill-tag:hover {
	border-color: var(--heading-color);
	color: var(--heading-color);
}


/* ===== FOOTER ===== */
.site-footer {
	position: relative;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	max-width: 1100px;
	text-align: left;
	padding: 10px;
	color: var(--text-muted);
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		var(--card-bg) 10%,
		var(--card-bg) 90%,
		rgba(255, 255, 255, 0) 100%
	);
	font-size: 0.8em;
	pointer-events: none;
	transition: color 0.3s ease, background 0.3s ease;
}

.site-footer a {
	pointer-events: auto;
	color: var(--text-color);
}

/* Re-enable pointer events for interactive elements */
.text-container a,
.text-container button,
.text-container input {
	pointer-events: auto;
}

.print-only {
	display: none;
}

.screen-only {
	display: block;
}

/* ===== MOBILE RESPONSIVE ===== */
@media screen and (max-width: 768px) {
	/* Reset layout positioning for mobile - be selective, not universal */
	body {
		margin: 0;
		padding: 0;
		font-size: 16px;
		-webkit-text-size-adjust: 100%;
	}

	/* Particles background - subtle but visible */
	#particles-js {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		z-index: 0 !important;
		opacity: 0.5;
	}

	/* Main content container - clean, no glassy effect */
	.text-container {
		position: relative;
		z-index: 1;
		width: 100%;
		max-width: 100%;
		padding: 1em;
		padding-top: 4em;
		margin: 0;
		background: var(--card-bg);
		box-shadow: none;
		border-radius: 0;
	}

	/* Controls stay fixed at top */
	.controls-container {
		position: fixed !important;
		top: 0.5em;
		right: 0.5em;
		z-index: 1001 !important;
	}

	.control-btn {
		width: 44px;
		height: 44px;
		font-size: 1.2em;
	}

	/* Navigation menu - use transform for smooth animation */
	.nav-menu {
		position: fixed !important;
		top: 0 !important;
		right: 0 !important;
		width: 280px;
		height: 100vh;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 1000 !important;
	}

	.nav-menu.open {
		transform: translateX(0);
	}

	/* Typography - single column layout */
	h1, h1 + p, #webaddress, p, ul {
		position: static !important;
		left: 0 !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 0 0.5em !important;
		text-align: left !important;
	}

	h1 {
		font-size: 1.8em !important;
		margin-top: 0.5em !important;
		margin-bottom: 0.5em !important;
	}

	h2 {
		position: static !important;
		top: auto !important;
		left: 0 !important;
		width: 100% !important;
		text-align: left !important;
		justify-content: flex-start !important;
		margin-top: 1.5em !important;
		margin-bottom: 0.8em !important;
		padding-top: 0.8em !important;
		padding-left: 0.5em !important;
		padding-right: 0.5em !important;
		border-top: 1px solid var(--border-color) !important;
	}

	h3 {
		position: static !important;
		top: auto !important;
		left: 0 !important;
		width: 100% !important;
		text-align: left !important;
		margin-top: 1.2em !important;
		margin-bottom: 0.5em !important;
		padding-left: 0.5em !important;
	}

	p {
		margin-bottom: 0.8em;
		line-height: 1.5;
	}

	ul {
		margin-bottom: 1em;
	}

	li {
		margin: 0.4em 0;
		padding-left: 0;
		text-indent: 0;
		line-height: 1.4;
	}

	li::before {
		content: "› ";
		color: var(--heading-color);
		font-weight: bold;
	}

	/* Date codes inline on mobile */
	p code,
	code.date-code {
		display: inline;
		margin-left: 0.5em;
	}

	/* Skill tags */
	.skill-tags {
		position: static;
		left: 0;
		width: 100%;
		padding: 0;
		margin: 0.5em 0;
	}

	/* Entry styling */
	.entry-header {
		margin-top: 1em;
		padding-top: 0.5em;
	}

	ul.entry-details {
		position: static;
		left: 0;
		width: 100%;
		margin-left: 0;
		padding-left: 0;
	}

	ul.entry-details li {
		padding-left: 0;
	}

	/* Specialization tags */
	.specialization-inline {
		gap: 6px;
	}

	.spec-tag {
		padding: 4px 8px;
		font-size: 0.85em;
	}

	/* Career timeline - single column */
	.career-timeline {
		margin-left: 3em !important;
		width: calc(100% - 3.5em) !important;
		padding-left: 1em !important;
	}

	.career-timeline::before {
		left: 0 !important;
	}

	.position-marker {
		left: -1em !important;
	}

	.timeline-company,
	.position-content {
		width: 100% !important;
	}

	/* Position details - more padding from timeline */
	ul.position-details {
		padding-left: 0.8em !important;
		margin-left: 0 !important;
	}

	ul.position-details li {
		padding-left: 0 !important;
	}

	/* Date rotated 90 degrees along the red line - on the LEFT side, ending at circle */
	.position-header {
		position: relative !important;
	}

	.position-header .date-code {
		position: absolute !important;
		left: -3.5em !important;
		top: 0.2em !important;
		transform: rotate(-90deg) translateX(-100%) !important;
		transform-origin: left top !important;
		background: transparent !important;
		padding: 0 !important;
		font-size: 0.75em !important;
		white-space: nowrap !important;
		color: var(--code-color) !important;
	}

	/* Previous experience */
	.previous-experience {
		margin-left: 0;
		width: 100%;
		padding: 0 0.5em;
	}

	/* Collapsible content */
	.collapsible-content {
		width: 100%;
	}

	.collapsible-content > .entry-header:first-of-type {
		margin-top: 0;
	}

	/* Language tags */
	.languages-container {
		position: static !important;
		left: 0 !important;
		width: 100% !important;
		padding: 0 0.5em !important;
	}

	/* Footer */
	.site-footer {
		position: static;
		left: 0;
		transform: none;
		width: 100%;
		padding: 1em;
		text-align: center;
	}
}

/* Smaller phones */
@media screen and (max-width: 480px) {
	body {
		font-size: 15px;
	}

	.text-container {
		padding: 0.5em;
		padding-top: 3.5em;
	}

	h1 {
		font-size: 1.5em;
	}

	.control-btn {
		width: 40px;
		height: 40px;
		font-size: 1.1em;
	}

	.nav-menu {
		width: 100%;
	}

	.spec-tag,
	.skill-tag {
		padding: 3px 6px;
		font-size: 0.8em;
	}
}

/* Nested list spacing */
li li {
	margin-top: 0.3em;
	margin-bottom: 0.3em;
}

/* ===== CAREER TIMELINE ===== */
.career-timeline {
	position: relative;
	margin-left: 22%;
	width: 76%;
	padding-left: 1.5em;
}

.career-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom, var(--timeline-color), var(--timeline-color) 70%, var(--border-color));
	border-radius: 2px;
}

.timeline-entry {
	position: relative;
	margin-bottom: 2em;
}


@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 3px var(--card-bg), 0 0 0 5px var(--timeline-color); }
	50% { box-shadow: 0 0 0 3px var(--card-bg), 0 0 0 8px rgba(170, 0, 0, 0.3); }
}

body.dark-mode .timeline-position.promoted .position-marker {
	animation-name: pulse-dark;
}

@keyframes pulse-dark {
	0%, 100% { box-shadow: 0 0 0 3px var(--card-bg), 0 0 0 5px var(--timeline-color); }
	50% { box-shadow: 0 0 0 3px var(--card-bg), 0 0 0 8px rgba(255, 107, 107, 0.3); }
}

.timeline-company {
	margin-bottom: 0.5em;
}

.timeline-company strong {
	font-size: 1.1em;
	color: var(--text-color);
}

.timeline-positions {
	position: relative;
}

.timeline-position {
	display: flex;
	gap: 1em;
	margin-bottom: 1.5em;
	position: relative;
}

.timeline-position:last-child {
	margin-bottom: 0;
}

.position-marker {
	position: absolute;
	left: -1.5em;
	top: 0.3em;
	width: 8px;
	height: 8px;
	background: var(--border-color);
	border-radius: 50%;
	transform: translateX(-2.5px);
	z-index: 1;
}

.timeline-position.promoted .position-marker {
	background: var(--timeline-color);
	width: 12px;
	height: 12px;
	transform: translateX(-4.5px);
	top: 0.15em;
	box-shadow: 0 0 0 3px var(--card-bg), 0 0 0 5px var(--timeline-color);
	animation: pulse 2s ease-in-out infinite;
}

.position-content {
	flex: 1;
}

.position-header {
	display: flex;
	align-items: baseline;
	gap: 0.8em;
	margin-bottom: 0.5em;
	flex-wrap: wrap;
}

.position-header em {
	color: var(--heading-color);
	font-style: normal;
	font-weight: 600;
	font-size: 1.05em;
}

/* Date code positioned to the left of the timeline */
.position-header .date-code {
	position: absolute;
	left: -1.5em;
	transform: translateX(-100%);
	margin-left: -2em;
	font-family: 'Consolas', 'Courier New', monospace;
	font-size: 0.8em;
	color: var(--code-color);
	background: transparent;
	padding: 0;
	white-space: nowrap;
	text-align: right;
}

ul.position-details {
	position: static !important;
	left: 0 !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

ul.position-details li {
	margin-bottom: 0.35em;
	color: var(--text-muted);
	font-size: 0.95em;
	padding: 0 !important;
	padding-left: 0 !important;
	margin-left: 0 !important;
	text-indent: 0 !important;
	list-style: none !important;
}

ul.position-details li::before {
	content: "› ";
	color: var(--heading-color);
	font-weight: bold;
}

/* Previous experience collapsible */
.previous-experience {
	margin-left: 22%;
	width: 76%;
	margin-top: 1.5em;
	padding-top: 1em;
	border-top: 1px dashed var(--border-color);
}

.previous-experience summary {
	cursor: pointer;
	color: var(--text-muted);
	font-size: 0.9em;
	padding: 0.5em 0;
	transition: color 0.2s ease;
}

.previous-experience summary:hover {
	color: var(--heading-color);
}

.previous-experience .timeline-entry {
	margin-top: 1em;
}

.previous-experience .timeline-entry::before {
	display: none;
}

.previous-experience .position-header .date-code {
	position: static;
	transform: none;
	margin-left: 0.5em;
	background: var(--skill-tag-bg);
	padding: 2px 8px;
	border-radius: 3px;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.text-container {
	animation: fadeIn 0.6s ease-out;
}

h2, h3, p, ul {
	animation: fadeIn 0.4s ease-out;
}
