/* ── yurtlar.html Sayfa-Özel Stilleri ───────────────────────────── */

/* Genel sayfa yapısı */
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
}

/* Navbar - statik konumda */
.navbar--static {
	position: static;
}

/* Ana içerik alanı */
.yurtlar-main {
	padding: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-container {
	margin-bottom: 20px;
	font-size: 0.9em;
	color: var(--text-secondary);
}

.breadcrumb-container a {
	color: var(--accent);
	text-decoration: none;
}

.breadcrumb-container .breadcrumb-current {
	font-weight: 500;
	color: var(--text);
}

/* Sayfa başlığı alanı */
.yurtlar-hero {
	text-align: center;
	margin-bottom: 40px;
}

.yurtlar-hero h1 {
	font-size: 2.5em;
	margin-bottom: 15px;
}

.yurtlar-hero p {
	color: var(--text-secondary);
	font-size: 1.15em;
	max-width: 700px;
	margin: 0 auto 25px;
	line-height: 1.6;
}

/* Şehir grid listesi */
.city-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 15px;
}

.city-card {
	display: block;
	padding: 15px;
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--text);
	transition: var(--tr);
	box-shadow: var(--shadow-sm);
	text-align: center;
}

.city-card:hover {
	border-color: var(--accent);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.city-card__title {
	margin: 0 0 5px 0;
	color: var(--accent);
}

.city-card__count {
	font-size: 0.9em;
	color: var(--text-secondary);
}

/* Footer */
.page-footer {
	background: var(--surface-solid);
	border-top: 1px solid var(--border);
	padding: 50px 20px;
	font-size: 0.9em;
	color: var(--text-muted);
	margin-top: 80px;
}

.page-footer-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.footer-grid h3 {
	color: var(--text);
	margin-bottom: 15px;
	font-family: 'SF Pro Rounded', sans-serif;
}

.footer-grid p {
	line-height: 1.6;
	font-size: 0.95em;
}

.footer-list {
	list-style: none;
	padding: 0;
	line-height: 2;
}

.footer-list a {
	color: var(--accent);
	text-decoration: none;
}

.footer-list--cities {
	list-style: none;
	padding: 0;
	line-height: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 10px;
}

.footer-list--cities a {
	color: var(--text-muted);
	text-decoration: none;
}

.footer-sitemap-section {
	border-top: 1px solid var(--border);
	padding-top: 30px;
	margin-bottom: 40px;
}

.footer-sitemap-section h3 {
	color: var(--text);
	margin-bottom: 20px;
	font-family: 'SF Pro Rounded', sans-serif;
	font-size: 1.1em;
}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding-top: 25px;
	font-size: 0.85em;
	text-align: center;
	line-height: 1.6;
}

.footer-bottom p {
	margin-bottom: 8px;
}
