/* General Styles */
body {
	font-family: 'Inter', sans-serif;
	background-color: #121212;
	color: #ffffff;
	margin: 0;
	padding: 0;
	line-height: 1.6;
}

.container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: auto;
	position: absolute;
}

nav {
	display: flex;
	gap: 30px;
	margin-top: 40px;
	margin-bottom: 40px;
}

nav a {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

nav a:visited {
	color: rgba(255, 255, 255, 0.9);
}

nav a:hover {
	color: #ffffff;
	text-shadow:
		0 0 8px rgba(255, 49, 49, 0.5),
		0 0 15px rgba(255, 49, 49, 0.3);
}

nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff3131, #ff7a7a);
	transition: width 0.3s ease;
}

nav a:hover::after {
	width: 100%;
}

nav {
	animation: navFadeIn 1s ease;
}

a.link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

a:hover.link {
	text-decoration: underline;
}

a:visited.link {
	color: rgba(255, 255, 255, 0.9);
}

@keyframes navFadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

header {
	position: relative;
	width: 100%;
	min-height: 550px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background:
		linear-gradient(rgba(20, 0, 0, 0.35), rgba(0, 0, 0, 0.75)),
		url('images/index-header.jpg') center/cover no-repeat;

	height: 625px;
	justify-content: start;
}

header::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 150px;
	background: linear-gradient(to bottom, transparent, #121212);
	pointer-events: none;
}

.music-header {
	/* Using one of the JPGs as a background placeholder */
	background:
		linear-gradient(rgba(25, 0, 30, 0.45), rgba(0, 0, 0, 0.8)),
		url('images/music-header.jpg') center/cover no-repeat;
}

.gallery-header {
	/* Using one of the JPGs as a background placeholder */
	background:
		linear-gradient(rgba(10, 10, 10, 0.25), rgba(0, 0, 0, 0.7)),
		url('images/gallery-header.jpg') center/cover no-repeat;
}

.contact-header {
	/* Using one of the JPGs as a background placeholder */
	background:
		linear-gradient(rgba(0, 0, 0, 0.35), rgba(15, 0, 0, 0.6)),
		url('images/contact-header.jpg') center/cover no-repeat;
}

.biography {
	margin-bottom: 15px;
	font-family: 'Manrope', sans-serif;
	font-size: 1.05rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.biography-pic {
	float: left;
	width: 260px;
	height: 260px;
	object-fit: cover;
	margin: 0 25px 15px 0;
	border-radius: 10px;
	box-shadow:
		0 0 20px rgba(0, 0, 0, 0.4),
		0 0 15px rgba(255, 49, 49, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

h1 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0;
	color: #ffffff;
	text-shadow:
		0 0 8px rgba(255, 60, 60, 0.6),
		0 0 20px rgba(255, 60, 60, 0.5),
		0 0 40px rgba(255, 60, 60, 0.25);
}

p.subtitle {
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	position: relative;
	display: inline-block;
	padding-bottom: 19px;
}

p.subtitle::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 350px;
	height: 10px;
	background: radial-gradient(
		ellipse at center,
		#ff3131 0%,
		#ff7a7a 50%,
		transparent 100%
	);
	filter: blur(6px);
	border-radius: 999px;
}

/* Main Container */
.main {
	max-width: 920px;
	width: 920px;
	margin: -170px auto 100px auto;
	padding: 20px;
	background-color: #1e1e1e;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	position: relative;
}

h2 {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border: none;
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
}

h2 i {
	margin-right: 10px;
	background: linear-gradient(180deg, #ff7a7a, #ff3131);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.block {
	display: block;
}

p.small {
	font-size: 12px;
	width: 60%;
}

.epk {
	width: 264px;
	height: 341px;
}

.hidden {
	display: none;
}

.concerts {
	margin-bottom: 20px;
}

#visualizer {
	position: relative;
	height: 120px;
	width: 100%;
	margin-bottom: 0px;
	background: rgba(255, 49, 49, 0.03);
	border: 1px solid rgba(255, 49, 49, 0.1);
	border-radius: 10px;
	overflow: hidden;
	opacity: 1;
	transition:
		height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
		opacity 0.3s ease,
		border-color 0.3s ease;
}

#visualizer.hidden {
	height: 26px;
	border-color: rgba(255, 49, 49, 0.2);
	display: block;
}

#closeVisualizer {
	position: absolute;
	top: 9px;
	right: 15px;
	z-index: 10;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	font-family: sans-serif;
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	user-select: none;
	transition: color 0.2s ease;
}

#closeVisualizer:hover {
	color: rgba(255, 49, 49, 1);
}

/* Audio Player Section */
.track-list {
	margin-bottom: 20px;
}

.track {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	margin-bottom: 10px;
	border-radius: 5px;
	background: linear-gradient(
		135deg,
		#2d2d2d 0%,
		#3a3a3a 30%,
		#262626 60%,
		#1f1f1f 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 4px 12px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
}

.track:hover {
	border-color: rgba(255, 60, 60, 0.4);
	box-shadow:
		0 0 12px rgba(255, 60, 60, 0.18),
		0 0 24px rgba(255, 60, 60, 0.08);
}

.track-name {
	font-size: 1.1rem;
	font-weight: bold;
}

audio {
	width: 400px;
	height: 40px;
	outline: none;
}

/* Photo Gallery */
#my-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
}

#my-gallery img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 5px;
	transition: transform 0.3s ease;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#my-gallery img:hover {
	transform: scale(1.04);
}

.gallery {
	column-count: 3;
	column-gap: 15px;
}

.gallery a {
	display: block;
	margin-bottom: 15px;
	break-inside: avoid;
}

.gallery img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

/* Styles applied when the div is fully visible */
#hidden-tracks:not([hidden]) {
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}

/* Defines the starting state the exact moment [hidden] is removed */
@starting-style {
	#hidden-tracks:not([hidden]) {
		opacity: 0;
		transform: translateY(-20px);
	}
}

.roundedLoadMore {
	padding: 7px 10px 7px 10px;
	background-color: #fff;
	font-family: 'Inter', sans-serif;
	border-radius: 10px;
}

#loadMoreEvents {
}

.gallery img:hover {
	transform: scale(1.02);
	box-shadow:
		0 0 15px rgba(255, 49, 49, 0.3),
		0 0 30px rgba(255, 49, 49, 0.15);
}

.video-wrapper {
	text-align: center;
	background: #161616;
	padding: 15px;
	border-radius: 12px;
	border: 1px solid rgba(255, 49, 49, 0.15);
	width: 288px; /* 576 / 2 */
	height: auto;
	margin: 0 auto -30px;
}

.video-wrapper video {
	width: 288px; /* 576 / 2 */
	height: auto;
	border-radius: 8px;
}

.top-align {
	object-position: top;
}

.socials-section {
	position: relative;
	top: 0px;
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 25px;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px;
	background: #2a2a2a;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: #ff3131;
	transform: translateY(-3px);
}

.lg {
	padding: 20px;
	font-size: 30px;
	width: 30px;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	font-size: 36px;
}

.h2socials {
	display: block;
	margin-bottom: 7px;
}

.social-link i {
	font-size: 1.4rem;
}

.fa-youtube {
	color: #ff0000;
}

.fa-instagram {
	color: #e1306c;
}

.fa-facebook-f {
	color: #1877f2;
}

.fa-spotify {
	color: #1db954;
}

.fa-snapchat {
	color: #fffc00;
}

.fa-envelope {
	color: #ffffff;
}

.social-link:hover i {
	color: white;
}

.load-more-container {
	text-align: center;
	margin-top: 30px;
}

.load-more-btn {
	display: inline-block;
	padding: 8px 25px;
	font-family: 'Orbitron', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: white;
	text-decoration: none;
	border: 1px solid rgba(255, 49, 49, 0.4);
	background: linear-gradient(
		135deg,
		rgba(255, 49, 49, 0.15),
		rgba(255, 255, 255, 0.03)
	);
	border-radius: 999px;
	transition: all 0.3s ease;
}

.load-more-btn:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #ff3131, #ff5555);
	box-shadow: 0 0 20px rgba(255, 49, 49, 0.3);
}

.video-section {
	margin-bottom: 60px;
}

.video-wrapper {
	background: #161616;
	padding: 15px;
	border-radius: 12px;
	border: 1px solid rgba(255, 49, 49, 0.15);
}

.video-wrapper video {
	width: 100%;
	display: block;
	border-radius: 8px;
}

/* =========================================
   Contact Form Styles
   ========================================= */

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
	width: 100%;
	margin-top: 10px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-group label {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px 20px;
	background-color: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-sizing: border-box; /* Keeps the 100% width from spilling outside the container */
}

/* Match the placeholder text to your subtitle opacity */
.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

/* Red glow focus states to match your nav and button hovers */
.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: rgba(255, 49, 49, 0.5);
	box-shadow: 0 0 15px rgba(255, 49, 49, 0.15);
	background-color: rgba(255, 255, 255, 0.05);
}

/* Styling the submit button to fill the width and stand out */
.submit-btn {
	width: 100%;
	margin-top: 10px;
	padding: 18px;
	font-size: 1.1rem;
	cursor: pointer;
	font-weight: 700;
}

/* Footer */
footer {
	text-align: center;
	padding: 40px 20px;
	color: #777;
	font-size: 0.9rem;
}

footer a {
	color: #aaaaaa;
}

footer a:visited {
	color: #aaaaaa;
}

footer a:hover {
	color: #cccccc;
}

/* =========================================
   Responsive & Mobile Styles
   ========================================= */

/* Hide hamburger on desktop */
.hamburger {
	display: none;
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 2rem;
	color: white;
	cursor: pointer;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.hamburger:hover {
	color: #ff3131;
}

/* Ensure all media scales safely */
img,
video {
	max-width: 100%;
	height: auto;
}

/* TABLET (992px and below) */
@media screen and (max-width: 992px) {
	.main {
		width: 90%; /* Let it breathe on the sides */
		margin-top: -120px;
	}

	h1 {
		font-size: 6rem; /* Scale down giant header */
	}

	header {
		height: 500px;
		min-height: 450px;
	}

	.gallery {
		column-count: 2; /* Adjust masonry columns */
	}
}

/* MOBILE (768px and below) */
@media screen and (max-width: 768px) {
	.hamburger {
		display: block;
	}

	/* Transform Nav into a slide-out menu */
	nav {
		position: fixed;
		top: 0;
		right: -100%; /* Hidden off-screen by default */
		width: 70%;
		max-width: 300px;
		height: 100vh;
		background-color: rgba(18, 18, 18, 0.98);
		backdrop-filter: blur(15px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
		transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
		z-index: 999;
	}

	/* Toggled by JS */
	nav.active {
		right: 0;
	}

	h1 {
		font-size: 4rem;
		margin-top: 80px; /* Push down to avoid hamburger icon */
	}

	p.subtitle::after {
		width: 200px; /* Shrink glowing underline */
	}

	.main {
		width: 95%;
		padding: 15px;
		top: -80px; /* Adjust overlap for mobile */
		margin-bottom: 10px;
	}

	/* Fix the biography image (stop it from floating awkwardly) */
	.biography-pic {
		float: none;
		display: block;
		margin: 0 auto 20px auto;
		width: 100%;
		max-width: 260px;
	}

	/* Fix audio players cutting off */
	audio {
		width: 100%;
		margin-top: 10px;
	}

	/* Stack tracks vertically */
	.track {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	/* Fix the rigid video wrapper */
	.video-wrapper {
		width: 100%;
		box-sizing: border-box;
	}

	.video-wrapper video {
		width: 100%;
	}

	/* Make iframe embeds (Spotify) fit */
	iframe {
		width: 100% !important;
	}

	/* Single column masonry for standard gallery */
	.gallery {
		column-count: 1;
	}

	/* Two columns for the PhotoSwipe grid */
	#my-gallery {
		grid-template-columns: 1fr 1fr;
	}
}

/* SMALL MOBILE (480px and below) */
@media screen and (max-width: 480px) {
	h1 {
		font-size: 3rem;
		margin-top: 95px;
	}

	/* Drop PhotoSwipe grid to single column on very small phones */
	#my-gallery {
		grid-template-columns: 1fr;
	}

	iframe {
		height: auto;
	}

	p.subtitle {
		letter-spacing: 0.3em;
	}
}
