/**
 * Cinestar Child — gallery.css
 * Gallery page (/gallery/) styles — under construction placeholder.
 * Class prefix: ce-gl-* (all elements in this file)
 * Depends on: main.css (design tokens + utilities)
 *
 * Sections:
 *   A. Page Hero       — concert-lights spotlight effect
 *   B. Coming Soon     — icon, social links, action buttons
 */


/* ════════════════════════════════════════════════════════════════════
   A. PAGE HERO — concert-lights effect
   Multiple radial spotlights in gold / magenta / purple.
   .ce-hero class triggers header.js transparent->solid behaviour.
   ════════════════════════════════════════════════════════════════════ */

.ce-gl-hero {
	position: relative;
	min-height: 44vh;
	display: flex;
	align-items: flex-end;
	padding-top: var(--ce-header-h, 80px);
	padding-bottom: 3.5rem;
	overflow: hidden;
}

@media (max-width: 767px) {
	.ce-gl-hero {
		min-height: 38vh;
		padding-bottom: 2.5rem;
	}
}

/* Concert-lights: layered radial gradients simulating stage spotlights */
.ce-gl-hero__bg {
	position: absolute;
	inset: 0;
	background:
		/* gold spotlight - top-left */
		radial-gradient(ellipse 45% 65% at 15% 0%,   rgba(255, 215,   0, 0.18) 0%, transparent 65%),
		/* magenta spotlight - top-right */
		radial-gradient(ellipse 40% 55% at 85% 10%,  rgba(255,  20, 147, 0.14) 0%, transparent 60%),
		/* purple spotlight - bottom-centre */
		radial-gradient(ellipse 50% 50% at 50% 100%, rgba(123,  47, 190, 0.16) 0%, transparent 55%),
		/* soft gold wash - bottom-left */
		radial-gradient(ellipse 35% 40% at 5% 90%,   rgba(255, 215,   0, 0.10) 0%, transparent 50%),
		/* base */
		var(--ce-bg, #0A0A0A);
}

.ce-gl-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
}

.ce-gl-hero__content {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
}

.ce-gl-hero__eyebrow {
	font-family: var(--ce-font-display, 'Montserrat', sans-serif);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ce-gold, #FFD700);
	margin: 0 0 0.875rem;
}

.ce-gl-hero__title {
	font-family: var(--ce-font-display, 'Montserrat', sans-serif);
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 900;
	color: #fff;
	line-height: 1.05;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.ce-gl-hero__sub {
	font-family: var(--ce-font-body, 'Inter', sans-serif);
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	max-width: 48ch;
	margin: 0 auto;
	line-height: 1.65;
}


/* ════════════════════════════════════════════════════════════════════
   B. COMING SOON SECTION
   Centred content: aperture icon, heading, social links, buttons.
   Subtle bokeh/concert-lights texture behind content.
   ════════════════════════════════════════════════════════════════════ */

.ce-gl-coming-soon {
	position: relative;
	padding: 6rem 0 7rem;
	background: var(--ce-bg, #0A0A0A);
	overflow: hidden;
}

/* Subtle bokeh/concert-lights texture */
.ce-gl-coming-soon__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255, 215, 0, 0.04) 0%, transparent 70%),
		radial-gradient(ellipse 40% 40% at 20% 60%, rgba(123, 47, 190, 0.03) 0%, transparent 60%),
		radial-gradient(ellipse 35% 35% at 80% 30%, rgba(255, 20, 147, 0.03) 0%, transparent 55%);
	pointer-events: none;
}

.ce-gl-coming-soon__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

/* ── Aperture icon ── */
.ce-gl-coming-soon__icon {
	margin-bottom: 2.5rem;
	opacity: 0.7;
}

.ce-gl-coming-soon__icon svg {
	display: inline-block;
}

/* ── Heading ── */
.ce-gl-coming-soon__heading {
	font-family: var(--ce-font-display, 'Montserrat', sans-serif);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.2;
}

/* ── Subtext ── */
.ce-gl-coming-soon__sub {
	font-family: var(--ce-font-body, 'Inter', sans-serif);
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.65;
	margin: 0 0 2.5rem;
	max-width: 42ch;
	margin-left: auto;
	margin-right: auto;
}

/* ── Social media links ── */
.ce-gl-coming-soon__social {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.ce-gl-coming-soon__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ce-gold, #FFD700);
	opacity: 0.75;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
	.ce-gl-coming-soon__social-link:hover {
		opacity: 1;
		transform: translateY(-2px);
	}
}

.ce-gl-coming-soon__social-link:focus-visible {
	opacity: 1;
	outline: 2px solid var(--ce-gold, #FFD700);
	outline-offset: 4px;
	border-radius: 4px;
}

/* ── Action buttons ── */
.ce-gl-coming-soon__buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}
