/**
 * Jarno Security Theme - Typography Stylesheet
 * Font families, sizing, and text styles
 */

/* ===========================
   TYPOGRAPHY SCALES
   =========================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: var(--spacing-md);
}

h2 {
	font-size: 2rem;
	margin-bottom: var(--spacing-md);
}

h3 {
	font-size: 1.3rem;
	margin-bottom: var(--spacing-md);
}

h4 {
	font-size: 1.1rem;
	margin-bottom: var(--spacing-sm);
}

p {
	margin-bottom: var(--spacing-md);
}

.mono {
	font-family: var(--font-mono);
}

/* ===========================
   RESPONSIVE TYPOGRAPHY
   =========================== */

@media (max-width: 768px) {
	h1 {
		font-size: 1.75rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	h3 {
		font-size: 1.1rem;
	}

	h4 {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.5rem;
	}

	h2 {
		font-size: 1.25rem;
	}

	h3 {
		font-size: 1rem;
	}

	p {
		font-size: 0.95rem;
	}
}
