/* ── yurtlar/{şehir}.html Sayfa-Özel Stilleri ───────────────────── */
/* Bu dosya generate_pages_new.js tarafından üretilen tüm yurt şehir sayfaları için kullanılır */

/* Ana içerik alanı */
.yurt-sehir-main {
	padding: 70px 15px 15px 15px;
	max-width: 800px;
	margin: 0 auto;
}

/* Sayfa başlığı */
.yurt-sehir-main h1 {
	margin-top: 10px;
}

/* Açıklama metni */
.yurt-sehir-main .page-desc {
	color: var(--text-secondary);
	margin-bottom: 20px;
}

/* Yurt listesi dış kapsayıcısı */
.dorm-list {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

/* Tek yurt öğesi (tıklanabilir bağlantı satırı) */
.dorm-item {
	display: block;
	padding: 15px;
	border-bottom: 1px solid var(--border);
	text-decoration: none;
	color: var(--text);
	transition: var(--tr);
}

.dorm-item:last-child {
	border-bottom: none;
}

.dorm-item:hover {
	background: var(--bg);
}

/* Yurt adı */
.dorm-item__name {
	margin: 0 0 5px 0;
	color: var(--accent);
}

/* Yurt türü (kız/erkek) etiketi */
.dorm-item__type {
	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;
}

/* Yurt Detay - Ortak Bölüm ve Paragraflar */
.dorm-detail-section {
	margin-top: 20px;
}

.dorm-description p {
	margin-bottom: 12px;
}

.dorm-description p:last-child {
	margin-bottom: 0;
}

/* ── yurt/{yurt-adi}.html (Tekil Yurt) Sayfası Stilleri ───────────────────── */

.dorm-detail-card {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px;
	box-shadow: var(--shadow-sm);
	margin-top: 20px;
}

.dorm-detail-card p {
	color: var(--text);
	margin-bottom: 10px;
}

.dorm-detail-card .btn-container {
	margin-top: 20px;
}

.dorm-reviews-section {
	margin-top: 40px;
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px;
	box-shadow: var(--shadow-sm);
}

.dorm-reviews-section p {
	color: var(--text-secondary);
	margin-top: 10px;
}

.yurt-sehir-main .section-title--mt {
	margin-top: 20px;
}

/* ===== YURT GALLERY & LIGHTBOX ===== */
.dorm-gallery {
	display: flex;
	overflow-x: auto;
	gap: 7px;
	margin-top: 7px;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.dorm-gallery::-webkit-scrollbar {
	display: none;
}

.gallery-item {
	cursor: pointer;
	overflow: hidden;
	border-radius: 5px;
	flex: 0 0 auto;
	width: 130px;
	aspect-ratio: 3 / 2;
	scroll-snap-align: start;
	box-shadow: var(--shadow-sm);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

/* Yurt Details Layout CSS */
.dorm-main-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	letter-spacing: normal;
	text-align: left;
	margin-bottom: 0px;
	text-transform: uppercase;
}

.dorm-cover-wrapper {
	margin-top: 15px;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
}

.dorm-cover-img {
	width: 100%;
	height: auto;
	display: block;
}

.dorm-rating {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #fff8e1;
	color: #f59e0b;
	padding: 4px 10px;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.95rem;
}

.dorm-address-link {
	font-size: 0.9rem;
	display: inline;
	text-align: left;
	color: var(--text-secondary);
	opacity: 0.7;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 4px;
	line-height: 1.5;
	transition: var(--tr);
}

.dorm-address-link:hover {
	color: var(--accent);
}

.dorm-address-text {
	text-align: left;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

/* Yurt Info Grid Layout */
.dorm-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	margin-top: 0px;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.info-cell {
	padding: 10px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-right: 1px solid var(--border);
}

.info-cell:last-child {
	border-right: none;
}

.info-label {
	color: var(--text-secondary);
	font-size: 0.85rem;
	margin-bottom: 5px;
	text-align: center;
}

.info-value {
	font-weight: 700;
	color: var(--text);
	font-size: 0.9rem;
	text-align: center;
	word-break: break-word;
}

/* Contact List Layout */
.dorm-contact-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.contact-card {
	display: flex;
	flex-direction: column;
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.contact-row {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	gap: 15px;
}

.contact-separator {
	border-bottom: 2px dotted var(--border);
	margin: 0 20px;
}

.contact-icon {
	background: var(--accent-light);
	color: var(--accent);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.contact-details {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-name {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2px;
	font-weight: 700;
	color: var(--text);
	font-size: 0.95rem;
}

.contact-name span {
	color: #cecece !important;
}

.contact-title {
	font-size: 0.75em;
	opacity: 0.9;
	color: var(--text-secondary);
	text-transform: uppercase;
	margin-bottom: 3px;
}

.contact-phone {
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.95rem;
}

.action-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px;
}

.btn-directions {
	display: flex;
	align-items: center;
	justify-content: center;
	/* background: var(--accent-light); */
	background-color: #4a90e2;
	color: #fff;
	border: 1px solid #222f40;
	/* border-radius: var(--radius-lg); */
	border-radius: 10px;
	padding: 12px 15px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: var(--tr);
}

.btn-directions:hover {
	background: #dbeafe;
}

.btn-directions i {
	font-size: 1.1rem;
}

.direction-arrow {
	color: #60a5fa;
}

.menu-btn-container {
	margin-top: 10px;
}

.btn-menu-large {
	display: block;
	width: 100%;
	background: var(--accent);
	color: white;
	text-align: center;
	padding: 15px;
	/* border-radius: var(--radius-lg); */
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
	transition: var(--tr);
}

.btn-menu-large:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

.dorm-map-container {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.btn-secondary {
	padding: 12px 24px;
	border: 1px solid var(--border);
	background: var(--surface-solid);
	color: var(--text);
	font-weight: 600;
	cursor: pointer;
	border-radius: 5px;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: var(--background);
}

.map-iframe-wrapper {
	margin-top: 15px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.lightbox-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 30px;
	color: white;
	font-size: 40px;
	cursor: pointer;
	user-select: none;
}

.lightbox-content {
	max-width: 90%;
	max-height: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lightbox-content img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: var(--radius-sm);
}

/* ===== FAQ ACCORDION-LIKE STYLES ===== */
.faq-list {
	margin-top: 20px;
}

.faq-item {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	margin-bottom: 10px;
	padding: 15px;
	box-shadow: var(--shadow-sm);
}

.faq-q {
	font-weight: 600;
	color: var(--text);
	margin-bottom: 8px;
}

.faq-a {
	color: var(--text-secondary);
	line-height: 1.5;
	margin: 0;
}

/* ===== AMENITIES LIST ===== */
.dorm-amenities {
	list-style: none;
	padding: 0;
	margin-top: 15px;
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.amenity-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text);
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
	font-size: 0.95em;
}

.amenity-item:last-child {
	border-bottom: none;
}

.amenity-item i,
.amenity-item svg {
	color: var(--accent);
	font-size: 1.1em;
	width: 20px;
	text-align: center;
	flex-shrink: 0;
}

/* Breadcrumb fixes */
.breadcrumb-list {
	flex-wrap: wrap !important;
}

.breadcrumb-item {
	white-space: nowrap;
}

/* Button styles */
.btn-primary {
	display: inline-block;
	background: var(--accent);
	color: white !important;
	padding: 12px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	transition: var(--tr);
	box-shadow: var(--shadow-sm);
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
}

/* ===== YURT ANALİZ BÖLÜMÜ ===== */
.dorm-analysis-section {
	/* margin-top: 30px; */
}

.analysis-card-title {
	font-family: 'SF Pro Display', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	text-align: left;
	color: var(--text);
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border);
}

.analysis-summary-card {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px;
	box-shadow: var(--shadow-sm);
	margin-top: 15px;
	line-height: 1.7;
	color: var(--text);
	font-size: 0.95rem;
}

/* Detaylı Analiz (Tek Kutu) */
.analysis-details-card {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	margin-top: 15px;
	overflow: hidden;
}

.category-item {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
}

.category-item:last-child {
	border-bottom: none;
}

.category-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.category-label {
	font-weight: 600;
	color: var(--text);
	font-size: 0.95rem;
}

.category-score-badge {
	font-weight: 700;
	font-size: 0.9rem;
	padding: 3px 10px;
	border-radius: 20px;
	min-width: 42px;
	text-align: center;
}

.category-score-badge--low {
	background: #fef2f2;
	color: #dc2626;
}

.category-score-badge--mid {
	background: #fffbeb;
	color: #d97706;
}

.category-score-badge--good {
	background: #f0fdf4;
	color: #16a34a;
}

.category-score-badge--great {
	background: #eff6ff;
	color: #2563eb;
}

@media (prefers-color-scheme: dark) {
	.category-score-badge--low {
		background: #2a1515;
		color: #f87171;
	}

	.category-score-badge--mid {
		background: #2a2215;
		color: #fbbf24;
	}

	.category-score-badge--good {
		background: #152a18;
		color: #4ade80;
	}

	.category-score-badge--great {
		background: #152030;
		color: #60a5fa;
	}
}

.category-bar-track {
	width: 100%;
	height: 6px;
	background: var(--border);
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 8px;
}

.category-bar-fill {
	height: 100%;
	border-radius: 3px;
	transition: width 0.6s ease;
}

.category-bar-fill--low {
	background: #dc2626;
}

.category-bar-fill--mid {
	background: #d97706;
}

.category-bar-fill--good {
	background: #16a34a;
}

.category-bar-fill--great {
	background: #2563eb;
}

.category-summary {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.5;
	margin-bottom: 8px;
}

.category-themes {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.category-theme-tag {
	font-size: 0.78rem;
	background: var(--bg);
	color: var(--text-muted);
	padding: 3px 10px;
	border-radius: 20px;
	border: 1px solid var(--border);
}

/* Artılar / Eksiler */
.analysis-pros-cons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 15px;
}

@media (max-width: 550px) {
	.analysis-pros-cons {
		grid-template-columns: 1fr;
	}
}

.pros-cons-card {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 16px 20px;
	box-shadow: var(--shadow-sm);
}

.pros-cons-card h3 {
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pros-cons-card h3 .pros-icon {
	color: #16a34a;
}

.pros-cons-card h3 .cons-icon {
	color: #dc2626;
}

.pros-cons-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pros-cons-list li {
	font-size: 0.88rem;
	color: var(--text);
	line-height: 1.5;
	padding: 6px 0;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.pros-cons-list li:last-child {
	border-bottom: none;
}

.pros-cons-list li .bullet {
	flex-shrink: 0;
	margin-top: 3px;
	font-size: 0.75rem;
}

.pros-cons-list li .bullet--pro {
	color: #16a34a;
}

.pros-cons-list li .bullet--con {
	color: #dc2626;
}

.pros-cons-list li .evidence-count {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-left: auto;
	flex-shrink: 0;
	white-space: nowrap;
}