/* ============ Global ============ */

body {
	background: var(--minaz-body-bg, #0d0e12);
	color: var(--minaz-body-text, #e5e5e5);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.6;
}

a {
	color: var(--minaz-accent, #e8b93f);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* ============ Header ============ */

.minaz-site-header {
	background: var(--minaz-header-bg, #12131a);
	color: var(--minaz-header-text, #fff);
	position: relative;
	z-index: 100;
}

body.minaz-sticky-header .minaz-site-header {
	position: sticky;
	top: 0;
}

.minaz-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.minaz-branding {
	display: flex;
	flex-direction: column;
}

.minaz-branding img {
	max-height: 60px;
	width: auto;
	display: block;
}

.minaz-site-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--minaz-header-text, #fff);
	text-decoration: none;
}

.minaz-site-desc {
	margin: 2px 0 0;
	font-size: 12px;
	opacity: 0.7;
}

.minaz-menu,
.minaz-footer-menu {
	list-style: none;
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.minaz-menu a,
.minaz-footer-menu a {
	color: inherit;
	text-decoration: none;
	font-size: 15px;
	opacity: 0.9;
}

.minaz-menu a:hover,
.minaz-footer-menu a:hover {
	opacity: 1;
	color: var(--minaz-accent, #e8b93f);
}

.minaz-menu .current-menu-item > a {
	color: var(--minaz-accent, #e8b93f);
	opacity: 1;
}

/* CSS-only mobile nav toggle */

.minaz-nav-toggle-checkbox {
	display: none;
}

.minaz-nav-toggle-label {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	cursor: pointer;
}

.minaz-nav-toggle-label span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--minaz-header-text, #fff);
	border-radius: 2px;
}

@media (max-width: 782px) {
	.minaz-nav-toggle-label {
		display: flex;
	}

	.minaz-primary-nav {
		display: none;
		width: 100%;
		order: 3;
	}

	.minaz-nav-toggle-checkbox:checked ~ .minaz-primary-nav {
		display: block;
	}

	.minaz-menu {
		flex-direction: column;
		gap: 12px;
		padding: 16px 0 4px;
	}
}

/* ============ Footer ============ */

.minaz-site-footer {
	background: var(--minaz-footer-bg, #1a1b20);
	color: var(--minaz-footer-text, #9a9a9f);
	margin-top: 40px;
}

.minaz-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
}

.minaz-footer-copyright {
	font-size: 13px;
	margin: 0;
}

/* ============ Page content (Elementor-owned) ============ */

.minaz-page-main {
	width: 100%;
}

/* ============ Blog templates (not typically Elementor-built) ============ */

.minaz-blog-main {
	padding: 40px 24px 60px;
}

.minaz-blog-container {
	max-width: 760px;
	margin: 0 auto;
}

.minaz-blog-card {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.minaz-blog-thumb {
	display: block;
	margin-bottom: 16px;
	border-radius: 12px;
	overflow: hidden;
}

.minaz-blog-title {
	margin: 0 0 6px;
	font-size: 24px;
}

.minaz-blog-title a {
	color: var(--minaz-body-text, #e5e5e5);
}

.minaz-blog-meta {
	font-size: 13px;
	opacity: 0.6;
	margin-bottom: 12px;
}

.minaz-blog-pagination {
	text-align: center;
	margin-top: 20px;
}

.minaz-single-title {
	font-size: 32px;
	margin-bottom: 8px;
}

.minaz-single-thumb {
	margin: 20px 0;
	border-radius: 12px;
	overflow: hidden;
}

.minaz-single-content {
	font-size: 17px;
}

/* ============ Generic utility button (available for use inside content) ============ */

.minaz-btn {
	display: inline-block;
	background: var(--minaz-accent, #e8b93f);
	color: #17181c;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: 10px;
	text-decoration: none;
}

.minaz-btn:hover {
	opacity: 0.9;
	text-decoration: none;
}
