/* bordo-samsun v2 (2026-05-17) — fork of red-samsun, palette/markup overhaul */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Georgia', 'Cardo', 'Times New Roman', serif;
}

img {
    opacity: 1;
    transition: opacity .8s ease-out;
    max-width: 100%;
    border-radius: 4px;
    display: inline-block;
}
.lazy { opacity: 1; } /* native lazy now */
img:not(.lazy) { opacity: 1; }

body{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background:
		linear-gradient(160deg, rgba(108, 31, 42, 0.06) 0%, transparent 35%),
		#f5ebde;
	color: #2a1c1f;
	line-height: 1.55;
}

a { color: #6c1f2a; text-decoration: none; border-bottom: 1px dotted rgba(108, 31, 42, 0.35); transition: color .15s, border-color .15s; }
a:hover { color: #b97a30; border-color: rgba(185, 122, 48, 0.6); }

/* ============ HEADER ============ */
body > header{
	background: linear-gradient(to bottom, #2e1116 0%, #6c1f2a 70%, #8a2734 100%);
	box-shadow: 0 4px 0 #b97a30, 0 8px 20px -6px rgba(46, 17, 22, 0.4);
	color: #f5ebde;
}
body > header a, body > header { color: #f5ebde; }
body > header a { border-bottom: none; }

.bz-brand, .undertext {
	padding: 1.6rem 1.5rem 1.4rem;
	background:
		/* unicorn removed 2026-05-17 */
		linear-gradient(120deg, #2e1116 0%, #4a1820 60%, #6c1f2a 100%);
	box-shadow: inset 0 -3px 0 rgba(185, 122, 48, 0.55);
	text-shadow: 1px 1px 0px rgba(0,0,0,0.4);
}

.bz-brand h1, .undertext h1, .bz-brand .h1, .undertext .h1 {
	font-family: 'Playfair Display', 'Cardo', 'Georgia', serif;
	font-size: clamp(1.7rem, 4.5vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 1.15;
}

.bz-brand h2, .undertext h2, .bz-brand .h2, .undertext .h2 {
	font-family: 'Georgia', serif;
	font-size: clamp(1rem, 2.6vw, 1.35rem);
	font-style: italic;
	font-weight: 400;
	color: rgba(245, 235, 222, 0.85);
	margin-top: 0.4rem;
}

body > header nav {
	padding: 0.9rem 1.5rem;
	border-top: 1px solid rgba(245, 235, 222, 0.12);
	background: rgba(46, 17, 22, 0.4);
}

body > header nav ul.menu {
	list-style: none;
	margin: 0; padding: 0;
}

body > header nav ul.menu li {
	display: inline-block;
	margin-right: 1.3rem;
}

body > header nav ul.menu li a {
	font-weight: 500;
	letter-spacing: 0.3px;
	padding: 4px 0;
}

body > header nav ul.menu li a:hover { color: #f0b878; }

/* ============ LAYOUT ============ */
.container, .bz-shell {
	flex: 1 0 auto;
	display: flex;
	gap: 0.6rem;
	padding: 0.6rem 0;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.content, .bz-main {
	padding: 1.3rem 1.6rem;
	flex: 1 0 60%;
	order: 1;
	background: rgba(255, 250, 244, 0.55);
	border-radius: 7px;
	min-width: 0;
}

.panel-left, .bz-aside-l, .panel-right, .bz-aside-r {
	padding: 0.7rem;
	flex: 1 0 14%;
	background: transparent;
}
.bz-aside-l, .panel-left { order: -1; }
.bz-aside-r, .panel-right { order: 2; }

.panel-left .title, .panel-right .title,
details.bz-acc summary {
	background: linear-gradient(to right, #4a1820 0%, #6c1f2a 100%);
	box-shadow: 0 2px 4px rgba(46, 17, 22, 0.3);
	padding: 0.65rem 0.85rem;
	font-weight: 700;
	font-size: 0.92rem;
	color: #f5ebde;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
	letter-spacing: 0.4px;
	border-left: 3px solid #b97a30;
	border-radius: 0 3px 3px 0;
	cursor: pointer;
	list-style: none;
}

details.bz-acc { margin-bottom: 1rem; background: rgba(255, 250, 244, 0.55); border-radius: 0 5px 5px 0; }
details.bz-acc[open] summary { box-shadow: 0 2px 4px rgba(46, 17, 22, 0.4); }
details.bz-acc summary::-webkit-details-marker { display: none; }
details.bz-acc summary::after { content: ' ▾'; color: #b97a30; }
details.bz-acc[open] summary::after { content: ' ▴'; }

.panel-left ul, .panel-right ul,
details.bz-acc nav ol, details.bz-acc nav ul {
    margin: 0;
    padding: 0.5rem 0.8rem;
    list-style: none;
}

.panel-left ul li, .panel-right ul li,
details.bz-acc nav ol li, details.bz-acc nav ul li {
	padding: 5px 0;
	border-bottom: 1px dotted rgba(108, 31, 42, 0.18);
}
.panel-left ul li:last-child, .panel-right ul li:last-child { border-bottom: none; }

.panel-left ul li a, .panel-right ul li a,
details.bz-acc nav a {
	color: #6c1f2a;
	font-weight: 500;
	border-bottom: none;
}
.panel-left ul li a:hover, .panel-right ul li a:hover { color: #b97a30; }

.bz-tag-bag { padding: 0.6rem 0.8rem; display: flex; flex-wrap: wrap; gap: 6px; }
.bz-tag-bag a {
	display: inline-block;
	padding: 3px 9px;
	background: rgba(108, 31, 42, 0.08);
	border: 1px solid rgba(108, 31, 42, 0.15);
	border-radius: 999px;
	color: #6c1f2a;
	font-size: 0.85rem;
	border-bottom: none;
}
.bz-tag-bag a:hover { background: rgba(185, 122, 48, 0.18); color: #4a1820; border-color: rgba(185, 122, 48, 0.5); }

@media (max-width: 700px) {
	.container, .bz-shell { flex-direction: column; gap: 0.2rem; }
	.bz-aside-l, .bz-aside-r, .panel-left, .panel-right { flex: 1 0 auto; }
	.bz-brand h1, .undertext h1, .bz-brand .h1, .undertext .h1 { font-size: 1.8rem; }
	header nav ul.menu li { display: block; margin-bottom: 6px; }
}

/* ============ HERO ============ */
.bz-hero {
	background: linear-gradient(135deg, #fff5e6 0%, #fcecd7 100%);
	border-left: 4px solid #b97a30;
	padding: 1.5rem 1.7rem;
	margin-bottom: 1.4rem;
	border-radius: 0 7px 7px 0;
	box-shadow: 0 3px 12px -4px rgba(46, 17, 22, 0.15);
}
.bz-hero-head { margin-bottom: 0.8rem; }
.bz-hero-title {
	font-family: 'Playfair Display', 'Cardo', 'Georgia', serif;
	font-size: clamp(1.4rem, 3.3vw, 1.95rem);
	color: #4a1820;
	line-height: 1.2;
	font-weight: 700;
}
.bz-hero-tagline {
	font-style: italic;
	color: #8a6b3a;
	font-size: 0.95rem;
	margin-top: 4px;
}
.bz-hero-lede {
	color: #2a1c1f;
	margin-bottom: 1rem;
	font-size: 1rem;
}
.bz-hero-lede strong { color: #6c1f2a; }
.bz-hero-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 0.7rem;
	margin-top: 0.8rem;
}
.bz-hero-card {
	background: rgba(255, 252, 247, 0.95);
	border: 1px solid rgba(185, 122, 48, 0.25);
	border-radius: 5px;
	padding: 0.6rem 0.8rem;
}
.bz-hero-card figcaption {
	font-weight: 700;
	font-family: 'Playfair Display', 'Georgia', serif;
	font-size: 1.05rem;
	color: #6c1f2a;
	margin-bottom: 3px;
}
.bz-hero-card figcaption a { color: inherit; border-bottom: none; }
.bz-hero-card small { color: #8a6b3a; font-size: 0.82rem; }

/* ============ ILAN-CARD (list_item) ============ */
.cats-hide-link, .tags-hide-link, .small-menu-items { display: none !important; }

.ilan, .bz-card {
	background: rgba(255, 252, 247, 0.95);
	padding: 1.3rem 1.4rem;
	color: #2a1c1f;
	margin: 1.2rem 0;
	box-shadow: 0 2px 8px -2px rgba(46, 17, 22, 0.18);
	border-left: 3px solid #b97a30;
	border-radius: 0 5px 5px 0;
}
.ilan:first-of-type, .bz-card:first-of-type { margin-top: 0; }

.bz-card-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 0.6rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px dotted rgba(108, 31, 42, 0.18);
}
.bz-card-title {
	font-family: 'Playfair Display', 'Georgia', serif;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}
.bz-card-title a { color: #4a1820; border-bottom: none; }
.bz-card-title a:hover { color: #b97a30; }

.bz-card-phone {
	background: linear-gradient(135deg, #6c1f2a 0%, #4a1820 100%);
	color: #f5ebde;
	padding: 0.45rem 0.7rem;
	border-radius: 4px;
	text-align: right;
	min-width: 150px;
}
.bz-phone-label { display: block; font-size: 0.7rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }
.bz-phone-link {
	color: #f5ebde;
	font-weight: 700;
	font-family: 'Georgia', monospace;
	font-size: 1rem;
	letter-spacing: 0.5px;
	border-bottom: none;
}

.bz-card-figure, .ilan .photos {
	margin: 0.8rem 0;
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}
.bz-card-img-link { border-bottom: none; }
.bz-card-img-link img { border-radius: 5px; box-shadow: 0 2px 6px -2px rgba(46, 17, 22, 0.3); }

.bz-card-desc, .ilan .description {
	color: #2a1c1f;
	font-size: 0.97rem;
	line-height: 1.6;
	margin: 0.6rem 0;
}
.bz-card-more {
	display: inline-block;
	margin-left: 4px;
	font-weight: 600;
	color: #b97a30;
}
.bz-card-foot {
	display: flex;
	justify-content: flex-end;
	margin-top: 0.6rem;
	padding-top: 0.4rem;
	border-top: 1px dotted rgba(108, 31, 42, 0.12);
}
.bz-card-time, .ilan time {
	font-size: 0.78rem;
	color: #8a6b3a;
	font-style: italic;
}

/* legacy .phone container in old templates (post_html) */
.ilan .phone {
	font-weight: 700;
	margin: 1rem 0;
	color: #6c1f2a;
	font-family: 'Georgia', monospace;
	font-size: 1.05rem;
	letter-spacing: 0.5px;
}
.ilan .description a, .bz-card-desc a, .bz-post-body a { color: #6c1f2a; }

.bz-card-video, .ilan .video { display: block; }

/* ============ TAGS in post ============ */
.tags, .bz-post-tags {
	margin: 1rem 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.tags span, .bz-post-tags li {
	display: inline-block;
	list-style: none;
}
.tags span a, .bz-post-tags li a {
	display: inline-block;
	padding: 3px 9px;
	background: rgba(108, 31, 42, 0.08);
	border: 1px solid rgba(108, 31, 42, 0.15);
	border-radius: 999px;
	color: #6c1f2a;
	font-size: 0.85rem;
	border-bottom: none;
}
.tags span a:hover, .bz-post-tags li a:hover { background: rgba(185, 122, 48, 0.2); color: #4a1820; }

/* ============ POST / breadcrumbs ============ */
.breadcrumbs h3 {
	font-size: 0.85rem;
	font-weight: 400;
	color: #8a6b3a;
	margin-bottom: 0.3rem;
}
.breadcrumbs h1 {
	font-family: 'Playfair Display', 'Georgia', serif;
	font-size: clamp(1.4rem, 3.5vw, 2rem);
	color: #4a1820;
	margin-bottom: 0.8rem;
}
.bread { color: #8a6b3a; border-bottom: none; }

/* ============ VITRIN / banner ============ */
.vitrin {
    text-align: center;
    padding: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    gap: 0.4rem;
}
.vitrin > *, .vitrin-ilan { flex: 0 1 auto; }
.vitrin-ilan .num a, .vitrin-ilan .isim a { font-size: 1rem; }

.ilan.ilan-vit.vitrin { padding: 0.6rem; border-radius: 0 5px 5px 0; }

/* ============ RELATED ============ */
.related, .bz-related {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.2rem;
	padding-top: 1rem;
	border-top: 1px dotted rgba(108, 31, 42, 0.2);
}
.related li { list-style: none; }
.related img { vertical-align: middle; }

/* ============ FOOTER ============ */
body > footer {
	background: #2e1116;
	color: rgba(245, 235, 222, 0.7);
	padding: 1.2rem 1.5rem;
	margin-top: 1.5rem;
	border-top: 3px solid #b97a30;
}
body > footer nav ul.menu { list-style: none; padding: 0; margin: 0; }
body > footer nav ul.menu li { display: inline-block; margin-right: 1.2rem; }
body > footer a { color: #f0b878; border-bottom: none; }
body > footer a:hover { color: #f5ebde; }

/* ============ PAGINATION ============ */
.pagination {
	padding: 0.9rem;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	background: rgba(255, 250, 244, 0.7);
	border-left: 3px solid #b97a30;
	border-radius: 0 5px 5px 0;
	margin: 1.2rem 0;
}
.pagination li { list-style: none; }
.pagination a, .pagination .selected {
	display: inline-block;
	padding: 4px 9px;
	background: #fff;
	border: 1px solid rgba(108, 31, 42, 0.2);
	border-radius: 4px;
	color: #6c1f2a;
	border-bottom: 1px solid rgba(108, 31, 42, 0.2);
}
.pagination .selected { background: #6c1f2a; color: #f5ebde; border-color: #6c1f2a; }
.pagination a:hover { background: #f0b878; color: #4a1820; border-color: #b97a30; }

/* ============ misc ============ */
.bz-pearl-divider {
	height: 1px;
	background: linear-gradient(to right, transparent, #b97a30, transparent);
	margin: 1.2rem 0;
}

.menu-separator { color: rgba(245, 235, 222, 0.3); }

/* hotfix v2.1: lazy image visibility + figure sizing */
.bz-card-figure img, .bz-card-img { width: 100px; height: 100px; object-fit: cover; }
.bz-card-figure { align-items: center; }
.bz-post-gallery img.lazy, .bz-card-figure img.lazy { background: #ebd9c4; }
.bz-post-gallery img { width: auto; max-width: 300px; }
@media (max-width: 700px) {
	.bz-card-head { flex-direction: column; align-items: flex-start; }
	.bz-card-phone { width: 100%; }
}

/* hotfix v2.2 (2026-05-17): post-head + scope-fix */
.bz-post-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 0.8rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px dotted rgba(108, 31, 42, 0.18);
	background: transparent;
}
.bz-post-title {
	font-family: "Playfair Display", "Cardo", Georgia, serif;
	font-size: clamp(1.4rem, 3.3vw, 2rem);
	color: #4a1820;
	line-height: 1.18;
	font-weight: 700;
	margin: 0;
}
.bz-post-date {
	font-size: 0.8rem;
	color: #8a6b3a;
	font-style: italic;
	white-space: nowrap;
	padding-top: 0.3rem;
}
.bz-post-phone {
	background: linear-gradient(135deg, #6c1f2a 0%, #4a1820 100%);
	color: #f5ebde;
	padding: 0.7rem 1rem;
	border-radius: 5px;
	margin: 0.8rem 0;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}
.bz-post-phone .bz-phone-label { color: rgba(245, 235, 222, 0.7); }
.bz-post-phone .bz-phone-link {
	color: #f5ebde !important;
	font-weight: 700;
	font-size: 1.2rem;
	font-family: Georgia, monospace;
	border-bottom: none;
}
.bz-card-phone .bz-phone-link, .bz-card-phone .bz-phone-link:hover { color: #f5ebde !important; border-bottom: none; }
.bz-card-phone .bz-phone-label { color: rgba(245, 235, 222, 0.7); }

.bz-crumbs { margin-bottom: 0.8rem; font-size: 0.85rem; }
.bz-crumb-trail { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; }
.bz-crumb-trail li { display: inline; }
.bz-crumb-trail li + li::before { content: " / "; color: #8a6b3a; margin-right: 0.3rem; }
.bz-crumb-trail a.bread { color: #8a6b3a; border-bottom: none; }
.bz-crumb-trail a.bread:hover { color: #b97a30; }

.bz-post-body { padding: 1rem 0; line-height: 1.7; color: #2a1c1f; }
.bz-post-body p { margin-bottom: 1em; }

@media (max-width: 700px) {
	.bz-post-head { flex-direction: column; }
}
