@font-face {
	font-display: swap;
	font-family: 'Oxygen';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/oxygen-v16-latin-300.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Oxygen';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/oxygen-v16-latin-regular.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Oxygen';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/oxygen-v16-latin-700.woff2') format('woff2');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Oxygen', sans-serif;
	background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
	min-height: 100vh;
	padding: 2rem;
	color: #212529;
}

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

.header {
	text-align: center;
	margin-bottom: 4rem;
	padding: 2rem 0;
}

.logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	gap: 10px;
}

.logo {
	width: 50px;
	height: 50px;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.header h1 {
	font-size: 3rem;
	margin: 0;
	font-weight: 600;
	color: #212529;
	letter-spacing: -0.5px;
}

.header p {
	font-size: 1.1rem;
	color: #6c757d;
	margin-top: 0.5rem;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

.project-card {
	--project-color: #6b7280;
	background: #ffffff;
	border: 1px solid #dee2e6;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	display: block;
	color: inherit;
}

.project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border-color: var(--project-color);
}

.project-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--project-color);
}

.project-name {
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #212529;
}

.project-url {
	display: inline-block;
	color: var(--project-color);
	text-decoration: none;
	font-weight: 500;
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
	border: 2px solid var(--project-color);
	border-radius: 6px;
	transition: all 0.3s ease;
	background: transparent;
}

.project-url:hover {
	background: var(--project-color);
	color: white;
	transform: translateX(4px);
}

.project-description {
	color: #495057;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.project-status {
	display: inline-block;
	background: var(--project-color);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
}

.footer {
	text-align: center;
	margin-top: 4rem;
	padding: 2rem 0;
	color: #6c757d;
	border-top: 1px solid #dee2e6;
}

@media (max-width: 768px) {
	.projects-grid {
		grid-template-columns: 1fr;
	}

	.header h1 {
		font-size: 2rem;
	}

	.logo {
		width: 60px;
		height: 60px;
	}

	body {
		padding: 1rem;
	}

	.project-card {
		padding: 1.5rem;
	}
}