/*
Theme Name: Ass Clowns v2
Theme URI: https://thenotalentassclowns.com
Author: PlumCode
Description: Next-level 1980s hair-metal parody theme for The No Talent Ass Clowns.
Version: 2.0.1
Requires at least: 6.0
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: ass-clowns
*/

:root {
	--stage: #07060a;
	--smoke: #121018;
	--panel: #19151f;
	--chrome: #efe8dc;
	--muted: #b7b0a4;
	--magenta: #ff2bd6;
	--yellow: #ffe14a;
	--line: rgba(239, 232, 220, 0.14);
	--font-metal: "Metal Mania", Impact, "Arial Black", sans-serif;
	--font-display: "Russo One", Impact, sans-serif;
	--font-body: "Barlow", Tahoma, sans-serif;
	--wrap: 1120px;
	--header-h: 84px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	color: var(--chrome);
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.6;
	background-color: var(--stage);
	background-image:
		linear-gradient(180deg, rgba(7, 6, 10, 0.78), rgba(7, 6, 10, 0.92)),
		url("assets/images/stage-texture.jpg");
	background-attachment: fixed;
}

body::after {
	content: "";
	pointer-events: none;
	position: fixed;
	inset: 0;
	z-index: 40;
	background: repeating-linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.025) 0 1px,
		transparent 1px 3px
	);
}

img,
video,
iframe {
	max-width: 100%;
	height: auto;
}

iframe {
	width: 100%;
}

a {
	color: var(--yellow);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--magenta);
}

h1,
h2,
h3,
h4,
.brand__mark,
.hero__title {
	font-family: var(--font-display);
	line-height: 1.1;
	letter-spacing: 0.02em;
}

p {
	margin: 0 0 1rem;
}

.wrap {
	width: min(var(--wrap), calc(100% - 32px));
	margin: 0 auto;
}

.skip-link {
	position: absolute;
	left: 12px;
	top: -40px;
	z-index: 80;
	padding: 8px 12px;
	background: var(--yellow);
	color: #111;
}

.skip-link:focus {
	top: 12px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.hazard-bar,
.hazard-bar--footer {
	height: 12px;
	background: repeating-linear-gradient(
		-45deg,
		var(--yellow) 0 10px,
		#111 10px 20px
	);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(7, 6, 10, 0.92);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(10px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: var(--header-h);
}

.brand {
	text-decoration: none;
	color: inherit;
	min-width: 0;
}

.brand__kicker {
	display: block;
	margin: 0 0 2px;
	color: var(--yellow);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.brand__mark {
	display: block;
	font-family: var(--font-metal);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 400;
	letter-spacing: 0.03em;
	background: linear-gradient(180deg, #fff 0%, #d8d0c4 42%, #8a8378 50%, #fff 78%, #9a9286 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 10px rgba(255, 43, 214, 0.35));
}

.nav-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--chrome);
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--yellow);
}

.nav-toggle__bars {
	position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bars::before {
	top: -6px;
}

.nav-toggle__bars::after {
	top: 6px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.site-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	color: var(--chrome);
	font-family: var(--font-display);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
	color: var(--magenta);
}

.search-form {
	display: flex;
	gap: 0;
	border: 1px solid var(--line);
	background: #0c0b10;
}

.search-form input {
	width: 150px;
	padding: 8px 10px;
	border: 0;
	background: transparent;
	color: var(--chrome);
	font: inherit;
}

.search-form button {
	padding: 8px 12px;
	border: 0;
	background: var(--yellow);
	color: #111;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
}

.hero {
	position: relative;
	min-height: min(86vh, 820px);
	display: grid;
	align-items: end;
	padding: 80px 0 64px;
	background:
		linear-gradient(180deg, rgba(7, 6, 10, 0.15), rgba(7, 6, 10, 0.88)),
		var(--hero-image) center / cover no-repeat;
}

.hero__veil {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 40%, rgba(255, 43, 214, 0.18), transparent 42%);
}

.hero__copy {
	position: relative;
	z-index: 1;
}

.hero__eyebrow,
.section-kicker {
	margin: 0 0 10px;
	color: var(--yellow);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.hero__title {
	margin: 0 0 16px;
	font-family: var(--font-metal);
	font-size: clamp(3.4rem, 11vw, 8.4rem);
	line-height: 0.86;
	text-transform: uppercase;
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7));
}

.hero__title span {
	display: block;
}

.hero__lead,
.page-hero__lead,
.road-lead {
	max-width: 38rem;
	color: var(--muted);
	font-size: 1.15rem;
}

.hero__actions,
.section-more {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 2px solid var(--yellow);
	font-family: var(--font-display);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

.btn--yellow {
	background: var(--yellow);
	color: #111;
}

.btn--yellow:hover {
	background: var(--magenta);
	border-color: var(--magenta);
	color: #fff;
}

.btn--ghost {
	background: transparent;
	color: var(--chrome);
	border-color: var(--chrome);
}

.btn--ghost:hover {
	border-color: var(--magenta);
	color: var(--magenta);
}

.marquee {
	overflow: hidden;
	border-block: 1px solid var(--line);
	background: #0b0a0f;
	color: var(--yellow);
	font-family: var(--font-display);
	font-size: 13px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	white-space: nowrap;
}

.marquee__track {
	display: inline-block;
	padding: 12px 0;
	animation: ticker 38s linear infinite;
}

@keyframes ticker {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.band-section,
.page-hero {
	padding: 72px 0;
}

.band-section--alt,
.page-hero,
.band-section--road {
	background: rgba(12, 10, 16, 0.72);
}

.section-head {
	margin-bottom: 28px;
}

.section-head h2,
.page-hero h1,
.story__head h1 {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.6rem);
	text-transform: uppercase;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.card-grid--list {
	grid-template-columns: 1fr;
}

.ticket-card {
	background: var(--panel);
	border: 1px solid var(--line);
	box-shadow: 8px 8px 0 rgba(255, 43, 214, 0.18);
}

.ticket-card__link {
	display: grid;
	grid-template-rows: 180px auto;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.card-grid--list .ticket-card__link {
	grid-template-rows: none;
	grid-template-columns: 220px 1fr;
}

.ticket-card__art {
	position: relative;
	background: #0b0a10 center / cover no-repeat;
	border-bottom: 1px solid var(--line);
}

.ticket-card__art--empty {
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 43, 214, 0.28), transparent 46%),
		linear-gradient(135deg, #1a1520, #0b0a10);
}

.ticket-card__stub {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 8px;
	background: var(--yellow);
	color: #111;
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ticket-card__body {
	padding: 18px;
}

.ticket-card time,
.meta {
	color: var(--muted);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ticket-card h2,
.ticket-card h3 {
	margin: 8px 0;
	font-size: 1.25rem;
}

.member-grid,
.album-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.member-card,
.album-tile {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 180px;
	padding: 20px;
	border: 1px solid var(--line);
	background: linear-gradient(180deg, #221c28, #120f16);
	color: inherit;
	text-decoration: none;
}

.member-card:hover,
.album-tile:hover {
	border-color: var(--magenta);
	color: inherit;
}

.member-card__role {
	color: var(--yellow);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.member-card strong,
.album-tile span {
	font-family: var(--font-display);
	font-size: 1.2rem;
	text-transform: uppercase;
}

.member-card em {
	color: var(--muted);
	font-style: normal;
}

.album-tile {
	min-height: 140px;
	justify-content: flex-end;
	background:
		linear-gradient(180deg, rgba(255, 43, 214, 0.12), rgba(7, 6, 10, 0.2)),
		#17131c;
}

.road-split {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 40px;
	align-items: center;
}

.tour-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tour-list li {
	display: grid;
	grid-template-columns: 76px 1fr auto;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.tour-list span,
.tour-list b {
	font-family: var(--font-display);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tour-list b {
	color: var(--magenta);
}

.layout-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 40px;
	padding-bottom: 72px;
}

.story,
.entry-card,
.sidebar .widget {
	background: rgba(18, 16, 24, 0.88);
	border: 1px solid var(--line);
}

.story,
.entry-card {
	padding: 28px;
	margin-bottom: 24px;
}

.story__head {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
}

.entry h2,
.entry h3,
.entry h4 {
	margin: 1.6rem 0 0.7rem;
	color: var(--yellow);
	text-transform: none;
}

.entry p,
.entry li {
	color: #ece6db;
}

.entry ul,
.entry ol {
	padding-left: 1.2rem;
}

.entry .alignleft {
	float: left;
	margin: 0 24px 16px 0;
}

.entry .alignright {
	float: right;
	margin: 0 0 16px 24px;
}

.entry .aligncenter,
.entry .alignnone {
	display: block;
	margin: 16px auto;
}

.entry .wp-caption {
	max-width: 100%;
}

.entry .wp-caption-text {
	color: var(--muted);
	font-size: 0.9rem;
}

.entry table {
	width: 100%;
	border-collapse: collapse;
}

.entry td,
.entry th {
	padding: 8px;
	border: 1px solid var(--line);
}

.tags,
.page-links {
	color: var(--muted);
}

.pager {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin: 28px 0;
}

.pager a {
	font-family: var(--font-display);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
}

.sidebar .widget {
	padding: 20px;
	margin-bottom: 20px;
}

.widget__title {
	margin: 0 0 12px;
	font-size: 1rem;
	text-transform: uppercase;
	color: var(--yellow);
}

.sidebar ul {
	margin: 0;
	padding-left: 1.1rem;
}

.sidebar .search-form input {
	width: 100%;
}

.circuit-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 24px;
	margin: 0 0 72px;
	padding: 0;
	list-style: none;
}

.circuit-list a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
	color: var(--chrome);
	text-decoration: none;
}

.circuit-list a:hover {
	color: var(--magenta);
}

.comments {
	margin-top: 36px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

.comment-list {
	padding-left: 0;
	list-style: none;
}

.site-footer {
	background: #08070c;
	border-top: 1px solid var(--line);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 32px;
	padding: 48px 0 24px;
}

.footer-heading {
	margin: 0 0 12px;
	color: var(--yellow);
	font-family: var(--font-display);
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-nav a {
	display: inline-block;
	padding: 4px 0;
	color: var(--chrome);
	text-decoration: none;
}

.footer-tag,
.footer-copy {
	color: var(--muted);
}

.footer-copy {
	margin: 0;
	padding: 0 16px 28px;
	text-align: center;
	font-size: 14px;
}

@media (max-width: 900px) {
	.card-grid,
	.member-grid,
	.album-grid,
	.road-split,
	.layout-with-sidebar,
	.footer-grid,
	.circuit-list,
	.card-grid--list .ticket-card__link {
		grid-template-columns: 1fr;
	}

	.card-grid--list .ticket-card__link {
		grid-template-rows: 180px auto;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		display: none;
		position: absolute;
		top: calc(var(--header-h) + 12px);
		right: 16px;
		left: 16px;
		padding: 16px;
		flex-direction: column;
		align-items: stretch;
		background: #100e16;
		border: 1px solid var(--line);
	}

	body.nav-open .site-nav {
		display: flex;
	}

	.site-nav__list {
		flex-direction: column;
	}

	.search-form input {
		width: 100%;
	}

	.entry .alignleft,
	.entry .alignright {
		float: none;
		margin: 16px 0;
	}

	.tour-list li {
		grid-template-columns: 1fr;
	}
}
