/*
Theme Name: Rock Star Child — Not Afraid Of Heights
Theme URI: https://notafraidof.com
Description: Child theme for Rock Star. Dark gold aesthetic for Not Afraid Of Heights.
Author: Not Afraid Of Heights
Template: rock-star
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: rock-star-child
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
	--color-bg:           #0a0a0a;
	--color-bg-alt:       #111111;
	--color-bg-card:      #161616;
	--color-bg-footer:    #050505;
	--color-text:         #ffffff;
	--color-text-muted:   #aaaaaa;
	--color-text-faint:   #666666;
	--color-accent:       #c9a84c;
	--color-accent-dark:  #a8882e;
	--color-accent-light: #e0c070;
	--color-border:       #222222;
	--color-border-gold:  rgba(201, 168, 76, 0.3);
	--font-heading:       'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
	--font-body:          'Inter', 'Helvetica Neue', Arial, sans-serif;
	--transition:         0.3s ease;
	--radius:             2px;
	--max-width:          1200px;
}

/* ==========================================================================
   BASE RESET & GLOBAL
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6,
.site-title,
.entry-title,
.widget-title,
.section-title {
	font-family: var(--font-heading);
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.1;
	color: var(--color-text);
	text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	color: var(--color-text-muted);
	margin-bottom: 1.25rem;
}

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover,
a:focus {
	color: var(--color-accent-light);
	text-decoration: none;
}

strong, b {
	color: var(--color-text);
	font-weight: 600;
}

blockquote {
	border-left: 3px solid var(--color-accent);
	padding: 1rem 1.5rem;
	margin: 2rem 0;
	background: var(--color-bg-card);
	color: var(--color-text-muted);
	font-style: italic;
}

hr {
	border: none;
	border-top: 1px solid var(--color-border);
	margin: 2.5rem 0;
}

hr.gold-divider {
	border-top: 1px solid var(--color-border-gold);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

#page,
.site-inner {
	background-color: var(--color-bg);
}

.wrapper,
.container {
	max-width: var(--max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

#content,
#primary {
	background-color: var(--color-bg);
}

.site-content {
	background-color: var(--color-bg);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

#masthead,
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	transition: background var(--transition), box-shadow var(--transition);
	padding: 0;
}

#masthead.scrolled,
.site-header.scrolled {
	background: rgba(10, 10, 10, 0.97);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

#masthead .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

/* Site branding */
.site-branding {
	flex-shrink: 0;
}

.site-title {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	margin: 0;
}

.site-title a {
	color: var(--color-text);
	transition: color var(--transition);
}

.site-title a:hover {
	color: var(--color-accent);
}

.site-description {
	color: var(--color-text-faint);
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0;
}

/* Custom logo */
.custom-logo-link img {
	max-height: 60px;
	width: auto;
	transition: opacity var(--transition);
}

.custom-logo-link:hover img {
	opacity: 0.85;
}

/* Primary navigation */
#site-navigation,
.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 0.5rem 1rem;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: 1rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color var(--transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-page-ancestor > a {
	color: var(--color-accent);
}

/* Dropdown menus */
.main-navigation ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(10, 10, 10, 0.98);
	border-top: 2px solid var(--color-accent);
	min-width: 180px;
	flex-direction: column;
	gap: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.main-navigation li:hover > ul,
.main-navigation li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation ul ul a {
	padding: 0.6rem 1.25rem;
	font-size: 0.85rem;
	border-bottom: 1px solid var(--color-border);
}

.main-navigation ul ul li:last-child a {
	border-bottom: none;
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--color-accent);
	color: var(--color-text);
	padding: 0.4rem 0.75rem;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background var(--transition), color var(--transition);
}

.menu-toggle:hover {
	background: var(--color-accent);
	color: #000;
}

/* ==========================================================================
   HERO / HEADER IMAGE SLIDER
   ========================================================================== */

.header-image-slider,
.site-header-main {
	position: relative;
}

/* Full-screen hero wrapper */
.header-image-slider .featured-image-header,
.header-image-slider .featured-slider-wrap {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

/* Dark overlay on hero images */
.header-image-slider .featured-image-header::after,
.header-image-slider .featured-slider-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(10, 10, 10, 0.3) 0%,
		rgba(10, 10, 10, 0.5) 60%,
		rgba(10, 10, 10, 0.85) 100%
	);
	z-index: 1;
}

.header-image-slider img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Hero text content */
.hero-content,
.featured-image-header .header-text {
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	text-align: center;
	width: 90%;
	max-width: 800px;
}

.hero-content h1,
.featured-image-header .site-title {
	font-size: clamp(3rem, 8vw, 7rem);
	color: var(--color-text);
	text-shadow: 0 2px 20px rgba(0,0,0,0.8);
	margin-bottom: 0.25rem;
}

.hero-content .tagline,
.featured-image-header .site-description {
	font-family: var(--font-body);
	font-size: 1rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 2rem;
}

/* Scroll indicator */
.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-text-muted);
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(6px); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.btn,
.wp-block-button__link {
	display: inline-block;
	background-color: var(--color-accent);
	color: #000000 !important;
	font-family: var(--font-heading);
	font-size: 1rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.75rem 2rem;
	border: 2px solid var(--color-accent);
	border-radius: var(--radius);
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
	text-decoration: none;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.btn:hover,
.wp-block-button__link:hover {
	background-color: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	color: #000000 !important;
}

.button.outline,
.btn-outline {
	background: transparent;
	color: var(--color-accent) !important;
	border-color: var(--color-accent);
}

.button.outline:hover,
.btn-outline:hover {
	background: var(--color-accent);
	color: #000 !important;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-text);
	padding: 0.65rem 1rem;
	width: 100%;
	font-family: var(--font-body);
	font-size: 0.95rem;
	transition: border-color var(--transition);
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-accent);
}

input::placeholder,
textarea::placeholder {
	color: var(--color-text-faint);
}

label {
	color: var(--color-text-muted);
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 0.4rem;
}

/* ==========================================================================
   NEWS TICKER
   ========================================================================== */

#news-ticker-section,
.news-ticker-wrap {
	background: var(--color-accent);
	padding: 0.5rem 0;
	overflow: hidden;
}

.news-ticker-wrap .ticker-label {
	background: #000;
	color: var(--color-accent);
	font-family: var(--font-heading);
	font-size: 0.85rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0 1rem;
}

.news-ticker-wrap a {
	color: #000;
	font-family: var(--font-heading);
	letter-spacing: 0.05em;
}

/* ==========================================================================
   FEATURED CONTENT SECTIONS
   ========================================================================== */

.featured-content-wrap,
#featured-content-section {
	padding: 5rem 0;
	background: var(--color-bg-alt);
	position: relative;
}

.featured-content-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(to right, transparent, var(--color-accent), transparent);
}

.featured-content-wrap .section-title,
.featured-content-headline {
	text-align: center;
	font-size: clamp(2rem, 4vw, 3.5rem);
	margin-bottom: 0.5rem;
	color: var(--color-text);
}

.featured-content-subheadline {
	text-align: center;
	color: var(--color-accent);
	font-family: var(--font-body);
	font-size: 0.85rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 3rem;
}

/* Content cards */
.featured-content-wrap article,
.featured-content-wrap .hentry {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform var(--transition), border-color var(--transition);
}

.featured-content-wrap article:hover {
	transform: translateY(-4px);
	border-color: var(--color-border-gold);
}

.featured-content-wrap .entry-title {
	font-size: 1.4rem;
	padding: 1rem 1.25rem 0.5rem;
}

.featured-content-wrap .entry-title a {
	color: var(--color-text);
}

.featured-content-wrap .entry-title a:hover {
	color: var(--color-accent);
}

.featured-content-wrap .entry-summary,
.featured-content-wrap .entry-content {
	padding: 0 1.25rem 1.25rem;
	color: var(--color-text-muted);
	font-size: 0.9rem;
}

.featured-content-wrap .entry-thumbnail img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	filter: brightness(0.9);
	transition: filter var(--transition);
}

.featured-content-wrap article:hover .entry-thumbnail img {
	filter: brightness(1);
}

/* ==========================================================================
   FEATURED SLIDER
   ========================================================================== */

.featured-slider-wrap {
	position: relative;
}

.featured-slider-wrap .slide-excerpt-wrap {
	position: absolute;
	bottom: 15%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	text-align: center;
	width: 80%;
	max-width: 700px;
}

.featured-slider-wrap .slide-excerpt-wrap h2 {
	font-size: clamp(2rem, 5vw, 4rem);
	color: #fff;
	text-shadow: 0 2px 15px rgba(0,0,0,0.9);
}

.featured-slider-wrap .slide-excerpt-wrap p {
	color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   POSTS & BLOG
   ========================================================================== */

#main,
.site-content #primary {
	padding: 4rem 0;
}

article.hentry {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	margin-bottom: 2rem;
	overflow: hidden;
	transition: border-color var(--transition);
}

article.hentry:hover {
	border-color: var(--color-border-gold);
}

.entry-header {
	padding: 1.5rem 1.5rem 0;
}

.entry-title {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	margin-bottom: 0.5rem;
}

.entry-title a {
	color: var(--color-text);
}

.entry-title a:hover {
	color: var(--color-accent);
}

.entry-meta {
	color: var(--color-text-faint);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.entry-meta a {
	color: var(--color-accent);
}

.entry-content,
.entry-summary {
	padding: 1rem 1.5rem 1.5rem;
	color: var(--color-text-muted);
}

.entry-footer {
	padding: 0.75rem 1.5rem;
	border-top: 1px solid var(--color-border);
	font-size: 0.8rem;
	color: var(--color-text-faint);
}

.entry-thumbnail img {
	width: 100%;
	display: block;
	height: 300px;
	object-fit: cover;
	filter: brightness(0.85);
	transition: filter var(--transition);
}

article.hentry:hover .entry-thumbnail img {
	filter: brightness(1);
}

/* Read more link */
.more-link,
a.more-link {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-accent);
	border-bottom: 1px solid var(--color-border-gold);
	padding-bottom: 2px;
	transition: border-color var(--transition), color var(--transition);
}

.more-link:hover {
	color: var(--color-accent-light);
	border-color: var(--color-accent-light);
}

/* ==========================================================================
   SIDEBAR & WIDGETS
   ========================================================================== */

#secondary,
.widget-area {
	background: var(--color-bg-alt);
	padding: 1.5rem;
}

.widget {
	margin-bottom: 2.5rem;
}

.widget-title {
	font-size: 1.2rem;
	color: var(--color-text);
	border-bottom: 2px solid var(--color-accent);
	padding-bottom: 0.5rem;
	margin-bottom: 1.25rem;
}

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

.widget ul li {
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-text-muted);
	font-size: 0.9rem;
}

.widget ul li:last-child {
	border-bottom: none;
}

.widget ul li a {
	color: var(--color-text-muted);
}

.widget ul li a:hover {
	color: var(--color-accent);
}

/* ==========================================================================
   EVENTON — TOUR DATES (dark theme overrides)
   ========================================================================== */

/* Wrapper reset */
.naoh-eventon-wrap .eventon_list,
.naoh-eventon-wrap .eventon-cal,
.naoh-eventon-wrap #eventon_list {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
}

/* Each event row */
.naoh-eventon-wrap .eventon_list_event,
.naoh-eventon-wrap article.eventon_list_event {
	background: var(--color-bg-card) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: var(--radius) !important;
	margin-bottom: 0.75rem !important;
	box-shadow: none !important;
	transition: border-color var(--transition) !important;
}

.naoh-eventon-wrap .eventon_list_event:hover {
	border-color: var(--color-border-gold) !important;
}

/* Left color strip */
.naoh-eventon-wrap .eventon_event_color_strip {
	background: var(--color-accent) !important;
}

/* Event title */
.naoh-eventon-wrap .evcal_event_title,
.naoh-eventon-wrap .evcal_event_title a,
.naoh-eventon-wrap .evo_event_title {
	color: var(--color-text) !important;
	font-family: var(--font-heading) !important;
	font-size: 1.25rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
}

.naoh-eventon-wrap .evcal_event_title a:hover,
.naoh-eventon-wrap .evo_event_title a:hover {
	color: var(--color-accent) !important;
}

/* Date & time */
.naoh-eventon-wrap .evcal_event_date,
.naoh-eventon-wrap .eventon_evt_time,
.naoh-eventon-wrap .evo_event_date_time,
.naoh-eventon-wrap .evcal_month_line {
	color: var(--color-accent) !important;
	font-family: var(--font-heading) !important;
}

/* Venue / location text */
.naoh-eventon-wrap .evcal_event_location,
.naoh-eventon-wrap .evcal_evdata_row,
.naoh-eventon-wrap .evcal_evdata_row span,
.naoh-eventon-wrap .evcal_evdata_cell {
	color: var(--color-text-muted) !important;
	font-size: 0.9rem !important;
}

/* Description / expanded content */
.naoh-eventon-wrap .evcal_desc,
.naoh-eventon-wrap .evcal_desc p,
.naoh-eventon-wrap .evcal_btn_a {
	color: var(--color-text-muted) !important;
}

/* All links inside the wrap */
.naoh-eventon-wrap a {
	color: var(--color-accent) !important;
}

.naoh-eventon-wrap a:hover {
	color: var(--color-accent-light) !important;
}

/* CTA / ticket buttons */
.naoh-eventon-wrap .evcal_sqbtn,
.naoh-eventon-wrap .evo_cta_btn,
.naoh-eventon-wrap .eventon-btn {
	background: var(--color-accent) !important;
	color: #000 !important;
	border: none !important;
	font-family: var(--font-heading) !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	border-radius: var(--radius) !important;
}

.naoh-eventon-wrap .evcal_sqbtn:hover,
.naoh-eventon-wrap .evo_cta_btn:hover,
.naoh-eventon-wrap .eventon-btn:hover {
	background: var(--color-accent-dark) !important;
	color: #000 !important;
}

/* "Load more" link */
.naoh-eventon-wrap .eventon_more_tag,
.naoh-eventon-wrap .eventon_more_tag a {
	color: var(--color-accent) !important;
	font-family: var(--font-heading) !important;
	letter-spacing: 0.08em !important;
}

/* Month/year header bar */
.naoh-eventon-wrap .eventon_list_heading,
.naoh-eventon-wrap .evo_month_line {
	background: transparent !important;
	color: var(--color-text-faint) !important;
	border-bottom: 1px solid var(--color-border) !important;
	font-family: var(--font-heading) !important;
	font-size: 0.8rem !important;
	letter-spacing: 0.2em !important;
	text-transform: uppercase !important;
	padding: 0.5rem 0 !important;
	margin-bottom: 0.75rem !important;
}

/* ==========================================================================
   THE EVENTS CALENDAR — TOUR DATES
   ========================================================================== */

/* List view — the best for tour dates */
.tribe-events-calendar,
.tribe-events-list,
.tribe-common {
	background: var(--color-bg) !important;
	color: var(--color-text) !important;
}

/* Events container */
.tribe-events {
	background: var(--color-bg) !important;
	font-family: var(--font-body) !important;
}

/* Section heading */
.tribe-events-header,
.tribe-events-header__title {
	background: var(--color-bg) !important;
	color: var(--color-text) !important;
}

/* Each event row */
.tribe-events-list .tribe-event-schedule-details,
.tribe-events-list__event-row,
.tribe-common-b2,
.tribe-events-list .tribe-events-calendar-list__event-row {
	background: var(--color-bg-card) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: var(--radius) !important;
	margin-bottom: 1rem !important;
	padding: 1.25rem 1.5rem !important;
	transition: border-color var(--transition) !important;
}

.tribe-events-list__event-row:hover {
	border-color: var(--color-border-gold) !important;
}

/* Event date */
.tribe-event-date-start,
.tribe-events-schedule,
.tribe-events-calendar-list__event-datetime-wrapper {
	color: var(--color-accent) !important;
	font-family: var(--font-heading) !important;
	font-size: 1.1rem !important;
	letter-spacing: 0.05em !important;
}

/* Event title */
.tribe-event-url,
.tribe-events-list .tribe-events-calendar-list__event-title-link,
.tribe-common-h5 a,
.tribe-events-pro-summary__event-title a {
	color: var(--color-text) !important;
	font-family: var(--font-heading) !important;
	font-size: 1.5rem !important;
}

.tribe-event-url:hover,
.tribe-events-calendar-list__event-title-link:hover {
	color: var(--color-accent) !important;
}

/* Venue/location */
.tribe-events-schedule,
.tribe-venue,
.tribe-venue-location,
.tribe-events-abbr {
	color: var(--color-text-muted) !important;
	font-size: 0.9rem !important;
}

/* Tickets/CTA button */
.tribe-event-tickets,
.tribe-events-list .tribe-common-c-btn,
.tribe-common-c-btn-border {
	background: var(--color-accent) !important;
	color: #000 !important;
	border-color: var(--color-accent) !important;
	font-family: var(--font-heading) !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
}

.tribe-common-c-btn:hover,
.tribe-common-c-btn-border:hover {
	background: var(--color-accent-dark) !important;
	border-color: var(--color-accent-dark) !important;
}

/* Nav buttons (prev/next) */
.tribe-events-c-nav__prev,
.tribe-events-c-nav__next {
	color: var(--color-accent) !important;
}

/* ==========================================================================
   WOOCOMMERCE — MERCH STORE
   ========================================================================== */

.woocommerce,
.woocommerce-page {
	background: var(--color-bg);
}

/* Product grid */
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
}

.woocommerce ul.products li.product {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color var(--transition), transform var(--transition);
	list-style: none;
}

.woocommerce ul.products li.product:hover {
	border-color: var(--color-border-gold);
	transform: translateY(-4px);
}

/* Product image */
.woocommerce ul.products li.product img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	filter: brightness(0.9);
	transition: filter var(--transition);
}

.woocommerce ul.products li.product:hover img {
	filter: brightness(1);
}

/* Product info */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--color-text) !important;
	font-family: var(--font-heading);
	font-size: 1.3rem;
	padding: 1rem 1rem 0.25rem;
	margin: 0;
}

.woocommerce ul.products li.product .price {
	color: var(--color-accent) !important;
	font-family: var(--font-heading);
	font-size: 1.1rem;
	padding: 0 1rem;
	display: block;
}

.woocommerce ul.products li.product .price del {
	color: var(--color-text-faint) !important;
	font-size: 0.9rem;
}

/* Add to cart */
.woocommerce ul.products li.product .button,
.woocommerce .button.add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--color-accent) !important;
	color: #000 !important;
	border: 2px solid var(--color-accent) !important;
	font-family: var(--font-heading) !important;
	font-size: 0.95rem !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	border-radius: var(--radius) !important;
	margin: 0.75rem 1rem 1rem !important;
	width: calc(100% - 2rem) !important;
	text-align: center !important;
	padding: 0.65rem 1rem !important;
	transition: background var(--transition), border-color var(--transition) !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	background: var(--color-accent-dark) !important;
	border-color: var(--color-accent-dark) !important;
	color: #000 !important;
}

/* Single product */
.woocommerce div.product .woocommerce-tabs {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.5rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: var(--color-bg-alt);
	border-color: var(--color-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: var(--color-text-muted);
	font-family: var(--font-heading);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--color-accent);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--color-accent) !important;
	font-family: var(--font-heading);
	font-size: 2rem;
}

/* Cart & checkout */
.woocommerce table.shop_table {
	background: var(--color-bg-card);
	border-color: var(--color-border);
	color: var(--color-text);
}

.woocommerce table.shop_table th {
	background: var(--color-bg-alt);
	color: var(--color-text);
	border-color: var(--color-border);
	font-family: var(--font-heading);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.woocommerce table.shop_table td {
	border-color: var(--color-border);
	color: var(--color-text-muted);
}

/* Notice/alerts */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
	background: var(--color-bg-card) !important;
	border-top-color: var(--color-accent) !important;
	color: var(--color-text-muted) !important;
}

/* ==========================================================================
   SOCIAL ICONS
   ========================================================================== */

.social-icons-wrap ul,
.social-links-menu {
	display: flex;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-icons-wrap a,
.social-links-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	color: var(--color-text-muted);
	font-size: 0.9rem;
	transition: color var(--transition), border-color var(--transition), background var(--transition);
	text-decoration: none;
}

.social-icons-wrap a:hover,
.social-links-menu a:hover {
	color: #000;
	border-color: var(--color-accent);
	background: var(--color-accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

#colophon,
.site-footer {
	background: var(--color-bg-footer);
	border-top: 1px solid var(--color-border);
	padding: 3.5rem 0 1.5rem;
	color: var(--color-text-faint);
}

.site-footer .wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.site-footer .widget-title {
	font-size: 1rem;
	letter-spacing: 0.15em;
	color: var(--color-text);
	border-bottom: 1px solid var(--color-border-gold);
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
}

.site-footer .widget ul li {
	border-bottom-color: rgba(255,255,255,0.05);
	font-size: 0.85rem;
}

.site-footer a {
	color: var(--color-text-faint);
	transition: color var(--transition);
}

.site-footer a:hover {
	color: var(--color-accent);
}

.site-footer .site-info {
	border-top: 1px solid var(--color-border);
	padding-top: 1.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Footer logo / site name */
.footer-site-title {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

/* ==========================================================================
   SCROLL-UP BUTTON
   ========================================================================== */

#scroll-up,
.scrollup {
	background: var(--color-accent);
	color: #000;
	border-radius: var(--radius);
	transition: background var(--transition);
}

#scroll-up:hover,
.scrollup:hover {
	background: var(--color-accent-dark);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.pagination .nav-links,
.posts-navigation .nav-links {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin: 3rem 0;
}

.pagination .page-numbers,
.posts-navigation a {
	display: inline-block;
	padding: 0.5rem 0.85rem;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	color: var(--color-text-muted);
	font-family: var(--font-heading);
	font-size: 0.9rem;
	border-radius: var(--radius);
	transition: all var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.posts-navigation a:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #000;
}

/* ==========================================================================
   SEARCH
   ========================================================================== */

.search-form {
	display: flex;
	gap: 0.5rem;
}

.search-form input[type="search"] {
	flex: 1;
}

.search-form .search-submit {
	flex-shrink: 0;
	width: auto;
	padding: 0.65rem 1.25rem;
}

/* ==========================================================================
   COMMENTS
   ========================================================================== */

.comments-area {
	background: var(--color-bg-alt);
	padding: 2rem;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
}

.comment-list .comment {
	border-bottom: 1px solid var(--color-border);
	padding: 1.5rem 0;
}

.comment-meta .comment-author .fn {
	color: var(--color-text);
	font-family: var(--font-heading);
}

.comment-meta .comment-metadata a {
	color: var(--color-text-faint);
	font-size: 0.8rem;
}

.comment-body p {
	color: var(--color-text-muted);
}

/* ==========================================================================
   GUTENBERG / BLOCK EDITOR
   ========================================================================== */

.wp-block-quote {
	border-left: 3px solid var(--color-accent);
	background: var(--color-bg-card);
	padding: 1.25rem 1.5rem;
}

.wp-block-separator {
	border-color: var(--color-border);
}

.wp-block-separator.is-style-wide {
	border-color: var(--color-border-gold);
}

.wp-block-cover {
	min-height: 60vh;
}

.wp-block-button .wp-block-button__link {
	background: var(--color-accent);
	color: #000;
	border-radius: var(--radius);
}

.wp-block-button .wp-block-button__link:hover {
	background: var(--color-accent-dark);
}

/* ==========================================================================
   CONTACT FORM 7
   ========================================================================== */

.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	color: var(--color-text);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	border-color: var(--color-accent);
}

.wpcf7-form input[type="submit"] {
	background: var(--color-accent);
	color: #000;
	border: none;
	cursor: pointer;
	width: auto;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

#preloader,
.preloader {
	background: var(--color-bg);
}

.preloader .preloader-icon,
.preloader .spinner {
	border-top-color: var(--color-accent);
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

#breadcrumb,
.breadcrumb-area {
	background: var(--color-bg-alt);
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--color-border);
}

.breadcrumb a {
	color: var(--color-text-muted);
}

.breadcrumb a:hover {
	color: var(--color-accent);
}

.breadcrumb .current {
	color: var(--color-accent);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-gold     { color: var(--color-accent) !important; }
.text-muted    { color: var(--color-text-muted) !important; }
.bg-dark-card  { background: var(--color-bg-card) !important; }
.border-gold   { border-color: var(--color-border-gold) !important; }
.section-pad   { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* Gold top border accent for sections */
.gold-top {
	border-top: 2px solid var(--color-accent);
}

/* Full-width section */
.full-width-section {
	width: 100vw;
	margin-left: calc(-50vw + 50%);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

/* Tablets */
@media screen and (max-width: 1024px) {
	.site-footer .wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Large mobile / small tablet */
@media screen and (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.main-navigation ul {
		display: none;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(10, 10, 10, 0.98);
		padding: 5rem 2rem 2rem;
		gap: 0;
		z-index: 999;
		overflow-y: auto;
	}

	.main-navigation.toggled ul {
		display: flex;
	}

	.main-navigation a {
		font-size: 1.5rem;
		padding: 0.75rem 0;
		border-bottom: 1px solid var(--color-border);
	}

	.main-navigation ul ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: none;
		border-top: none;
		background: transparent;
		padding-left: 1rem;
	}

	.main-navigation ul ul a {
		font-size: 1.1rem;
		color: var(--color-text-muted);
	}

	#masthead .wrapper {
		flex-wrap: wrap;
	}

	.site-footer .wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.site-footer .site-info {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}

	h1 { font-size: 2.5rem; }
	h2 { font-size: 2rem; }
	h3 { font-size: 1.5rem; }

	.featured-content-wrap {
		padding: 3rem 0;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}

/* Mobile */
@media screen and (max-width: 480px) {
	.wrapper,
	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr 1fr;
	}

	.hero-content h1,
	.featured-image-header .site-title {
		font-size: 2.5rem;
	}
}

/* ==========================================================================
   HOMEPAGE — NAOH CUSTOM COMPONENTS
   (used by front-page.php — these classes are not in the parent theme)
   ========================================================================== */

/* --- Hero section --- */
.naoh-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--color-bg);
}

.naoh-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(10,10,10,0.3) 0%,
		rgba(10,10,10,0.55) 60%,
		rgba(10,10,10,0.88) 100%
	);
	z-index: 1;
}

.naoh-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem 1.5rem;
	max-width: 800px;
	width: 100%;
}

.naoh-hero__title {
	font-family: var(--font-heading);
	font-size: clamp(3rem, 9vw, 7.5rem);
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 24px rgba(0,0,0,0.85);
}

.naoh-hero__tagline {
	font-family: var(--font-body);
	font-size: 1rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 2.5rem;
}

.naoh-hero__ctas {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Scroll indicator arrow */
.naoh-hero__scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	animation: naoh-bounce 2s infinite;
}

.naoh-hero__scroll-indicator span {
	display: block;
	width: 22px;
	height: 22px;
	border-right: 2px solid var(--color-accent);
	border-bottom: 2px solid var(--color-accent);
	transform: rotate(45deg);
}

@keyframes naoh-bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50%       { transform: translateX(-50%) translateY(8px); }
}

/* --- Buttons --- */
.naoh-btn {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 1rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.75rem 2rem;
	border: 2px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	text-decoration: none;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.naoh-btn--gold {
	background: var(--color-accent);
	color: #000 !important;
	border-color: var(--color-accent);
}

.naoh-btn--gold:hover {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	color: #000 !important;
}

.naoh-btn--outline {
	background: transparent;
	color: var(--color-text) !important;
	border-color: var(--color-text);
}

.naoh-btn--outline:hover {
	background: var(--color-text);
	color: #000 !important;
}

.naoh-btn--sm {
	padding: 0.4rem 1rem;
	font-size: 0.85rem;
}

/* --- Container / layout --- */
.naoh-container {
	max-width: var(--max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.naoh-container--narrow {
	max-width: 760px;
}

.naoh-text-center {
	text-align: center;
}

/* --- Sections --- */
.naoh-section {
	padding: 5rem 0;
}

.naoh-section--dark {
	background: var(--color-bg);
}

.naoh-section--darker {
	background: var(--color-bg-alt);
}

.naoh-section--accent {
	background: #0e0c07;
	border-top: 2px solid var(--color-border-gold);
	border-bottom: 2px solid var(--color-border-gold);
}

.naoh-section__heading {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-text);
	text-align: center;
	margin-bottom: 2.5rem;
}

.naoh-section__heading::after {
	content: '';
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-accent);
	margin: 0.6rem auto 0;
}

.naoh-section__cta {
	text-align: center;
	margin-top: 2.5rem;
}

/* --- Latest Release grid --- */
.naoh-release-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.naoh-release-grid__player {
	min-height: 200px;
}

.naoh-spotify-placeholder {
	background: var(--color-bg-card);
	border: 1px dashed var(--color-border);
	border-radius: var(--radius);
	padding: 2rem;
	text-align: center;
	color: var(--color-text-faint);
}

.naoh-release-grid__info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.naoh-release__title {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0;
}

.naoh-release__date {
	color: var(--color-accent);
	font-family: var(--font-body);
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin: 0;
}

.naoh-streaming-links {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 0.5rem;
}

.naoh-streaming-link {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-text-muted) !important;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: border-color var(--transition), color var(--transition), background var(--transition);
	text-align: center;
}

.naoh-streaming-link:hover {
	border-color: var(--color-accent);
	color: var(--color-text) !important;
	background: rgba(201,168,76,0.08);
}

/* --- Upcoming Shows --- */
.naoh-shows-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.naoh-show-card {
	display: grid;
	grid-template-columns: 160px 1fr auto;
	align-items: center;
	gap: 1.5rem;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.25rem 1.5rem;
	transition: border-color var(--transition);
}

.naoh-show-card:hover {
	border-color: var(--color-border-gold);
}

.naoh-show-card__date {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	color: var(--color-accent);
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.naoh-show-card__details {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.naoh-show-card__venue {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	color: var(--color-text);
	letter-spacing: 0.03em;
}

.naoh-show-card__location {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	letter-spacing: 0.05em;
}

.naoh-show-card__action {
	flex-shrink: 0;
}

.naoh-shows-empty {
	text-align: center;
	padding: 3rem 0;
	color: var(--color-text-faint);
}

/* --- Video section --- */
.naoh-video-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--color-bg-card);
}

.naoh-video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.naoh-video-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	text-align: center;
	color: var(--color-text-faint);
	border: 1px dashed var(--color-border);
	border-radius: var(--radius);
}

/* --- Newsletter --- */
.naoh-newsletter__subtext {
	color: var(--color-text-muted);
	margin-bottom: 2rem;
}

.naoh-newsletter-form .naoh-newsletter-form__row {
	display: flex;
	gap: 0.75rem;
	max-width: 480px;
	margin: 0 auto;
}

.naoh-newsletter-form input[type="email"] {
	flex: 1;
	min-width: 0;
	color: #ffffff;
	background-color: #1a1a1a;
}

.naoh-newsletter-form__privacy {
	font-size: 0.8rem;
	color: var(--color-text-faint);
	margin-top: 0.75rem;
	text-align: center;
}

/* --- Before-footer widget area --- */
.naoh-before-footer {
	background: var(--color-bg-alt);
	border-top: 1px solid var(--color-border);
	padding: 3rem 0;
}

/* --- Responsive overrides for naoh components --- */
@media screen and (max-width: 768px) {
	.naoh-release-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.naoh-show-card {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.naoh-show-card__action {
		justify-self: start;
	}

	.naoh-hero__ctas {
		flex-direction: column;
		align-items: center;
	}

	.naoh-section {
		padding: 3rem 0;
	}

	.naoh-newsletter-form .naoh-newsletter-form__row {
		flex-direction: column;
	}
}

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
	body {
		background: #fff;
		color: #000;
	}

	#masthead,
	#colophon,
	.main-navigation,
	.social-icons-wrap {
		display: none;
	}
}

/* ==========================================================================
   WPFORMS — dark theme overrides
   ========================================================================== */

#quick-contact .wpforms-container label,
#quick-contact .wpforms-container .wpforms-field-label,
#quick-contact .wpforms-container .wpforms-field-sublabel {
	color: #ffffff;
	text-align: left !important;
	display: block;
}

#quick-contact .wpforms-container .wpforms-field {
	text-align: left;
}

#quick-contact .wpforms-container input[type="text"],
#quick-contact .wpforms-container input[type="email"],
#quick-contact .wpforms-container input[type="tel"],
#quick-contact .wpforms-container textarea,
#quick-contact .wpforms-container select {
	background-color: #1a1a1a;
	color: #ffffff;
	border: 1px solid #333333;
	border-radius: 2px;
}

#quick-contact .wpforms-container input::placeholder,
#quick-contact .wpforms-container textarea::placeholder {
	color: #888888;
}

#quick-contact .wpforms-container input:focus,
#quick-contact .wpforms-container textarea:focus {
	border-color: var(--color-accent);
	outline: none;
	box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.25);
}

#quick-contact .wpforms-container .wpforms-submit {
	background-color: var(--color-accent);
	color: #000000;
	border: none;
	padding: 0.75rem 2rem;
	font-family: var(--font-heading);
	font-size: 1rem;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: background-color var(--transition);
}

#quick-contact .wpforms-container .wpforms-submit:hover {
	background-color: var(--color-accent-light);
}

/* TODO: remove the CF7 "Quick Contact" widget from Appearance → Widgets → Before Footer */
.naoh-before-footer {
	display: none;
}

/* ==========================================================================
   LAYOUT — full-width content + centered footer
   ========================================================================== */

/* Remove the sidebar float so content fills the full page width */
#primary {
	width: 100% !important;
	float: none !important;
}

#secondary {
	display: none;
}

/* Center the footer copyright line */
.site-footer .site-info {
	justify-content: center;
	text-align: center;
}

.naoh-before-footer,
footer {
    text-align: center;
}

.naoh-before-footer .naoh-container,
footer .naoh-container {
    margin: 0 auto;
    padding: 40px 20px;   /* adjust vertical spacing */
    max-width: 1140px;    /* or whatever your main content width is */
}
