/**
 * Harithangavelu — global design tokens
 */

:root {
	--background: #ffffff;
	--foreground: #000000;
	--muted-foreground: #6b7280;
	--accent: #5df8d8;
	--top-bar-bg: #0a0a0a;
	--top-bar-text: #d1d5db;
	--border: #e5e7eb;
	--input: #e5e7eb;
	--ring: #000000;
	--radius: 0.5rem;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 5%);
	--font-display: "Libre Baskerville", Georgia, serif;
	--font-body: "Inter", sans-serif;
	--content-max: 1300px;
	--section-padding-x: 1.5rem;
	--hg-topbar-height: 2.5rem;
	--hg-header-height: 4.75rem;
	--hg-chrome-height: calc(var(--hg-topbar-height) + var(--hg-header-height));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--foreground);
	background-color: var(--background);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 480px) {
	:root {
		--section-padding-x: 1rem;
	}
}
