/* =========================================================
   CHAMPS ENTERTAINMENT — SITE STYLESHEET
   Consolidated from the per-page inline <style> blocks.
   Organized by section so it's easy to scan and edit.
   ========================================================= */

:root {
	--gold: #C8A700;
	--bg: #131314;
}

/* =========================
   BASE / RESET
   ========================= */
html, body {
	width: 100%;
	overflow-x: hidden;
}

body {
	background-color: #000;
	color: white;
	font-family: 'Nunito', sans-serif;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	min-height: 100vh;
	margin: 0;
}

img {
	max-width: 90%;
	width: auto;
	height: auto;
	border-radius: 10px;
}

video {
	max-width: 100%;
	width: auto;
	height: auto;
	border-radius: 10px;
	overflow: hidden;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1 {
	font-weight: 700;
	font-size: 50px;
	margin-bottom: 20px;
}

h2 {
	font-weight: 700;
	font-size: 25px;
	margin-bottom: 20px;
	color: var(--gold);
	max-width: 700px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

h3 {
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 10px;
	margin-top: 0px;
	color: var(--gold);
}

hr {
	min-width: 20%;
	max-width: 20%;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

p {
	font-size: 20px;
	margin-bottom: 20px;
}

a {
	color: white;
	text-decoration: none;
	font-size: 20px;
	margin: 5px 0;
}

a:hover {
	text-decoration: underline;
}

.left-aligned-list {
	text-align: left;
	font-size: 20px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* =========================
   UTILITY CLASSES
   (replaces one-off inline style="" attributes)
   ========================= */
.text-gold   { color: var(--gold); }
.text-dark   { color: #000; }
.text-muted  { color: grey; }
.text-muted-sm { color: grey; font-size: 10px; }
.no-margin-bottom { margin-bottom: 0; }
.no-margin-top    { margin-top: 0; }
.mb-10             { margin-bottom: 10px; }
.mb-20             { margin-bottom: 20px; }
.form-disclaimer   { color: grey; font-size: 11px; margin-bottom: 10px; }
.img-fixed-800     { width: 800px; max-width: 90%; }
.hidden-field      { display: none; }

.btn-gold {
	display: inline-block;
	background: var(--gold);
	color: black;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
}

/* =========================
   LAYOUT
   ========================= */
.container {
	max-width: 900px;
	margin: 0 auto;
}

/* =========================
   HERO / TOP NAV
   ========================= */
.hero {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: 70vh;
	overflow: hidden;
	border-radius: 0;
}

/* Full-width background video/image */
.hero-video {
	position: absolute;
	inset: 0;
	max-width: 100% !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	border-radius: 0 !important;
	filter: brightness(0.7);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.topbar {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: 50px 14px;
	column-gap: 10px;
}

.navbar {
	background: transparent !important;
}

.topbar-left {
	justify-self: start;
	padding-right: 230px; /* reserve space for centered logo */
	min-width: 0;
}

.topbar-center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.topbar-center a,
.topbar-center img {
	pointer-events: auto;
}

.brand-logo {
	width: 300px;
	max-width: 300px;
	height: auto;
	border-radius: 0;
	margin: 0;
	filter:
		drop-shadow(0 2px 4px rgba(0, 0, 0, 0.55))
		drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.topbar-right {
	padding-left: 230px; /* reserve space for centered logo */
	min-width: 0;
	justify-self: end;
	flex-wrap: nowrap;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 12px;
}

.topbar-social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.topbar-social a {
	font-size: 30px;
	margin: 0;
	text-decoration: none;
}

.topbar-social a:hover {
	color: var(--gold);
}

.contact-btn {
	display: inline-block;
	padding: 8px 10px;
	border: 1px solid white;
	border-radius: 10px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
}

.contact-btn:hover {
	background: var(--gold);
	color: #000;
	text-decoration: none;
}

.hero-text {
	margin-top: auto;
	padding: 28px 18px 44px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-title {
	color: var(--gold);
	max-width: 900px;
	text-shadow: 0 2px 16px rgba(0,0,0,0.7);
	font-size: 60px;
}

.hero-subtitle {
	color: rgba(255,255,255,0.9);
	text-shadow: 0 2px 16px rgba(0,0,0,0.7);
	max-width: 800px;
}

/* =========================
   CONTENT / ALTERNATING SECTIONS
   ========================= */
.after-hero {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 18px;
}

.alt-section {
	width: 100%;
	padding: 40px 18px;
	transition: background-color 0.6s ease, color 0.6s ease;
}

.alt-dark {
	background: #000;
}

.alt-section.in-view {
	background: var(--gold);
	color: #000;
}

.alt-section.in-view h2 {
	color: #000;
}

/* =========================
   BUTTONS — review / CTA links
   (currently used on reviews.html)
   ========================= */
.google-review-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	margin: 30px 0;
}

.review-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 260px;
	padding: 12px 18px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
}

.review-btn.primary {
	background: var(--gold);
	color: #000;
	border: 1px solid var(--gold);
}

.review-btn.primary:hover {
	background: #fff;
	color: #000;
	border-color: #fff;
}

.review-btn.secondary {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
	font-size: 15px;
}

.review-btn.secondary:hover {
	background: #fff;
	color: #000;
}

/* =========================
   CONTACT PAGE — form
   ========================= */
.contact-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
}

.contact-form {
	width: min(520px, 92vw);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin: 0 auto;
	gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	box-sizing: border-box;
}

.contact-form button {
	align-self: center;
	width: auto;
	min-width: 220px;
}

.contact-form .g-recaptcha {
	margin: 0 auto;
}

form {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
	max-width: 400px;
}

input, select, textarea {
	width: 100%;
	padding: 10px;
	margin: 5px 0;
	font-size: 16px;
	border: none;
	border-radius: 5px;
}

textarea {
	height: 150px;
}

button {
	background-color: white;
	color: black;
	padding: 10px 15px;
	font-size: 18px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 0px;
	margin-bottom: 20px;
}

button:hover {
	background-color: gray;
}

/* =========================
   MEDIA EMBEDS — gallery / music
   ========================= */
.youtube-container {
	width: 100%;
	max-width: 700px;
	margin: 20px auto;
	padding: 0 12px;
	box-sizing: border-box;
}

.youtube-container iframe {
	width: 100%;
	display: block;
	height: 450px;
	border: none;
	border-radius: 10px;
}

.soundcloud-container {
	width: 100%;
	max-width: 700px;
	margin: 20px auto;
	padding: 0 12px;
	box-sizing: border-box;
}

.soundcloud-container iframe {
	display: block;
	width: 100%;
	height: 450px;
	border: none;
	border-radius: 10px;
}

/* =========================
   PRESS KIT — carousel, tabs, booking buttons
   ========================= */
.carousel-container {
	position: relative;
	overflow: hidden;
	max-width: 800px;
	margin: 20px auto;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}

.carousel-item {
	flex: 0 0 100%;
	text-align: center;
	padding: 10px;
}

.carousel-item img {
	width: 80%;
	max-width: 150px;
	height: auto;
	margin: 0 auto;
	border-radius: 10px;
	transition: transform 0.3s;
}

.carousel-item img:hover {
	transform: scale(1.05);
}

.carousel-item p {
	margin-top: 10px;
	font-size: 18px;
	color: white;
	transition: color 0.3s;
}

.carousel-item:hover p {
	color: var(--gold);
}

.carousel-buttons {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 98.8%;
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
	transform: translateY(-50%);
	z-index: 10;
	pointer-events: none;
}

.carousel-buttons button {
	pointer-events: all;
	background: rgba(0, 0, 0, 0.6);
	border: none;
	color: white;
	font-size: 30px;
	cursor: pointer;
	padding: 10px;
	border-radius: 50%;
}

.carousel-buttons button:hover {
	background: var(--gold);
	color: black;
}

#booking {
	text-align: center;
}

.booking-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.booking-buttons button {
	background: #222;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 18px;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
	display: flex;
	align-items: center;
	gap: 8px;
}

.booking-buttons button:hover {
	background: var(--gold);
	color: black;
	transform: scale(1.05);
}

.booking-buttons i {
	font-size: 20px;
}

.social-icons a {
	margin: 0 20px;
	font-size: 50px;
}

.social-icons a:hover {
	color: #ddd;
	text-decoration: none;
}

.audio-player iframe {
	width: 95%;
	height: 170px;
}

.video-player iframe {
	width: 65%;
	height: 300px;
}

.media-block {
	max-width: 800px;
	margin: 0 auto;
}

.media-tabs button {
	background: #222;
	color: white;
	border: none;
	padding: 10px 20px;
	margin: 5px;
	cursor: pointer;
	border-radius: 5px;
	transition: background 0.3s;
}

.media-tabs button:hover,
.media-tabs button.active {
	background: var(--gold);
	color: black;
}

iframe {
	width: 80%;
	height: 300px;
	border: none;
	margin: 20px auto;
	display: block;
	border-radius: 10px;
}

section {
	padding: 20px;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
	width: 100%;
	background: #000;
	color: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	padding: 28px 18px 14px;
	align-items: start;
}

.footer-logo {
	width: 240px;
	height: auto;
	border-radius: 0;
	margin-bottom: 10px;
}

.footer-contact a {
	color: #fff;
	text-decoration: none;
}

.footer-contact a:hover {
	text-decoration: none;
	color: var(--gold);
}

.footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 26px;
	justify-items: start;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
}

.footer-links a:hover {
	text-decoration: none;
	color: var(--gold);
}

.footer-social {
	margin-top: 18px;
	display: flex;
	justify-content: center;
	gap: 14px;
}

.footer-social a {
	color: #fff;
	font-size: 28px;
	text-decoration: none;
	align-items: center;
}

.footer-social a:hover {
	transform: translateY(-1px);
	color: var(--gold);
}

.footer-copy {
	grid-column: 1 / -1;
	text-align: center;
	margin-top: 10px;
	font-size: 12px;
	opacity: 0.8;
}

.bottom-cta {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 18px 0 40px;
}

.bottom-cta .contact-btn {
	width: auto;
	min-width: 220px;
	text-align: center;
}

/* =========================
   BLOG LANDING PAGE — post cards
   ========================= */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin: 60px 0 80px;
	text-align: left;
}

.blog-card {
	display: block;
	background: #131314;
	border: 1px solid rgba(200, 167, 0, 0.25);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: white;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
	border-color: var(--gold);
	transform: translateY(-2px);
	text-decoration: none;
}

.blog-card-body {
	padding: 26px 28px 28px;
}

.blog-card-date {
	display: block;
	font-size: 13px;
	color: var(--gold);
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
}

.blog-card-title {
	color: white;
	font-size: 22px;
	max-width: none;
	text-align: left;
	margin: 0 0 12px;
}

.blog-card-excerpt {
	font-size: 16px;
	color: rgba(255,255,255,0.8);
	max-width: none;
	text-align: left;
	margin: 0 0 18px;
}

.blog-card-readmore {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: var(--gold);
	text-decoration: none;
}

.blog-card-readmore:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   DESKTOP VIEW (>= 768px)
   ========================================================= */
@media (min-width: 768px) {
	.menu-toggle {
		display: none;
	}

	p {
		max-width: 700px;
		margin: 0 auto;
		word-wrap: break-word;
		text-align: center;
		margin-bottom: 20px;
	}

	h2 {
		max-width: 950px;
		margin: 30px auto;
		word-wrap: break-word;
		text-align: center;
	}

	.navbar {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		gap: 6px 10px;
		padding: 6px 0;
		width: auto;
	}

	.navbar a {
		padding: 6px 8px;
		font-size: 14px;
		white-space: normal;
		line-height: 1.1;
		font-weight: 600;
	}

	.navbar a:hover {
		color: var(--gold);
		text-decoration: none;
	}

	.navbar a.active {
		color: var(--gold);
		font-weight: 900;
	}

	.nav-item {
		position: relative;
		display: inline-block;
	}

	.submenu {
		position: absolute;
		top: 100%;
		left: 0;
		background: transparent;
		backdrop-filter: blur(16px);
		min-width: 220px;
		display: none;
		flex-direction: column;
		z-index: 1000;
	}

	.submenu a {
		padding: 12px 16px;
		white-space: nowrap;
	}

	.has-submenu:hover .submenu,
	.has-submenu:focus-within .submenu {
		display: flex;
	}

	.services-link {
		display: inline-flex;
		align-items: center;
		gap: 6px;
	}

	.services-link::after {
		content: "▾";
		font-size: 0.7em;
		transition: transform 0.2s ease;
		opacity: 0.7;
		margin-left: 4px;
	}

	.has-submenu:hover > .services-link::after {
		transform: rotate(180deg);
	}

	/* Press kit carousel: 3 items across on desktop */
	.carousel-item {
		flex: 0 0 33.33%;
	}
}

/* =========================================================
   MOBILE VIEW (<= 768px)
   ========================================================= */
@media (max-width: 768px) {
	.navbar {
		display: none;
		flex-direction: column;
		background: black;
		position: fixed;
		width: 100%;
		top: 50px;
		left: 0;
		text-align: center;
		padding: 10px 0;
		z-index: 999;
	}

	.navbar.show {
		display: flex;
	}

	.navbar a {
		display: block;
		padding: 10px;
	}

	.navbar a.active {
		color: var(--gold);
		font-weight: 900;
	}

	.menu-toggle {
		display: block !important;
		position: relative !important;
		top: auto !important;
		right: auto !important;
		font-size: 28px;
		cursor: pointer;
		color: white;
		z-index: 1000;
		border: 1px solid white;
		padding: 5px;
		border-radius: 20%;
		background: rgba(0, 0, 0, 0.5);
	}

	.nav-item {
		position: relative;
		display: inline-block;
	}

	.submenu {
		position: static;
		top: 100%;
		left: 0;
		background: transparent !important;
		min-width: 220px;
		display: none;
		flex-direction: column;
		z-index: 1000;
		overflow: hidden;
		transition: max-height 0.3s ease;
		max-height: 0;
	}

	.submenu a {
		padding: 12px 16px;
		white-space: nowrap;
		padding-left: 32px;
	}

	.has-submenu:hover .submenu,
	.has-submenu:focus-within .submenu {
		display: flex;
	}

	.has-submenu.open .submenu {
		display: block;
		max-height: 500px;
	}

	.services-link {
		cursor: pointer;
	}

	.services-link::after {
		content: "▾";
		display: inline-block;
		margin-left: 10px;
		font-size: 0.8em;
		transition: transform 0.2s ease;
		opacity: 0.7;
	}

	.has-submenu.open .services-link::after {
		transform: rotate(180deg);
	}

	p {
		max-width: 400px;
		margin: 0 auto;
		text-align: center;
		margin-bottom: 20px;
	}

	h2 {
		max-width: 400px;
	}

	h1 {
		font-weight: 700;
		font-size: 40px;
		margin-bottom: 20px;
	}

	.brand-logo {
		width: 80px;
		max-width: 80px;
		filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
	}

	.topbar-social a {
		font-size: 16px;
	}

	.contact-btn {
		padding: 8px 10px;
		font-size: 14px;
	}

	.navbar {
		background: transparent !important;
		backdrop-filter: blur(16px);
	}

	.site-footer {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-copy {
		text-align: center;
	}

	.footer-links {
		justify-items: start;
	}

	.left-aligned-list {
		text-align: left;
		font-size: 20px;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.review-btn {
		min-width: 220px;
		font-size: 15px;
	}

	.topbar {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: auto auto;
		align-items: center;
		padding: 14px 12px;
		row-gap: 10px;
	}

	.topbar-left {
		grid-column: 1;
		grid-row: 1;
		padding-right: 0;
	}

	.topbar-center {
		grid-column: 2;
		position: relative !important;
		left: auto !important;
		top: auto !important;
		transform: none !important;
		text-align: center;
	}

	.topbar-right {
		grid-column: 3;
		grid-row: 1;
		padding-left: 0;
		display: flex;
		justify-content: flex-end;
	}

	.topbar-left,
	.topbar-right {
		padding: 0 !important;
	}

	.topbar-social {
		grid-column: 3;
		grid-row: 2;
		justify-content: flex-end;
	}

	.brand-logo {
		width: 200px;
		max-width: 200px;
	}

	.hero-title {
		font-size: 32px;
	}

	.container {
		max-width: 100%;
		padding-left: 12px;
		padding-right: 12px;
	}

	* {
		box-sizing: border-box;
	}

	body {
		margin: 0;
	}

	.topbar,
	.hero-overlay,
	.after-hero,
	.container,
	.alt-section,
	.site-footer {
		width: 100%;
		max-width: 100%;
	}

	.carousel-container {
		max-width: 300px;
	}

	.carousel-track {
		max-width: 300px;
	}

	.carousel-buttons,
	.carousel-buttons button {
		display: none;
	}

	.video-player iframe {
		width: 95%;
		height: 300px;
	}

	.audio-player iframe {
		width: 95%;
		height: 170px;
	}
}

/* =========================================================
   MID-RANGE VIEW (tablet: 769px – 1100px)
   Collapses nav into hamburger even though it's "desktop" width
   ========================================================= */
@media (max-width: 1100px) and (min-width: 769px) {
	.menu-toggle {
		display: block !important;
		font-size: 22px;
		padding: 6px 8px;
		border-radius: 10px;
		border: 1px solid rgba(255,255,255,0.75);
		background: rgba(0,0,0,0.35);
		cursor: pointer;
	}

	.navbar {
		display: none !important;
		position: absolute;
		top: 100%;
		left: 0;
		width: max-content;
		min-width: 240px;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 10px 12px;
		background: rgba(0,0,0,0.55);
		backdrop-filter: blur(16px);
		border-radius: 12px;
		z-index: 1000;
	}

	.navbar.show {
		display: flex !important;
	}

	.navbar a {
		display: block;
		width: 100%;
		padding: 10px 10px;
		font-size: 15px;
		white-space: nowrap;
		text-align: left;
	}

	.topbar {
		padding: 30px 10px;
	}

	.topbar-social {
		grid-column: 3;
		grid-row: 2;
		justify-content: flex-end;
	}

	.submenu {
		position: static !important;
		min-width: 0;
		width: 100%;
		display: none;
		flex-direction: column;
		padding-left: 12px;
		background: transparent;
		backdrop-filter: none;
	}

	.has-submenu.open .submenu {
		display: flex;
	}

	.services-link {
		width: 100%;
		justify-content: space-between;
	}
}
