/*
Theme Name: AKIR
Theme URI: https://akirclothing.com
Author: AKIR Clothing Company
Description: A dark, gold-accented fashion theme built for AKIR Clothing — "Always Keep It Real." Mobile-responsive, minimal, and built to match the brand's own product site exactly (same colors, type, and nav pattern), so every page on akirclothing.com feels like one cohesive site, not a default WordPress theme with a plugin bolted on.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: akir-theme
*/

:root {
	--black: #080808;
	--soft: #151515;
	--gold: #c99b2d;
	--cream: #f4f0e7;
	--white: #fff;
	--gray: #a7a7a7;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--black);
	color: var(--white);
	font-family: Montserrat, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

h1, h2, h3, h4 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	margin: 0 0 .5em;
	line-height: 1.15;
}

p { margin: 0 0 1.2em; }

.akir-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 5vw;
}

.akir-eyebrow {
	display: inline-block;
	color: var(--gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

/* ---- Site header (matches the AKIR product site header exactly) ---- */
.akir-theme-header {
	height: 82px;
	padding: 0 5vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #242424;
	position: sticky;
	top: 0;
	background: rgba(8, 8, 8, .94);
	backdrop-filter: blur(12px);
	z-index: 100;
}
.akir-theme-header .brand {
	font-family: Montserrat, Arial, sans-serif;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: -.3px;
	white-space: nowrap;
	color: var(--white);
}
.akir-theme-header .akir-nav-links {
	display: flex;
	gap: 36px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.3px;
	font-weight: 600;
}
.akir-theme-header .akir-nav-links a:hover { color: var(--gold); }
.akir-theme-header .akir-menu-toggle {
	display: none;
	background: none;
	border: 0;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	padding: 0;
}

@media (max-width: 900px) {
	.akir-theme-header .akir-nav-links { display: none; }
	.akir-theme-header .akir-menu-toggle { display: block; }
	.akir-theme-header .akir-nav-links.open {
		position: absolute;
		display: flex;
		flex-direction: column;
		top: 82px;
		left: 0;
		right: 0;
		background: #0c0c0c;
		padding: 30px 5vw;
		z-index: 99;
		box-shadow: 0 12px 24px rgba(0, 0, 0, .4);
		gap: 22px;
	}
}

/* ---- Footer (matches the AKIR product site footer) ---- */
.akir-theme-footer {
	border-top: 1px solid #252525;
	padding: 60px 5vw 35px;
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 35px;
	color: #bbb;
}
.akir-theme-footer h4 {
	font-family: Montserrat, Arial, sans-serif;
	color: #fff;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 2px;
	margin: 0 0 12px;
}
.akir-theme-footer a { display: block; font-size: 12px; margin: 12px 0; }
.akir-theme-footer .akir-footer-brand { color: #fff; font-weight: 700; font-size: 15px; }
.akir-theme-footer .akir-copyright {
	grid-column: 1 / -1;
	border-top: 1px solid #242424;
	padding-top: 25px;
	margin-top: 25px;
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
}
@media (max-width: 900px) {
	.akir-theme-footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.akir-theme-footer { grid-template-columns: 1fr; }
}

/* ---- Generic page/post content (used by page.php, single.php) ---- */
.akir-content-page {
	background: var(--cream);
	color: #1c1a16;
	padding: 70px 20px 100px;
}
.akir-content-wrap {
	max-width: 760px;
	margin: 0 auto;
}
.akir-content-wrap h1 {
	font-size: clamp(32px, 5vw, 46px);
	line-height: 1.1;
	margin: 6px 0 6px;
}
.akir-content-wrap .akir-meta {
	color: #726b5c;
	font-size: 13px;
	letter-spacing: .4px;
	margin: 0 0 40px;
}
.akir-content-wrap h2 { font-size: 24px; margin: 38px 0 12px; }
.akir-content-wrap h3 { font-size: 19px; margin: 30px 0 10px; }
.akir-content-wrap a { color: #8a6a1f; text-decoration: underline; text-underline-offset: 3px; }
.akir-content-wrap blockquote {
	border-left: 3px solid var(--gold);
	margin: 24px 0;
	padding: 4px 0 4px 20px;
	color: #4a453a;
	font-style: italic;
}
.akir-content-wrap ul, .akir-content-wrap ol { padding-left: 22px; }
.akir-content-wrap img { border-radius: 6px; margin: 24px 0; }

/* ---- Archive / blog index (index.php) ---- */
.akir-archive { background: var(--black); padding: 70px 5vw 100px; }
.akir-archive-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 44px; }
.akir-archive-item { border-bottom: 1px solid #242424; padding-bottom: 44px; }
.akir-archive-item:last-child { border-bottom: none; }
.akir-archive-item h2 { font-size: clamp(24px, 3.5vw, 32px); margin-bottom: 10px; }
.akir-archive-item h2 a:hover { color: var(--gold); }
.akir-archive-item .akir-meta { color: var(--gray); font-size: 12px; letter-spacing: .4px; margin-bottom: 14px; text-transform: uppercase; }
.akir-archive-item .akir-excerpt { color: #ccc; }
.akir-archive-item .akir-read-more { display: inline-block; margin-top: 10px; color: var(--gold); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ---- 404 ---- */
.akir-404 {
	background: var(--black);
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 20px;
}
.akir-404 h1 { font-size: clamp(64px, 12vw, 140px); color: var(--gold); margin: 0; }
.akir-404 p { color: var(--gray); font-size: 16px; margin: 16px 0 28px; }
.akir-404 .btn {
	display: inline-block;
	background: var(--gold);
	color: #080808;
	font-weight: 800;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-size: 13px;
	padding: 14px 30px;
	border-radius: 2px;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
	* { scroll-behavior: auto !important; transition: none !important; }
}
