/*
 * Home Coffee Brewing landing page styles.
 * These are the two custom rules from the original design (everything
 * else is handled by Tailwind utility classes loaded via functions.php).
 */

body {
	font-family: 'Inter', sans-serif;
	background-color: #FDFBF7;
	color: #2C1E16;
}

.font-serif {
	font-family: 'Playfair Display', serif;
}

/* Post content (single.php) — tints the Tailwind Typography "prose" output
   to match the site's coffee color palette instead of its default gray/blue. */
.entry-content a {
	color: #D4A373;
}

.entry-content a:hover {
	color: #C58F5C;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: 'Playfair Display', serif;
	color: #2C1E16;
}

/* Pagination links (category.php) */
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	margin: 0 0.25rem;
	padding: 0 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #5C402F;
	background-color: #F5EFEB;
	text-decoration: none;
}

.page-numbers.current {
	background-color: #432E22;
	color: #fff;
}

.page-numbers:hover:not(.current) {
	background-color: #E6D7CE;
}