:root {
	--accent-color: #607d8b;
	--accent-rgb: 96, 125, 139;
}

#bandHero {
	position: relative;
	height: 500px;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

#heroOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0.4) 50%, rgba(17, 17, 17, 0.7) 100%);
	backdrop-filter: blur(8px);
}

#heroContent {
	position: relative;
	z-index: 2;
	width: 90%;
	max-width: 1200px;
	padding-bottom: 40px;
	align-items: center;
	text-align: center;
}

#heroLogo {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 4px solid var(--accent-color);
	background-size: cover;
	background-position: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	margin-bottom: 20px;
	animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

#mainBandTitle {
	font-size: 3.5rem;
	font-weight: 900;
	color: #fff;
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	margin: 0;
	letter-spacing: -1px;
}

#heroGenres {
	margin-top: 10px;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.genreTag {
	background: rgba(var(--accent-rgb), 0.2);
	border: 1px solid rgba(var(--accent-rgb), 0.5);
	color: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: capitalize;
	backdrop-filter: blur(5px);
}

#headerSocials {
	margin-top: 15px;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

#headerSocials img,
#headerSocials .toSvg {
	width: 24px !important;
	height: 24px !important;
	display: block;
}

#headerSocials a {
	transition: transform 0.3s ease, filter 0.3s ease;
}

#headerSocials a:hover {
	transform: translateY(-5px) scale(1.1);
}

.maButtonSmall {
	padding: 3px 8px;
	border: 1px solid #fff;
	border-radius: 4px;
	font-size: 0.7rem;
	font-weight: bold;
	color: #fff;
}

/* Main Content Grid */
#bandMainContent {
	width: 90%;
	max-width: 1200px;
	margin: -30px auto 100px;
	position: relative;
	z-index: 10;
}

.bandContentGrid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 30px;
}

.leftColumn {
	gap: 30px;
}

.contentCard,
.infoCard,
.stickyCard {
	background: rgba(30, 30, 30, 0.7);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 25px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cardHeader {
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(var(--accent-rgb), 0.3);
	padding-bottom: 12px;
}

.cardHeader h3 {
	margin: 0;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-color);
}

#bandBioBody {
	line-height: 1.8;
	color: #ccc;
	font-size: 1.05rem;
	max-height: 420px;
	/* Aligns card height (approx 520px) with Spotify player */
	overflow: hidden;
	position: relative;
	transition: max-height 0.5s ease;
}

#bandBioBody.expanded {
	max-height: 5000px;
	/* Sufficiently large */
}

#bandBioBody.is-truncated::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: linear-gradient(0deg, rgba(30, 30, 30, 1) 0%, rgba(30, 30, 30, 0) 100%);
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.3s ease;
}

#bandBioBody.expanded::after {
	opacity: 0;
}

#bandBioBody p {
	margin-bottom: 20px;
}

.readMoreBtn {
	background: none;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	padding: 10px 25px;
	border-radius: 20px;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 1px;
	cursor: pointer;
	margin-top: 20px;
	transition: all 0.3s ease;
}

.readMoreBtn:hover {
	background: var(--accent-color);
	color: #fff;
	box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}

.noBio {
	font-style: italic;
	color: #666;
}

/* Info Section (Leden & Disco) */
#additionalInfo {
	gap: 20px;
	flex-wrap: wrap;
}

.infoCard {
	flex: 1;
	min-width: 250px;
}

.infoList {
	gap: 10px;
}

.infoItem {
	justify-content: space-between;
	padding: 10px 15px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 8px;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
	max-width: calc(100% - 30px);
}

.infoItem:hover {
	background: rgba(255, 255, 255, 0.07);
	border-left-color: var(--accent-color);
	transform: translateX(5px);

}

.infoItem strong {
	color: #eee;
	font-weight: 500;
}

.infoItem span {
	color: #888;
	font-size: 0.9rem;
}

/* Albums Grid */
#bandAlbumsGrid {
	gap: 15px;
	margin-top: 10px;
}

.albumCard {
	width: calc(25% - 12px);
	aspect-ratio: 1;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.albumHover {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px 15px;
	background: linear-gradient(0deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0) 100%);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.albumCard:hover .albumHover {
	opacity: 1;
	transform: translateY(0);
}

.albumYear {
	font-size: 0.75rem;
	color: var(--accent-color);
	font-weight: bold;
	margin-bottom: 4px;
}

.albumTitle {
	font-size: 0.9rem;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Related Posts */
.relatedPostItem {
	transition: transform 0.3s ease;
}

.relatedPostItem:hover {
	transform: translateX(5px);
}

.relatedPostItem:hover .postTitle {
	color: var(--accent-color) !important;
}

/* Right Column (Spotify) */
.stickyCard {
	position: sticky;
	top: 100px;
	padding: 10px;
}

#spotifyEmbed {
	border-radius: 12px;
}

.noSpotifyPlaceholder {
	height: 300px;
	justify-content: center;
	align-items: center;
	color: #555;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 900px) {
	.bandContentGrid {
		grid-template-columns: 1fr;
	}

	#mainBandTitle {
		font-size: 2.5rem;
	}

	#bandHero {
		height: 350px;
	}

	#heroLogo {
		width: 150px;
		height: 150px;
	}
}

@media screen and (max-width: 600px) {
	.albumCard {
		width: calc(50% - 8px);
	}

	#additionalInfo {
		flex-direction: column;
	}
}