/* syne-mono-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Syne Mono';
	font-style: normal;
	font-weight: 400;
	src: url('/fonts/syne-mono-v15-latin-regular.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
	--background: #fffef3;
	--text: #2d2d2d;
	--text-light: #666;
	--accent: #8b5a83;
	--accent-light: #a67ca0;
	--accent-soft: #f0e6ed;
	--border: #e8e6e0;
	--card-bg: #ffffff;
	--method-bg: #fff4fc;
	--card-shadow: rgba(0, 0, 0, 0.08);
	--hover-shadow: rgba(0, 0, 0, 0.12);
	--success: #7c9885;
	--warning: #d4a574;
	--github-special: #404040;
	--border-colour: #222222;

	--font-main: 'Syne Mono';
	--font-small: 'Faculty Glyphic';
}



html.dark-mode {
	--text: #fffef3;
	--background: #1d1d1d;
	--text-light: #c8c8c8;
	--accent: #aa82a4;
	--accent-light: #bd92b7;
	--accent-soft: #2d2d2d;
	--border: #503f28;
	--card-bg: #2d2d2d;
	--method-bg: #595959;
	--card-shadow: rgba(0, 0, 0, 0.08);
	--hover-shadow: rgba(0, 0, 0, 0.12);
	--success: #7c9885;
	--warning: #d4a574;
	--github-special: #222222;

	--border-colour: white;
}

html.dark-mode a {
	color: white;
}

html.dark-mode .about-item ul {
	color: var(--text);
}
html.dark-mode .about-item ul a {
	color: var(--accent-light);
}

html.dark-mode .project-item p {
	color: var(--text-light);
}



* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--background);
	font-family: var(--font-main), monospace;
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Keyframes for animations */

@keyframes rainbow {
	0% {
		filter: hue-rotate(0deg);
	}

	50% {
		filter: hue-rotate(360deg);
	}
}

@keyframes rainbowsvg {
	0% {
		filter: hue-rotate(0deg);
	}

	50% {
		filter: hue-rotate(360deg);
	}
}

/* Header */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--background);
	border-bottom: 1px solid var(--border);
	z-index: 1000;
}

#header svg {
	height: 20px;
	padding-bottom: 4px;
	vertical-align: middle;
	will-change: filter;
	fill: var(--accent);
	animation: rainbowsvg 15s ease-in-out infinite;
}


.header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.logo {
	font-weight: 600;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s;
	color: var(--accent-light);
	text-decoration: none;
	position: relative;
	overflow: hidden;
	animation: rainbow 15s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

.logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

	transform: translateX(-100%);

	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(139, 90, 131, 0.2), transparent);
	transition: transform 0.5s;

	will-change: transform;
}

.logo:hover {
	color: var(--accent);

}

.logo:hover::before {
	transform: translateX(100%);
}

#menu {
	display: flex;
	gap: 8px;
}

.tab {
	padding: 10px 20px;
	border-radius: 20px;
	background: transparent;
	color: var(--text-light);
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
}

.tab::before {
	content: '';
	position: absolute;
	top: 0;
	transform: translateX(-100%);
	width: 100%;
	height: 100%;
	left: 0;
	background: var(--accent-soft);
	transition: transform 0.3s ease;
	z-index: -1;

	will-change: transform;
}

.tab:hover {
	color: var(--accent);
	border-color: var(--accent-light);
	transform: translateY(-2px);
}

.tab:hover::before {
	transform: translateX(0);
}

.tab.active {
	background: var(--accent);
	color: white;
	border-color: var(--accent);
	animation: glow 2s ease-in-out infinite alternate;
}

.tab-svg {
	height: 100%;
}

.tab-svg.active {
	background: initial;
	color: initial;
	border-color: transparent;
}


/* Main Content */
main {
	padding-top: 70px;
}

/* Welcome Section */
.welcome-section {
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
	display: flex;
}

.welcome-content {
	text-align: center;
	width: 91vw;
	padding-bottom: 10vh;
	top: 0;
}

.hero-intro {
		margin-bottom: 7vh;
}

.hero-hey {
	display: block;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.25em;
	color: var(--text-light);
	text-transform: uppercase;
	margin-bottom: 2px;
}

.welcome-content h1 {
	font-size: 85px;
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--accent-light);
	transition: all 0.3s;
	animation: rainbow 15s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
	line-height: 1.05;
}

.hero-tagline {
	
	font-size: 18px;
	color: var(--text-light);
	margin: 0 0 8px;
	line-height: 1;
	letter-spacing: 0.02em;
}

.welcome-content h1 a {
	text-decoration: none;
	color: var(--accent-light);
}


.looking-for h2 {
	font-size: 23px;
	font-weight: 600;
	margin: 0 0 32px;
	color: var(--text);
}

.options-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}

.option-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	box-shadow: 0 2px 8px var(--card-shadow);
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.option-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--accent-soft), var(--accent-light));
	transition: transform 0.4s ease;
	z-index: -1;

	will-change: transform;
	transform: translateX(-100%);
}

.option-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 8px 25px var(--hover-shadow);
	border-color: var(--accent-light);
}

.option-card:hover::before {
	transform: translateX(0);
}

.option-img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	margin-bottom: 16px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	fill: var(--accent);
	animation: rainbowsvg 15s ease-in-out infinite;
}

.option-card h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 8px;
	color: var(--text);
	transition: color 0.3s;
}

.option-card:hover h3 {
	color: var(--accent);
}

.option-card p {
	font-size: 14px;
	color: var(--text-light);
	margin: 0;
	line-height: 1.4;
	transition: color 0.3s;
}

.option-card:hover p {
	color: var(--text);
}

.option-card:hover p {
	color: var(--text);
}




/* Add staggered delay for option cards */
.option-card:nth-child(1) {
	--delay: 0.1s;
}

.option-card:nth-child(2) {
	--delay: 0.2s;
}

.option-card:nth-child(3) {
	--delay: 0.3s;
}

/* Contact Info Section */
.contact-info-section {
	padding: 40px 24px;
	background: var(--accent-soft);
	border-top: 1px solid var(--border);
}

.contact-content {
	max-width: 80vw;
	margin: 0 auto;
	text-align: center;
}

.contact-content h2 {
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 32px;
	color: var(--text);
}

.contact-methods {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: var(--method-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.contact-method::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent);
	transition: transform 0.3s ease;
	z-index: -1;

	will-change: transform;

	transform: translateX(-100%);
}

.contact-method:hover {
	color: white;
	border-color: var(--accent);
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 25px rgba(139, 90, 131, 0.3);
}

.contact-method:hover::before {
	transform: translateX(0);
}

/* Content Sections */
.content-section {
	padding: 20px 24px;
	max-width: 80vw;
	margin: 0 auto;
	scroll-margin-top: 60px;
}

.content-section h2 {
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 32px;
	color: var(--text);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.content-section h2::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-light));
	transform: translateX(-50%);
}

/* Featured Project */
.featured-project {
	background: linear-gradient(135deg, var(--accent), var(--accent-light));
	background-size: 400% 400%;
	border-radius: 16px;
	padding: 32px;
	margin-bottom: 10px;
	color: white;
	margin-left: 10vw;
	margin-right: 10vw;
	cursor: pointer;
	line-height: 1.3;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	transform: scale(1);

	display: flex;
	gap: 20px;
}

.featured-project:hover {
	transform: scale(1.02);
	box-shadow: 0 12px 30px rgba(139, 90, 131, 0.3);
}

.featured-project:hover::before {
	left: 0;
}

.featured-project>* {
	position: relative;
	z-index: 1;
}

.featured-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.featured-project h3 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
	transition: all 0.3s;
}


.featured-badge {
	background: rgba(255, 255, 255, 0.2);
	padding: 6px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s;
	animation: glow 2s ease-in-out infinite alternate;
}

.featured-project:hover .featured-badge {
	animation: bounce 1s ease-in-out infinite;
	background: rgba(255, 255, 255, 0.3);
}

.featured-project p {
	font-size: 16px;
	margin: 0 0 12px;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.featured-project:hover p {
	opacity: 1;
}

.project-links {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.overall-primary-link {
	color: white;
	text-decoration: none;
}

.primary-link {
	color: white !important;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	padding: 12px 24px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.primary-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	transition: transform 0.3s ease;
	z-index: -1;

	transform: translateX(-100%);
	will-change: transform;
}

.primary-link:hover {
	transform: scale(1.05);
}

.primary-link:hover::before {
	transform: translateX(0);
}

/* Projects Grid */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.project-item-link {
	text-decoration: none;
	color: inherit;
	display: block;
	height: 100%;
	line-height: 0.9;
}


.project-item {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 24px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px var(--card-shadow);
	cursor: pointer;
	line-height: 1.3;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.project-item:hover {
	transform: translateY(-4px) rotate(1deg);
	box-shadow: 0 8px 25px var(--hover-shadow);
	border-color: var(--accent-light);
}


.project-item:nth-child(even):hover {
	transform: translateY(-4px) rotate(-1deg);
}

.project-item>* {
	position: relative;
	z-index: 1;
}

/* Project Image Styling */
.project-image {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 16px;
	background: var(--accent-soft);
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.project-image:hover {
	transform: scale(1.02);
}

.featured-image {
	height: 200px;
}

.project-item h4 {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 12px;
	color: var(--text);
	transition: all 0.3s;
}



.project-item:hover h4 {
	transform: translateX(5px);
}

.project-item p {
	margin: 0;
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.3;
	transition: color 0.3s ease;
}

.project-item:hover p {
	color: var(--text);
}

.project-blog-button {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	margin-top: 1rem;
	background: var(--method-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.project-blog-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent);
	transition: transform 0.3s ease;
	z-index: -1;

	will-change: transform;

	transform: translateX(-100%);
}

.project-blog-button:hover {
	color: white;
	border-color: var(--accent);
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 25px rgba(139, 90, 131, 0.3);
}

.project-blog-button:hover::before {
	transform: translateX(0);
}


.view-all {
	text-align: center;
}

.view-all-btn {
	background: var(--accent);
	color: white;
	border: none;
	padding: 22px 30px;
	border-radius: 16px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: inherit;
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.view-all-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-light);
	transition: transform 0.3s ease;
	z-index: -1;

	will-change: transform;

	transform: translateX(-100%);
}

.view-all-btn:hover {
	transform: translateY(-2px) scale(1.05);
}

.view-all-btn:hover::before {
	transform: translateX(0);
}


/* Tutoring Section */

/* Search and Tabs */
.search-container {
	margin-top: 20px;
	margin-bottom: 20px;
}

.search-input {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
	border: 1px solid var(--border);
	border-radius: 4px;
	background-color: var(--card-bg);
	color: var(--text);
	font-family: var(--font-main);
	font-size: 16px;
}

.search-input:focus {
	outline: none;
	border-color: var(--accent);
}

.search-results {
	margin-top: 20px;
}

.hidden {
	display: none !important;
}

.tabs-container {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.tab-button {
	background: none;
	border: none;
	font-family: var(--font-main);
	font-size: 18px;
	cursor: pointer;
	color: var(--text-light);
	padding-bottom: 5px;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}

.tab-button.active {
	color: var(--accent);
	border-bottom-color: var(--accent);
}

.tab-button:hover {
	color: var(--text);
}

/* About Section */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 80vw;
	margin: 0 auto;
}

.about-stretch {
	grid-column: 1 / -1;
	grid-row: 2;
}

.about-item {
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px var(--card-shadow);
	text-align: center;
	position: relative;
	overflow: hidden;
	max-width: 60vw;
	margin: 0 auto;
	-webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-item:hover {
	border-color: var(--accent-light);
}
.about-item a {
	transition: color .2s;
	-webkit-transition: color .2s;
	-moz-transition: color .2s;
	-ms-transition: color .2s;
	-o-transition: color .2s;
}
.about-item ul li:hover a {
	color: white;
}

.about-item b {
	text-decoration: underline;
}


.about-item>* {
	position: relative;
	z-index: 1;
}

.about-item h3 {
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 20px;
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s;
}


.about-item h3::before {
	font-size: 24px;
	transition: all 0.3s;
}

.about-item:hover h3::before {
	transform: scale(1.3);
	animation: bounce 1s ease-in-out infinite;
}

.about-item ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 16px;
	line-height: 1.4;
	color: var(--text-light);
	text-align: left;
	font-family: var(--font-main);
}

.about-item ul li {
	margin-bottom: 10px;
	padding: 6px 12px;
	background: var(--accent-soft);
	border-radius: 8px;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.about-item ul li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-light);
	transition: transform 0.3s ease;
	z-index: -1;

	will-change: transform;

	transform: translateX(-100%);
}

.about-item ul li:hover {
	color: white;
	transform: translateX(4px) scale(1.02);
}

.about-item ul li:hover::before {
	transform: translateX(0);
}

.about-intro {
	margin-bottom: 20px;
}

/* Status Update Styles */
.status-text {
	font-weight: 600;
	color: var(--accent);
	transition: all 0.3s;
}

.retro-counter {
	background: linear-gradient(135deg, var(--accent), var(--accent-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
	font-size: 1.1em;
	letter-spacing: 1px;
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		filter: drop-shadow(0 0 0px var(--accent));
	}

	to {
		filter: drop-shadow(0 0 2px var(--accent-light));
	}
}

#small-tools {
	scroll-margin-top: 60px;
}


.smaller {
	padding: 20px;
}


/* GitHub Special Styling */
.github-special {
	background: var(--accent);
	position: relative;
	overflow: hidden;
}

.github-special h4 {
	color: white;
}

.github-special p {
	color: white;
}

.github-special>* {
	position: relative;
	z-index: 1;
}

/* GitHub Contribution Graph */
#github-contributions {
	display: flex;
	justify-content: center;
	background: transparent !important;
	padding: 8px 4px !important;
}

#github-contributions:hover {
	transform: none !important;
	color: inherit !important;
}

#github-contributions::before {
	display: none !important;
}

.github-contrib-graph {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 8px;
	display: block;
	opacity: 0.85;
	transition: opacity 0.3s;
}

.github-contrib-graph:hover {
	opacity: 1;
}

@media (max-width: 768px) {
	.github-contrib-graph {
		max-width: 100%;
	}
}

/* Section Separators */
.section-separator {
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--border), transparent);
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
	max-width: 80%;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}

.section-separator::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

	transform: translateX(-100%);
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
	animation: shimmer 8s ease-in-out infinite;

	will-change: transform;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}

	50% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

/* Enhanced separator for mobile */
@media (max-width: 768px) {




.hero-intro {
	margin-top: 2vh;
		margin-bottom: 4vh;
}
.hero-tagline {
	font-size: 15px;
}

	.project-links {
		display: none;
	}

	.section-separator {
		margin: 20px auto;
		max-width: 90%;
	}
}


.section-content h2 {
	color: var(--accent);
	animation: rainbow 15s ease-in-out infinite;

}

.contact-content h2 {
	color: var(--accent);
	animation: rainbow 15s ease-in-out infinite;
}


@media (max-width: 1300px) {

	.featured-project {
		margin-right: 0vw;
		margin-left: 0vw;
	}
}

@media (max-width: 1000px) {
	.about-item {
		max-width: 100vw;
		margin: 10px 0;
	}

	.about-grid {
		max-width: 95vw;
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.about-stretch {
		grid-row: 3;
	}

	.about-item {
		padding: 20px;
		max-width: 100vw;
		margin: 10px 0;
	}
}

/* Responsive Design */
@media (max-width: 768px) {

	.featured-image {
		height: 100px;
	}

	.featured-project {
		flex-direction: column-reverse;
	}

	.header-content {
		padding: 0 16px;
		height: 60px;
	}

	.logo {
		display: none;
		font-size: 18px;
	}

	#menu {
		width: 100vw;
		justify-content: center;
	}

	.tab {
		padding: 8px 16px;
		font-size: 14px;
		flex-grow: 1;
		text-align: center;
	}

	main {
		padding-top: 60px;
	}

	.welcome-section {
		padding-top: 1.5rem;
		padding-left: 0;
		padding-right: 0;
	}

	.welcome-content {
		width: 85vw;
	}

	.welcome-content h1 {
		font-size: 52px;
		margin: 0;
		margin-bottom: 10px;
	}

	.looking-for h2 {
		font-size: 16px;
		margin-bottom: 0px;
	}

	.options-grid {
		gap: 10px;
		margin-bottom: 10px;
		align-items: baseline;
	}

	.option-card {
		padding: 5px;
		padding-left: 15px;
		width: 80vw;
		flex-shrink: 0;
		text-align: left;
	}

	.option-card h3 {
		margin-bottom: 4px;
		display: flex;
		align-items: center;
		justify-content: left;
		gap: 8px;
	}
	.option-card p {
		display:none;
	}

	.option-img {
		margin: 0;
		display: inline;
		width: 1.5em;
		height: 1.5em;
	}

	.smaller h3 {
		font-size: 18px;
	}

	.smaller p {
		font-size: 14px;
	}



	.content-section {
		padding: 5px 0px;
		min-width: 95vw;
		margin-left: 2.5vw;
		margin-right: 2.5vw;
	}

	.section-content {
		max-width: 100vw;
		line-height: 1;
	}

	.content-section h2 {
		font-size: 28px;
	}

	.featured-project {
		margin-right: 0;
		margin-left: 0;
		margin-top: 10px;
		margin-bottom: 10px;
		padding: 24px;
		padding-bottom: 5px;
	}

	.remove-padding {
		margin-bottom: 0px;
	}


	.featured-project h3 {
		font-size: 24px;
	}


	.project-item {
		padding: 10px;
	}

	.project-image {
		height: 120px;
		margin-bottom: 12px;
	}


	.projects-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}


}


.all-projects {
	padding-top: 0;
}

/* Extra Links Section */
.extra-links-section {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
	margin-top: 16px;
	flex-wrap: wrap;
}

.extra-links-label {
	font-size: 14px;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.extra-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

.extra-link {
	font-size: 16px;
	color: var(--text-light);
	text-decoration: none;
	padding: 3px 10px;
	border: 1px solid var(--border);
	border-radius: 20px;
	transition: all 0.2s;
}

.extra-link:hover {
	color: var(--accent);
	border-color: var(--accent-light);
	background: var(--accent-soft);
}


@media (max-width: 480px) {

	.welcome-content h1 {
		font-size: 40px;
	}

	.options-grid {
		grid-template-columns: 1fr;
	}

	.option-card {
		padding: 10px;
	}

	.featured-header {
		flex-direction: row;
		align-items: flex-start;
		gap: 12px;
	}

	.about-grid {
		grid-template-columns: 1fr;
	}

	.about-item {
		padding: 16px;
	}
}

/* SVG icon for project titles (replaces emoji) */
.project-icon {
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	display: inline-block;
	margin-right: 0.1em;
	margin-bottom: 0.15em;
	fill: var(--accent);
	animation: rainbowsvg 15s ease-in-out infinite;
}

.icon-invert {
	fill: white;
}

/* On mobile, slightly reduce icon size for better fit */
@media (max-width: 768px) {
	.project-icon {
		width: 1.2em;
		height: 1.2em;
		margin-right: 0.3em;
		margin-bottom: 0.1em;
	}
}

/* Status Updates */
.status-text {
	color: var(--accent-light);
	font-weight: bold;
	transition: color .5s;
}

.about-intro ul li:hover .status-text {
	color: white;
}


/* Responsive adjustments for status updates */
@media (max-width: 768px) {
	/* Remove mobile-specific status-updates and status-button styles */
}

/* CV Page Styles */
.cv-actions {
	align-items: center;
	align-self: center;
	justify-content: center;
	gap: 8px;
	display: flex;
	text-align: center;
	margin: 1rem 0;
}

@media (max-width: 600px) {
	.cv-actions {
		display: grid;
		grid-template-columns: 50% 50%;

	}

	.download-link {}
}

.download-link {
	display: inline-flex;
	align-items: center;
	padding: 12px 20px;
	background: var(--method-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.download-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent);
	transition: transform 0.3s ease;
	z-index: -1;
	will-change: transform;
	transform: translateX(-100%);
}

.download-link:hover {
	color: white;
	border-color: var(--accent);
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 25px rgba(139, 90, 131, 0.3);
}

.download-link:hover::before {
	transform: translateX(0);
}

/* Exploration Section */
.exploration-section {
	padding: 40px 24px;
	max-width: 80vw;
	margin: 0 auto;
}

.exploration-content {
	text-align: center;
}

.exploration-content h3 {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 24px;
	color: var(--text);
}

.exploration-links {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.explore-link,
.explore-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 16px 20px;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.3s;
	cursor: pointer;
	min-width: 120px;
}

.explore-button {
	font-family: inherit;
}

.explore-link svg,
.explore-button svg {
	width: 28px;
	height: 28px;
	fill: var(--accent);
	transition: all 0.3s;
}

.explore-link:hover,
.explore-button:hover {
	transform: translateY(-4px) scale(1.05);
	border-color: var(--accent);
	box-shadow: 0 8px 20px var(--hover-shadow);
}

.explore-link:hover svg,
.explore-button:hover svg {
	transform: rotate(10deg) scale(1.1);
	fill: var(--accent-light);
}

/* Random Post Button */
.random-btn {
	background: linear-gradient(135deg, var(--accent), var(--accent-light));
	color: white;
	border: none;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.3s;
}

.random-btn:hover {
	transform: scale(1.05) rotate(2deg);
	box-shadow: 0 8px 20px rgba(139, 90, 131, 0.4);
}

@media (max-width: 600px) {
	.exploration-links {
		gap: 12px;
	}

	.explore-link,
	.explore-button {
		min-width: 100px;
		padding: 12px 16px;
		font-size: 13px;
	}

	.explore-link svg,
	.explore-button svg {
		width: 24px;
		height: 24px;
	}
}

.cv-embed {
	margin-top: 2rem;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	background: var(--card-bg);
}

/* Clap Counter */
#clap-item {
	transition: transform 0.15s ease;
	user-select: none;
}

#clap-item:hover {
	transform: translateX(4px) scale(1.02) !important;
	cursor: pointer;
}

#clap-item:active {
	transform: scale(0.96) translateX(2px) !important;
	filter: brightness(1.15);
}

.kudos-count {
	font-weight: 700;
	color: var(--accent-light);
	animation: glow 2s ease-in-out infinite alternate;
	transition: color 0.5s;
}

.about-intro ul li:hover .kudos-count {
	color: white;
	animation: none;
	filter: none;
}

/* ── Kudos widget (shared) ─────────────────────────────── */

.kudos-widget {
	user-select: none;
	transition: transform 0.15s ease;
}

.kudos-widget:active {
	transform: scale(0.94);
}

/* Optional label text inside button kudos widget */
.kudos-label {
	color: var(--text-light);
	font-weight: 500;
	margin-right: 6px;
}

/* ── Navbar kudos button ───────────────────────────────── */

.kudos-nav-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 12px;
	border-radius: 99px;
	border: 1.5px solid var(--accent-light);
	background: transparent;
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.kudos-nav-btn:hover {
	background: var(--accent-soft);
	border-color: var(--accent);
	transform: translateY(-1px) scale(1.04);
	box-shadow: 0 4px 12px var(--hover-shadow);
}

.kudos-nav-btn .kudos-heart {
	color: var(--accent-light);
	font-size: 15px;
	transition: transform 0.2s;
	animation: glow 2s ease-in-out infinite alternate;
}

.kudos-nav-btn:hover .kudos-heart {
	transform: scale(1.25);
}

.kudos-nav-btn .kudos-num {
	color: var(--accent-light);
	font-weight: 700;
}

.kudos-nav-btn .kudos-cta {
	color: var(--text-light);
	font-weight: 400;
	font-size: 12px;
}

.sidebar-card {
	display: none;
}
/* Hide the CTA text on smaller screens, keep just heart + number */
@media (max-width: 900px) {
	.kudos-nav-btn .kudos-cta {
		display: none;
	}
}

/* On very small screens, hide the full button from the nav */
@media (max-width: 480px) {
	.kudos-nav-btn {
		display: none;
	}
}

/* ── End-of-post kudos banner ───────────────────────────── */

.post-kudos-section {
	display: flex;
	justify-content: center;
	margin: 32px 0 16px;
}

.post-kudos-inner {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 99px;
	border: 1.5px solid var(--accent-light);
	background: var(--accent-soft);
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
	transition: all 0.25s ease;
	user-select: none;
	box-shadow: 0 2px 8px var(--card-shadow);
}

.post-kudos-inner:hover {
	background: var(--accent-soft);
	border-color: var(--accent);
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 8px 20px var(--hover-shadow);
}

.post-kudos-inner:active {
	transform: scale(0.97);
}

.post-kudos-inner .kudos-num {
	font-weight: 700;
	color: var(--accent-light);
	animation: glow 2s ease-in-out infinite alternate;
}

.post-kudos-inner .kudos-cta {
	color: var(--text-light);
	font-size: 14px;
}


/* ══════════════════════════════════════════════════════
   HOME PAGE — exit animation (desktop only)
   Cards slide left + fade; title fades upward.
   ══════════════════════════════════════════════════════ */

@media (min-width: 900px) {
	body.nav-exit .hero-intro {
		animation: navExitUp 0.3s ease forwards;
		-webkit-animation: navExitUp 0.3s ease forwards;
}

	body.nav-exit .welcome-content .looking-for {
		animation: navExitLeft 0.42s cubic-bezier(0.55, 0, 0.85, 0.5) 0.04s both;
	}

}

@keyframes navExitUp {
	to {
		opacity: 0;
		transform: translateY(-28px);
	}
}

@keyframes navExitLeft {
	to {
		opacity: 0;
		transform: translateX(-22vw);
	}
}


/* ══════════════════════════════════════════════════════
   NAV SIDEBAR  (desktop only, ≥ 900px)
   ══════════════════════════════════════════════════════ */

@media (min-width: 900px) {

	/* ── sidebar container ── */
	.nav-sidebar {
		position: fixed;
		top: 70px;
		left: 0;
		bottom: 0;
		width: 220px;
		padding: 20px 12px;
		border-right: 1px solid var(--border);
		background: var(--background);
		display: flex;
		flex-direction: column;
		gap: 8px;
		z-index: 200;
		overflow-y: auto;
		scrollbar-width: none;
	}

	.nav-sidebar::-webkit-scrollbar {
		display: none;
	}

	/* Entry animation when arriving from home page */
	.nav-sidebar.sidebar-entering {
		animation: sidebarSlideIn 0.42s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	}

	/* ── individual sidebar cards ── */
	.sidebar-card {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 10px 14px;
		border-radius: 12px;
		border: 1px solid var(--border);
		background: var(--card-bg);
		text-decoration: none;
		color: var(--text);
		font-size: 13px;
		font-weight: 500;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
		overflow: hidden;
	}

	.sidebar-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, var(--accent-soft), var(--accent-light));
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		z-index: -1;
		will-change: transform;
	}

	.sidebar-card:hover {
		border-color: var(--accent-light);
		transform: translateX(4px);
		box-shadow: 0 4px 12px var(--card-shadow);
		color: var(--accent);
	}

	.sidebar-card:hover::before {
		transform: translateX(0);
	}

	.sidebar-card.active {
		background: var(--accent);
		color: white;
		border-color: var(--accent);
		animation: glow 2s ease-in-out infinite alternate;
	}

	.sidebar-card.active svg {
		fill: white;
		animation: none;
	}

	.sidebar-card svg {
		width: 18px;
		height: 18px;
		flex-shrink: 0;
		fill: var(--accent);
		animation: rainbowsvg 15s ease-in-out infinite;
	}

	/* ── layout: push main content right when sidebar is present ── */
	body.has-sidebar main {
		margin-left: 220px;
	}

	body.has-sidebar .content-section {
		max-width: min(80vw, calc(100% - 20px));
	}

	body.has-sidebar .about-grid {
		max-width: 100%;
	}

	body.has-sidebar .featured-project {
		margin-left: 0;
		margin-right: 0;
	}
}

@keyframes sidebarSlideIn {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
