@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 80%;
}

.nav-link {
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
	color: white;
	transform: translateY(-1px);
}

.section-title {
	font-size: 2.75rem;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.hero-text {
	font-size: 3.5rem;
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.card {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
	transform: translateY(-8px);
	border-color: #666;
}

.about img {
    filter: none !important;
    -webkit-filter: none !important;
}
