/*
Theme Name: AlbumDev Major Label
Theme URI: https://albumdev.com
Author: Codex
Description: A focused WordPress theme for private artist, product, and fan preview rooms.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-3.0-or-later
Text Domain: albumdev-major-label
*/

:root {
	--albumdev-bg: #08090b;
	--albumdev-panel: #11151b;
	--albumdev-text: #f7f4ec;
	--albumdev-muted: #c9d5df;
	--albumdev-red: #ef233c;
	--albumdev-gold: #f5c542;
	--albumdev-cyan: #1fb6ff;
}

* {
	box-sizing: border-box;
}

body {
	background: var(--albumdev-bg);
	color: var(--albumdev-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 0;
}

a {
	color: inherit;
}

.albumdev-site-header {
	align-items: center;
	background: rgba(8, 9, 11, 0.88);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	left: 0;
	padding: 18px clamp(18px, 4vw, 54px);
	position: sticky;
	right: 0;
	top: 0;
	z-index: 10;
}

.albumdev-wordmark {
	align-items: center;
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 900;
	gap: 8px;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.albumdev-wordmark-icon {
	display: block;
	height: 25px;
	object-fit: contain;
	width: 28px;
}

.albumdev-wordmark-text {
	align-items: flex-start;
	display: inline-flex;
	gap: 2px;
}

.albumdev-wordmark sup {
	color: var(--albumdev-gold);
	font-size: 0.52em;
	font-weight: 900;
	line-height: 1;
	margin-top: -0.18em;
}

.albumdev-site-header nav {
	display: flex;
	gap: 18px;
}

.albumdev-site-header nav a {
	color: var(--albumdev-muted);
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.albumdev-site-main {
	min-height: calc(100vh - 132px);
}

.albumdev-page {
	margin: 0 auto;
	max-width: 1240px;
	padding: clamp(24px, 5vw, 58px) clamp(14px, 3vw, 34px);
}

.home .albumdev-page {
	max-width: none;
	padding: 0;
}

.albumdev-page > h1 {
	font-size: clamp(2.4rem, 7vw, 6rem);
	line-height: 0.92;
	margin: 0 0 18px;
	max-width: 860px;
}

.albumdev-entry {
	color: var(--albumdev-muted);
}

.albumdev-entry > *:first-child {
	margin-top: 0;
}

.albumdev-site-footer {
	background: rgba(3, 5, 8, 0.98);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(247, 244, 236, 0.62);
	font-size: 0.82rem;
	padding: 22px clamp(18px, 4vw, 54px);
}

.albumdev-site-footer sup {
	color: var(--albumdev-gold);
	font-size: 0.62em;
	font-weight: 800;
}

@media (max-width: 760px) {
	.albumdev-site-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.albumdev-wordmark-icon {
		height: 23px;
		width: 26px;
	}

	.albumdev-site-header nav {
		flex-wrap: wrap;
	}
}
