/* styles.css — small custom styles (Tailwind handles most) */
:root {
	/* Local webfont: Clash Display — files located in ./assets/font/ */
}
/* Local @font-face declarations */
@font-face {
	font-family: "Clash Display";
	src: url("./assets/font/ClashDisplay-Extralight.otf") format("opentype");
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Clash Display";
	src: url("./assets/font/ClashDisplay-Light.otf") format("opentype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Clash Display";
	src: url("./assets/font/ClashDisplay-Regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Clash Display";
	src: url("./assets/font/ClashDisplay-Medium.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Clash Display";
	src: url("./assets/font/ClashDisplay-Semibold.otf") format("opentype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Clash Display";
	src: url("./assets/font/ClashDisplay-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
:root {
	--brand: #4f46e5;
	--font-sans: "Clash Display", system-ui, -apple-system, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
}
/* Simple container tweak */
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: var(--font-sans);
}
/* small helper */
.container {
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1rem;
}

/* Custom placeholder styles for form inputs */
input::placeholder {
	color: rgba(0, 0, 0, 0.5);
	font-family: "Clash Display";
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 28.8px */
}

/* If you later use a build step, you can add Tailwind directives here: */
/* @tailwind base; @tailwind components; @tailwind utilities; */
