/*
Theme Name:  Learner Bros
Description: Minimal theme for Learner Bros AB. Custom post type pages are handled by the learner-bros-city-data plugin.
Version:     1.0.0
Author:      R24k Web-Ateljé
Text Domain: learnerbros
*/

/* ── Content pages (T&C, Privacy Policy, regular WP pages) ──────────────── */

.lb-page {
	background: var(--lbfe-bg);
	color: var(--lbfe-text);
	font-family: system-ui, -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

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

.lb-page a {
	color: inherit;
}

.lb-main {
	margin: 0 auto;
	max-width: 1200px;
	padding: calc(var(--lbfe-nav-h) + 3rem) 1rem 4rem;
}

.lb-main h1 {
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 1.5rem;
}

.lb-main h2 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 2rem 0 0.75rem;
}

.lb-main p {
	margin: 0 0 1rem;
}

.lb-main ul,
.lb-main ol {
	margin: 0 0 1rem;
	padding-left: 1.5rem;
}

.lb-main a {
	color: var(--lbfe-red);
}

/* ── Cities listing page ─────────────────────────────────────────────────── */

.lb-cities-country {
	margin-bottom: 3rem;
}

.lb-cities-country-heading {
	align-items: center;
	border-bottom: 2px solid var(--lbfe-border);
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.5rem;
	letter-spacing: 0.08em;
	margin: 0 0 1.25rem;
	padding-bottom: 0.5rem;
	text-transform: uppercase;
}

.lb-cities-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 960px) {
	.lb-cities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
	.lb-cities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
	.lb-cities-grid { grid-template-columns: 1fr; }
}

.lb-city-card {
	border-radius: 10px;
	color: var(--lbfe-text);
	display: block;
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.lb-city-card:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.12);
	transform: translateY(-3px);
}

.lb-city-card-img {
	aspect-ratio: 16 / 9;
	background: var(--lbfe-border);
	overflow: hidden;
	width: 100%;
}

.lb-city-card-img img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lb-city-card-name {
	font-size: 0.95rem;
	font-weight: 700;
	padding: 0.5rem 0.25rem 0.25rem;
}

/* ── 404 ─────────────────────────────────────────────────────────────────── */

.lb-404 {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	min-height: 60vh;
	text-align: center;
}

.lb-404-code {
	color: var(--lbfe-red);
	font-size: 5rem;
	font-weight: 900;
	line-height: 1;
}
