/*
Theme Name: Manzar Wallpaper Site
Theme URI: https://manzar.app
Author: Wiser Steps
Description: Modern landing theme for Manzar: Wallpaper Carousel — editable from ACF Pro options and custom blocks.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: manzar-site
*/

/* ----- Shared tokens for inner pages ----- */
:root {
	--manzar-bg: #f5faf8;
	--manzar-bg-2: #eef4f2;
	--manzar-text: #171d1b;
	--manzar-text-soft: #4a635e;
	--manzar-text-mute: #6f7977;
	--manzar-line: #cfdad6;
	--manzar-primary: #366760;
	--manzar-primary-deep: #20423d;
	--manzar-card: #ffffff;
	--manzar-shadow: 0 1px 2px rgba(23, 29, 27, 0.06), 0 1px 1px rgba(23, 29, 27, 0.04);
}

body.dark {
	--manzar-bg: #121413;
	--manzar-bg-2: #181b19;
	--manzar-text: #e2e3e0;
	--manzar-text-soft: #c0c8c6;
	--manzar-text-mute: #8a9390;
	--manzar-line: #2c3230;
	--manzar-primary: #9ed0c8;
	--manzar-primary-deep: #699a93;
	--manzar-card: #1a1c1b;
	--manzar-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ----- Inner pages: layout & typography ----- */
body.manzar-inner {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: "Geist", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.6;
	color: var(--manzar-text);
	background: var(--manzar-bg);
	-webkit-font-smoothing: antialiased;
}

body.manzar-inner::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(23, 29, 27, 0.035) 1px, transparent 0);
	background-size: 3px 3px;
	pointer-events: none;
	z-index: 0;
}

body.manzar-inner.dark::before {
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.035) 1px, transparent 0);
}

body.manzar-inner .inner-header,
body.manzar-inner .inner-shell,
body.manzar-inner .inner-footer {
	position: relative;
	z-index: 1;
}

body.manzar-inner .inner-shell {
	flex: 1 0 auto;
	width: 100%;
}

/* Header */
.inner-header {
	border-bottom: 1px solid var(--manzar-line);
	background: rgba(245, 250, 248, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
body.dark .inner-header {
	background: rgba(18, 20, 19, 0.92);
}

.inner-header__bar {
	max-width: 1160px;
	margin: 0 auto;
	padding: 14px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.inner-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--manzar-text);
	font-weight: 600;
	font-size: 1.05rem;
	letter-spacing: -0.01em;
}

.inner-header__brand img {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.inner-nav ul.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 24px;
	align-items: center;
}

.inner-nav a {
	color: var(--manzar-text-soft);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.15s ease;
}

.inner-nav a:hover {
	color: var(--manzar-text);
}

/* Content Container */
.inner-content-wrap {
	max-width: 780px;
	margin: 0 auto;
	padding: 56px 28px 80px;
}

.inner-page-title {
	font-family: "Newsreader", Georgia, serif;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 1.5rem;
	letter-spacing: -0.02em;
	color: var(--manzar-text);
}

.inner-prose {
	color: var(--manzar-text-soft);
	font-size: 1.05rem;
	line-height: 1.7;
}

.inner-prose h2 {
	font-family: "Newsreader", Georgia, serif;
	color: var(--manzar-text);
	font-size: 1.5rem;
	margin: 2.2rem 0 0.8rem;
	font-weight: 500;
}

.inner-prose p {
	margin: 0 0 1.25rem;
}

.inner-prose a {
	color: var(--manzar-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Footer */
.inner-footer {
	border-top: 1px solid var(--manzar-line);
	padding: 28px;
	background: var(--manzar-bg);
}

.inner-footer__bar {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 0.9rem;
	color: var(--manzar-text-mute);
}

.inner-footer__links {
	display: flex;
	gap: 20px;
}

.inner-footer__links a {
	color: var(--manzar-text-soft);
	text-decoration: none;
}

.inner-footer__links a:hover {
	color: var(--manzar-text);
}
