@import url(fontawesome-all.min.css);

/*
	Hyperspace by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: linear-gradient(135deg, #0a1128 0%, #1a2947 100%);
	color: #e8eef7;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

a {
	color: #b8c9e8;
	text-decoration: none;
}

a:hover {
	color: #8ab4f8;
}

header {
	background: rgba(10, 17, 40, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(100, 149, 237, 0.2);
}

nav {
	padding: 1rem 0;
}

nav .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 600;
}

.logo a {
	color: #e8e8e8;
	text-decoration: none;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	color: #b8c9e8;
	text-decoration: none;
	transition: color 0.3s;
	font-weight: 500;
}

.nav-links a:hover {
	color: #e8e8e8;
}

main {
	margin-top: 80px;
	/* padding: 4rem 0; */
}

.section {
	padding: 2rem 0;
}

.section-title {
	font-size: 2rem;
	color: #e8e8e8;
	margin-bottom: 1rem;
	text-align: left;
}

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

.headline {
	font-size: 1.5rem;
	color: #e8eef7;
	margin-bottom: 0.5rem;
	font-weight: 500;
	text-align: left;
}

.subheadline {
	font-size: 1.1rem;
	color: #b8c9e8;
	margin-bottom: 0.5rem;
	text-align: left;
}

.skills, .connect {
	margin-top: 2.5rem;
}

.skills h3, .connect h3 {
	color: #e8e8e8;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.skills-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.skill-tag {
	background: rgba(100, 149, 237, 0.15);
	color: #e8e8e8;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	border: 1px solid rgba(100, 149, 237, 0.3);
	font-size: 0.95rem;
}

.social-links {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.social-links a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #b8c9e8;
	text-decoration: none;
	padding: 0.6rem 1.2rem;
	border: 1px solid rgba(100, 149, 237, 0.3);
	border-radius: 8px;
	transition: all 0.3s;
}

.social-links a:hover {
	background: rgba(100, 149, 237, 0.1);
	border-color: #e8e8e8;
	color: #e8e8e8;
}

.interests-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.interest-card {
	background: rgba(26, 41, 71, 0.6);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid rgba(100, 149, 237, 0.2);
	transition: all 0.3s;
}

.interest-card:hover {
	transform: translateY(-5px);
	border-color: #e8e8e8;
	background: rgba(26, 41, 71, 0.8);
}

.interest-card svg {
	color: #e8e8e8;
	margin-bottom: 1rem;
}

.interest-card h3 {
	color: #e8eef7;
	font-size: 1.2rem;
	margin-bottom: 0.8rem;
}

.interest-card p {
	color: #b8c9e8;
	font-size: 0.95rem;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.project-card {
	background: rgba(26, 41, 71, 0.6);
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid rgba(100, 149, 237, 0.2);
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
}

.project-card:hover {
	transform: translateY(-5px);
	border-color: #e8e8e8;
	background: rgba(26, 41, 71, 0.8);
}

.project-card h3 {
	color: #e8eef7;
	font-size: 1.1rem;
	margin-bottom: 0.8rem;
}

.project-card p {
	color: #b8c9e8;
	font-size: 0.9rem;
	margin-bottom: 1rem;
	flex-grow: 1;
}

.tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.tech-stack span {
	background: rgba(100, 149, 237, 0.15);
	color: #e8e8e8;
	padding: 0.3rem 0.6rem;
	border-radius: 12px;
	font-size: 0.8rem;
	border: 1px solid rgba(100, 149, 237, 0.2);
}

.github-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #e8e8e8;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.github-link:hover {
	color: #8ab4f8;
}

/* Article Page Styles */
.article-content {
	max-width: 1200px;
	margin: 0 auto;
}

.article-header {
	margin-bottom: 3rem;
}

.article-meta {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.article-meta span {
	color: #b8c9e8;
	font-size: 0.9rem;
}

.category {
	color: #e8e8e8 !important;
	font-weight: 500;
}

.article-title {
	font-size: 3rem;
	color: #e8eef7;
	margin-bottom: 1rem;
	line-height: 1.2;
	text-align: left;
}

.article-subtitle {
	font-size: 1.3rem;
	color: #b8c9e8;
	line-height: 1.5;
	text-align: left;
}

.article-body {
	max-width: 800px;
}

.article-body h2 {
	font-size: 2rem;
	color: #e8e8e8;
	margin-top: 3rem;
	margin-bottom: 1rem;
	text-align: left;
}

.article-body h3 {
	font-size: 1.5rem;
	color: #e8e8e8;
	margin-top: 2rem;
	margin-bottom: 1rem;
	text-align: left;
}

.article-body p {
	font-size: 1.1rem;
	color: #e8eef7;
	margin-bottom: 1.5rem;
	line-height: 1.8;
	text-align: left;
}

.article-body ul, .article-body ol {
	margin: 1.5rem 0;
	padding-left: 2rem;
}

.article-body li {
	font-size: 1.1rem;
	color: #e8eef7;
	margin-bottom: 1rem;
	line-height: 1.8;
}

.article-body strong {
	color: #e8e8e8;
}

.article-body blockquote {
	border-left: 4px solid #e8e8e8;
	padding-left: 1.5rem;
	margin: 2rem 0;
	font-style: italic;
	color: #b8c9e8;
	font-size: 1.2rem;
}

.article-footer {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(100, 149, 237, 0.2);
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 2rem;
}

.tag {
	background: rgba(100, 149, 237, 0.15);
	color: #e8e8e8;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	border: 1px solid rgba(100, 149, 237, 0.3);
	font-size: 0.9rem;
}

.back-link a {
	color: #e8e8e8;
	text-decoration: none;
	font-size: 1.1rem;
	transition: color 0.3s;
}

.back-link a:hover {
	color: #8ab4f8;
}

footer {
	background: rgba(10, 17, 40, 0.95);
	padding: 2rem 0;
	text-align: center;
	border-top: 1px solid rgba(100, 149, 237, 0.2);
	margin-top: 4rem;
	position: bottom;
}

footer p {
	color: #b8c9e8;
}

/* Media Queries */
@media (max-width: 968px) {
	.interests-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.article-title {
		font-size: 2rem;
	}

	.article-subtitle {
		font-size: 1.1rem;
	}

	.article-body h2 {
		font-size: 1.5rem;
	}

	.article-body h3 {
		font-size: 1.2rem;
	}

	.article-body p,
	.article-body li {
		font-size: 1rem;
	}

	.nav-links {
		gap: 1rem;
	}
}

@media (max-width: 640px) {
	.interests-grid,
	.projects-grid {
		grid-template-columns: 1fr;
	}
	
	.nav-links {
		gap: 1rem;
	}
}