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

:root {
	/* Kodline Brand Colors */
	--color-brand-blue: #2563eb;
	--color-brand-blue-hover: #1d4ed8;
	--color-brand-navy: #0f172a;
	--color-brand-slate: #1e293b;
	--color-brand-light: #f8fafc;
	--color-brand-accent: #38bdf8;
	
	/* Typography */
	--font-primary: 'Inter', sans-serif;
}

body {
	font-family: var(--font-primary);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--color-brand-light);
	color: var(--color-brand-slate);
}

/* Micro-interactions & Custom Utilities */
.glassmorphism {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.glassmorphism-dark {
	background: rgba(15, 23, 42, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Responsive Hide Scrollbar */
.no-scrollbar::-webkit-scrollbar {
	display: none;
}
.no-scrollbar {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}
