:root {
	--accent: #ff6b35;
	--accent2: #5dd6ff;
	--accent3: #f7cf4f;
	--background: #09090d;
	--border: rgba(255, 255, 255, 0.12);
	--foreground: #f7f4ee;
	--muted: #b7b0a3;
	--panel: rgba(255, 255, 255, 0.06);
	--shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
* {
	box-sizing: border-box;
}
a {
	color: inherit;
	text-decoration: none;
}
body {
	background: radial-gradient(circle at top, rgba(255, 107, 53, 0.3), transparent 55%),;
	color: var(--foreground);
	margin: 0;
}
figcaption {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px;
}
html {
	background: var(--background);
	color: var(--foreground);
	font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
	min-height: 100dvh;
}
#adminBody {
	align-items: flex-start;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 24px;
}
#adminBrand {
	font-weight: 700;
	margin-bottom: 20px;
}
#adminHeader {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 12px;
	justify-content: space-between;
}
#adminLink {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 10px 18px;
}
#adminMain {
	color: var(--foreground);
	display: flex;
	flex-direction: column;
	gap: 24px;
	overflow: auto;
	padding: 28px clamp(18px, 4vw, 48px);
}
#adminNav {
	background: #11111d;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 32px 24px;
}
#adminShell {
	background: #0c0c14;
	display: grid;
	grid-template-columns: 240px 1fr;
	height: 100dvh;
	min-height: 100dvh;
}
#brand {
	align-items: center;
	display: flex;
	gap: 16px;
}
#categoryHeader h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	margin: 0 0 8px;
}
#categoryHeader p {
	color: var(--muted);
	margin: 0;
}
#categoryList {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}
#content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
#foot {
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 0.9rem;
	padding-top: 20px;
}
#gallery {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
#glow {
	animation: float 12s ease-in-out infinite;
	background: radial-gradient(circle, rgba(93, 214, 255, 0.4), transparent 70%);
	filter: blur(10px);
	height: 420px;
	inset: -30% -10% auto auto;
	pointer-events: none;
	position: absolute;
	width: 420px;
	z-index: 0;
}
#hero {
	align-items: center;
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.9fr);
}
#heroActions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
#heroCard {
	backdrop-filter: blur(14px);
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 28px;
	box-shadow: var(--shadow);
	padding: 26px;
}
#heroText h1 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: clamp(2.5rem, 4vw, 4rem);
	margin: 0 0 16px;
}
#heroText p {
	color: var(--muted);
	margin: 0 0 20px;
	max-width: 540px;
}
#logo {
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	border-radius: 16px;
	display: grid;
	font-weight: 700;
	height: 52px;
	letter-spacing: 0.08em;
	place-items: center;
	width: 52px;
}
#menu {
	backdrop-filter: blur(18px);
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--border);
	border-radius: 999px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 8px 14px;
}
#page {
	display: flex;
	flex-direction: column;
	gap: 60px;
	min-height: 100dvh;
	overflow: hidden;
	padding: 40px clamp(20px, 5vw, 72px) 60px;
	position: relative;
}
#page > header,
#page > section,
#page > footer {
	position: relative;
	z-index: 1;
}
#tagline {
	color: var(--muted);
	font-size: 0.9rem;
}
#title {
	font-size: 1.2rem;
	font-weight: 600;
}
#top {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
}
#uploadForm button,
#categoryForm button {
	background: linear-gradient(135deg, var(--accent3), var(--accent));
	border: 0;
	border-radius: 12px;
	color: #111;
	cursor: pointer;
	font-weight: 600;
	padding: 12px 18px;
}
#uploadForm input,
#uploadForm select,
#categoryForm input {
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--border);
	border-radius: 12px;
	color: var(--foreground);
	padding: 10px 12px;
}
#uploadForm label,
#categoryForm label {
	display: grid;
	font-size: 0.9rem;
	gap: 8px;
}
#uploadForm,
#categoryForm {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 18px;
	display: grid;
	gap: 16px;
	max-width: 520px;
	padding: 22px;
	width: 100%;
}
.adminCard {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 18px;
}
.adminGrid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.adminLink {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 10px 14px;
}
.adminNote {
	color: var(--accent3);
	font-size: 0.9rem;
}
.cardSub {
	font-size: 1.2rem;
	margin-top: 12px;
}
.cardTitle {
	color: var(--muted);
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.cardValue {
	font-size: 1.8rem;
	font-weight: 700;
	margin-top: 10px;
}
.categoryItem {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	border-radius: 14px;
	display: flex;
	justify-content: space-between;
	padding: 14px;
}
.categorySlug {
	color: var(--muted);
	font-size: 0.85rem;
}
.cta {
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(93, 214, 255, 0.25);
	color: #111;
	font-weight: 600;
	padding: 12px 22px;
}
.ghost {
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--foreground);
	padding: 12px 22px;
}
.input.file {
	display: block !important;
}
.input.file .file {
	cursor: pointer;
	display: flex;
	gap: .25rem;
}
.input.file .file-input {
	display: none;
}
.input.file input[type="checkbox"] {
	width: initial !important;
}
.input.image {
	display: block !important;
	text-align: center;
}
.input.image .image {
	cursor: pointer;
	max-width: 100%;
}
.input.image .image-input {
	display: none;
}
.input.image input[type="checkbox"] {
	width: initial !important;
}
.pill {
	border-radius: 999px;
	color: var(--muted);
	font-size: 0.9rem;
	padding: 8px 16px;
	transition: all 0.2s ease;
}
.pill.active {
	background: linear-gradient(120deg, var(--accent3), var(--accent));
	box-shadow: 0 8px 18px rgba(255, 107, 53, 0.35);
	color: #101015;
}
.pill:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--foreground);
}
.shot {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 22px;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	margin: 0;
	overflow: hidden;
}
.shot img {
	display: block;
	height: 250px;
	object-fit: cover;
	width: 100%;
}
.shotMeta {
	color: var(--muted);
	font-size: 0.8rem;
}
.shotTitle {
	font-weight: 600;
}
.swatch {
	background: linear-gradient(135deg, var(--accent3), var(--accent2));
	border-radius: 14px;
	height: 38px;
	width: 38px;
}
.swatch:nth-child(2){
	background: linear-gradient(135deg, var(--accent2), var(--accent));
}
.swatch:nth-child(3){
	background: linear-gradient(135deg, var(--accent), var(--accent3));
}
.swatches {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}
@keyframes float {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}
@media (max-width: 900px){
	#adminNav {
		flex-direction: row;
		flex-wrap: wrap;
	}
	#adminShell {
		grid-template-columns: 1fr;
	}
	#hero {
		grid-template-columns: 1fr;
	}
	#menu {
		border-radius: 24px;
	}
}