﻿/* ============================================
   Colour tokens
   ============================================ */
:root {
	--color-page-bg: #FDFAF5;
	--color-accent: #E05A2B;
	--color-accent-bg: #FFF0E8;
	--color-heading: #1a1a1a;
	--color-body: #3d3830;
	--color-muted: #9a7060;
	--color-divider: rgba(224, 90, 43, 0.2);
}

/* ============================================
   Base
   ============================================ */
body {
	font-family: 'Nunito', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
	color: var(--color-body);
	background-color: var(--color-page-bg);
}

/* ============================================
   Headings
   ============================================ */
h1 {
	font-size: 36px;
	font-weight: 900;
	line-height: 1.15;
	color: var(--color-heading);
	margin-bottom: 14px;
}

h2 {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-heading);
	margin-top: 30px;
	margin-bottom: 10px;
}

h3 {
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
	color: var(--color-heading);
	margin-top: 22px;
	margin-bottom: 8px;
}

/* ============================================
   Chapter label (small uppercase above h1)
   ============================================ */
.chapter-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 6px;
}

/* ============================================
   Body text (p inherits from body, but
   explicit class useful inside components)
   ============================================ */
p, .body-text {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
	color: var(--color-body);
	margin-bottom: 14px;
}

/* ============================================
   Callout box
   ============================================ */
.callout {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.65;
	color: var(--color-heading);
	background: var(--color-accent-bg);
	border-left: 3px solid var(--color-accent);
	border-radius: 0 8px 8px 0;
	padding: 12px 16px;
	margin: 18px 0;
}

.callout-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-accent);
	margin-bottom: 4px;
}

/* ============================================
   Vocab card
   ============================================ */
.vocab-card {
	background: var(--color-accent-bg);
	border-radius: 8px;
	padding: 14px 18px;
	margin: 14px 0;
}

.vocab-word {
	font-size: 18px;
	font-weight: 900;
	color: var(--color-heading);
}

.vocab-pronunciation {
	font-size: 13px;
	font-weight: 400;
	color: var(--color-muted);
	margin-left: 6px;
}

.vocab-definition {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-body);
	margin-top: 5px;
}

/* ============================================
   Divider
   ============================================ */
hr {
	border: none;
	border-top: 1px solid var(--color-divider);
	margin: 26px 0;
}
