/* Velvet Blog v2.0.2 - Premium */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
	--bg: #0a0810;
	--card: #16131f;
	--card-hover: #1e1a28;
	--border: rgba(212, 176, 106, 0.14);
	--text: #f8f5fc;
	--muted: #a89eb8;
	--gold: #d4b06a;
	--gold-soft: #e8cfa0;
	--rose: #c49aa8;
	--wrap: 1180px;
	--radius: 16px;
	--shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
	--shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: 'DM Sans', Segoe UI, system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	background-image:
		radial-gradient(ellipse 90% 60% at 50% -15%, rgba(212, 176, 106, 0.09), transparent 55%),
		radial-gradient(ellipse 50% 40% at 100% 80%, rgba(196, 154, 168, 0.06), transparent 50%);
}

a { color: var(--gold-soft); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.vb-wrap {
	width: min(100% - 2rem, var(--wrap));
	margin: 0 auto;
}

/* Header */
.vb-header {
	background: rgba(10, 8, 16, 0.88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 99;
}

.vb-header-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 0;
}

.vb-logo,
.custom-logo-link {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.45rem;
	font-weight: 600;
	color: var(--text);
	letter-spacing: 0.02em;
}

.vb-nav { flex: 1; }

.vb-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.vb-menu a {
	color: var(--muted);
	font-weight: 500;
	font-size: 0.92rem;
}

.vb-menu a:hover { color: var(--gold-soft); }

.vb-search { display: flex; gap: 0.45rem; }

.vb-search input {
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--text);
	padding: 0.5rem 0.75rem;
	border-radius: 10px;
	min-width: 140px;
}

.vb-search input:focus {
	outline: none;
	border-color: rgba(212, 176, 106, 0.45);
}

.vb-search button {
	background: linear-gradient(135deg, var(--gold), #a88b45);
	border: 0;
	color: #1a1510;
	padding: 0.5rem 1rem;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.88rem;
}

.vb-nav-btn {
	display: none;
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--text);
	padding: 0.4rem 0.7rem;
	border-radius: 8px;
	cursor: pointer;
}

/* Hero - compact */
.vb-hero {
	text-align: center;
	padding: 1.75rem 0 0.5rem;
}

.vb-hero-compact {
	padding: 1.25rem 0 0.25rem;
}

.vb-hero h1 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.85rem, 4vw, 2.75rem);
	font-weight: 600;
	margin: 0 0 0.35rem;
	background: linear-gradient(135deg, var(--text) 0%, var(--gold-soft) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.vb-hero p {
	color: var(--muted);
	margin: 0;
	font-size: 0.95rem;
	max-width: 520px;
	margin-inline: auto;
}

.vb-home-posts {
	padding-top: 0.5rem;
	margin-top: 0;
}

.vb-main { padding-bottom: 3rem; }

.vb-layout {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 2rem;
	padding-top: 1.25rem;
}

.vb-crumb,
.vb-aioseo-crumb {
	font-size: 0.82rem;
	color: var(--muted);
	margin-bottom: 1rem;
	padding-top: 0.75rem;
}

.vb-aioseo-crumb a {
	color: var(--muted);
}

.vb-aioseo-crumb a:hover {
	color: var(--gold-soft);
}

.vb-crumb a { color: var(--muted); }
.vb-crumb a:hover { color: var(--gold); }

.vb-page-title,
.vb-section-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 600;
	margin: 0 0 1.25rem;
	font-size: 1.65rem;
	letter-spacing: 0.02em;
}

.vb-section-title-spaced { margin-top: 2.5rem; }

.vb-archive-desc { color: var(--muted); margin-bottom: 1.5rem; }

.vb-label {
	color: var(--rose);
	text-transform: uppercase;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	font-weight: 600;
}

/* Grid & Cards */
.vb-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.35rem;
}

.vb-grid-similar {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.vb-card {
	background: linear-gradient(165deg, var(--card) 0%, rgba(22, 19, 31, 0.6) 100%);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	box-shadow: var(--shadow-sm);
}

.vb-card:hover {
	transform: translateY(-5px);
	border-color: rgba(212, 176, 106, 0.35);
	box-shadow: var(--shadow);
}

.vb-card-img {
	overflow: hidden;
	position: relative;
}

.vb-card-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(10, 8, 16, 0.5) 100%);
	pointer-events: none;
}

.vb-card-img img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.vb-card:hover .vb-card-img img {
	transform: scale(1.04);
}

.vb-card-body { padding: 1.1rem 1.15rem 1.2rem; }

.vb-card-cat {
	color: var(--rose);
	font-size: 0.68rem;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.vb-card-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0.45rem 0;
	line-height: 1.25;
}

.vb-card-title a { color: var(--text); }
.vb-card-title a:hover { color: var(--gold-soft); }

.vb-card-text {
	color: var(--muted);
	font-size: 0.88rem;
	margin: 0 0 0.65rem;
	line-height: 1.5;
}

.vb-card-meta {
	font-size: 0.78rem;
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	opacity: 0.9;
}

.vb-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; }

/* Similar posts */
.vb-similar {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

/* Single */
.vb-single-head h1 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 600;
	line-height: 1.15;
}

.vb-single-meta {
	color: var(--muted);
	font-size: 0.88rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 0.85rem 0 1.25rem;
}

.vb-single-img {
	margin-bottom: 1.5rem;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.vb-entry { font-size: 1.05rem; }

.vb-entry h2,
.vb-entry h3 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	color: var(--gold-soft);
	font-weight: 600;
}

.vb-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.vb-tags a {
	background: rgba(22, 19, 31, 0.8);
	border: 1px solid var(--border);
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	font-size: 0.82rem;
	color: var(--muted);
	transition: border-color 0.2s, color 0.2s;
}

.vb-tags a:hover {
	border-color: rgba(212, 176, 106, 0.4);
	color: var(--gold-soft);
}

.vb-tags a span {
	opacity: 0.7;
	font-size: 0.78rem;
}

/* Sidebar */
.vb-sidebar .widget {
	background: linear-gradient(165deg, var(--card), rgba(22, 19, 31, 0.5));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.15rem;
	margin-bottom: 1rem;
	box-shadow: var(--shadow-sm);
}

.vb-sidebar .widget-title {
	margin: 0 0 0.65rem;
	font-size: 1rem;
	font-family: 'Cormorant Garamond', Georgia, serif;
	color: var(--gold-soft);
}

/* Comments */
.vb-comments-wrap {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.vb-comments .comment {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 0.75rem;
	list-style: none;
}

.comment-list { margin: 0; padding: 0; }

.vb-comment-rating { color: var(--gold); margin-bottom: 0.35rem; }

.comment-form input,
.comment-form textarea,
.comment-form select {
	width: 100%;
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--text);
	padding: 0.6rem;
	border-radius: 10px;
	margin-bottom: 0.5rem;
}

.form-submit input {
	width: auto;
	background: linear-gradient(135deg, var(--gold), #a88b45);
	border: 0;
	color: #1a1510;
	font-weight: 700;
	cursor: pointer;
	padding: 0.65rem 1.25rem;
	border-radius: 10px;
}

/* Pagination */
.vb-pagination { margin-top: 2rem; }

.vb-pagination .page-numbers {
	display: inline-block;
	padding: 0.45rem 0.8rem;
	margin: 0.12rem;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--muted);
}

.vb-pagination .current {
	background: linear-gradient(135deg, var(--gold), #a88b45);
	color: #1a1510;
	border-color: transparent;
	font-weight: 600;
}

/* Footer */
.vb-footer {
	background: linear-gradient(180deg, transparent, rgba(22, 19, 31, 0.6));
	border-top: 1px solid var(--border);
	padding: 2rem 0;
	margin-top: 2rem;
	text-align: center;
}

.vb-menu-footer { justify-content: center; margin-bottom: 0.75rem; }

.vb-copy {
	color: var(--muted);
	font-size: 0.84rem;
	margin: 1rem 0 0;
}

.vb-none { text-align: center; padding: 3rem 0; }

@media (max-width: 900px) {
	.vb-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.vb-nav-btn { display: block; margin-left: auto; }
	.vb-nav { display: none; width: 100%; }
	.vb-nav.is-open { display: block; }
	.vb-menu { flex-direction: column; gap: 0.5rem; }
	.vb-search { width: 100%; }
	.vb-search input { flex: 1; }
	.vb-hero-compact { padding: 1rem 0 0; }
}
