/* ===========================
   Artist Page Styles
   =========================== */

/* Hero */
.hero-small {
	padding: 80px 0;
	background: linear-gradient(
		180deg,
		rgba(16, 16, 16, 0.85),
		rgba(12, 12, 12, 0.95)
	);
	text-align: center;
}

.hero-small .hero-title {
	font-size: clamp(2.25rem, 4vw, 3rem);
	margin-bottom: 16px;
	color: #fff;
	font-weight: 700;
}

.hero-small .hero-sub {
	font-size: 1.125rem;
	color: var(--text-muted);
	max-width: 700px;
	margin: 0 auto 24px auto;
	line-height: 1.6;
}

.hero-small .btn-primary {
	margin-top: 12px;
	padding: 16px 32px;
	font-size: 1.05rem;
	border-radius: 10px;
	background-color: var(--accent-color, #c8a76d);
	color: #111;
	font-weight: 600;
	transition: all 0.3s ease;
}

.hero-small .btn-primary:hover {
	background-color: #fff;
	color: #111;
	transform: translateY(-2px);
}

/* Gallery */
.artist-gallery {
	column-count: 3;
	column-gap: 16px;
}

.artist-gallery img {
	width: 100%;
	margin-bottom: 16px;
	border-radius: 12px;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-gallery img:hover {
	transform: scale(1.03);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

/* Lightbox styles (will be handled in artist.js) */
.lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 9999;
}

.lightbox-overlay.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-overlay img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 12px;
}

/* CTA Section */
.contact-band {
	background: linear-gradient(
		135deg,
		rgba(200, 167, 109, 0.15),
		rgba(12, 12, 12, 0.85)
	);
	padding: 80px 20px;
	margin-top: 40px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.contact-band h2 {
	font-size: clamp(1.85rem, 2.8vw, 2.25rem);
	margin-bottom: 16px;
	color: #fff;
}

.contact-band p {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin-bottom: 24px;
	line-height: 1.6;
}

.contact-band a.btn-primary {
	padding: 16px 32px;
	font-size: 1.05rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.contact-band a.btn-primary:hover {
	background-color: #fff;
	color: #111;
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px) {
	.artist-gallery {
		column-count: 2;
	}
}

@media (max-width: 600px) {
	.artist-gallery {
		column-count: 1;
	}

	.hero-small .hero-title {
		font-size: 2rem;
	}

	.hero-small .hero-sub {
		font-size: 1rem;
	}
}
