/* ── yemek.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ı */
.yemek-main {
	padding-top: 20px;
	max-width: 900px;
	margin: 0 auto;
}

/* Breadcrumb container */
.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ı */
.yemek-hero {
	text-align: center;
	margin-bottom: 40px;
}

.yemek-hero h1 {
	font-family: 'SF Pro Rounded', sans-serif;
	font-size: 2.5em;
	margin-bottom: 15px;
}

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

/* Şehir seçici dropdown sarmalayıcı */
.city-select-wrapper {
	max-width: 400px;
	margin: 0 auto;
}

/* Şehir kartı listesi grid'i */
.city-cards-section {
	margin-bottom: 40px;
	margin-top: 20px;
}

.city-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 15px;
}

/* Şehir kartı */
.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);
}

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

/* Kart başlığı */
.city-card__header {
	margin: 0 0 10px 0;
	color: var(--accent);
	font-size: 1.1em;
	border-bottom: 1px solid var(--border);
	padding-bottom: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.city-card__name-row {
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Kart tarih etiketi */
.city-menu-date {
	font-size: 0.75em;
	color: var(--text-secondary);
	font-weight: normal;
}

/* Detaylı İncele butonu */
.detailed-btn {
	font-size: 0.75em;
	color: #fff;
	background: var(--accent);
	padding: 4px 10px;
	border-radius: 20px;
	font-weight: 600;
	display: inline-block;
	transition: var(--tr);
}

/* Kart içeriği - iki kolon */
.city-card__body {
	display: flex;
	gap: 10px;
	font-size: 0.85em;
	justify-content: space-between;
}

.city-card__col {
	flex: 1;
}

.city-card__meal-label {
	display: block;
	margin-bottom: 5px;
	color: var(--text);
	border-bottom: 1px dashed var(--border);
	padding-bottom: 3px;
}

/* Yemek öğesi satırı */
.meal-item-row {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 3px;
	color: var(--text-secondary);
}

.meal-item-icon {
	width: 14px;
	height: 14px;
	opacity: 0.8;
}

/* Incele metni (daha az önemli kart) */
.city-card__explore {
	font-size: 0.8em;
	color: var(--text-secondary);
	font-weight: normal;
}

/* 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;
}

/* SEO Yurt Listesi (Yemek Sayfası Altında) */
.seo-dorm-list {
	margin-top: 40px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	font-size: 0.9em;
	color: #555;
}

.seo-dorm-list__items {
	list-style: none;
	padding: 0;
	margin: 10px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.seo-dorm-list__items a {
	color: #1a56db;
	text-decoration: none;
}
