/* Jumper Bee — Entertainment: Magicians template styles (layered on homepage-v2.css) */

.jb-entertainment {
	color: var(--jb-text);
	font-family: var(--jb-font-body);
	line-height: 1.55;
}

.jb-entertainment--magicians {
	--magic-purple:      #5a2aa6;
	--magic-purple-deep: #3d1a7a;
	--magic-midnight:    #15123b;
	--magic-gold:        #e0b64a;
	--magic-silver:      #c4c9d8;
	--magic-rose:        #c74b8f;
}

/* Breadcrumbs */
.jb-crumbs {
	background: var(--jb-bg-soft);
	font-size: .9rem;
	padding: .9rem 0;
	border-bottom: 1px solid var(--jb-gray-2);
}
.jb-crumbs ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
}
.jb-crumbs li + li::before {
	content: "/";
	color: var(--jb-gray-2);
	margin-right: .4rem;
}
.jb-crumbs a { color: var(--jb-blue-deep); text-decoration: none; }
.jb-crumbs a:hover { text-decoration: underline; }
.jb-crumbs [aria-current="page"] { color: var(--jb-text); font-weight: 600; }

/* Eyebrow label */
.jb-eyebrow {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .78rem;
	font-weight: 700;
	color: var(--magic-purple);
	margin: 0 0 .5rem;
}
.jb-hero .jb-eyebrow { color: var(--magic-gold); }

/* Hero accent — midnight + gold stage lights */
.jb-hero--magic {
	min-height: 0;
	background:
		radial-gradient(ellipse at 85% 20%, rgba(224,182,74,.30), transparent 55%),
		radial-gradient(ellipse at 12% 85%, rgba(90,42,166,.45), transparent 55%),
		radial-gradient(ellipse at 50% 100%, rgba(199,75,143,.22), transparent 55%),
		linear-gradient(180deg, var(--jb-bg-dark) 0%, var(--jb-bg-dark-2) 100%);
}

/* Magic-themed overrides on top of the shared hero form */
.jb-entertainment--magicians .jb-hero__form button,
.jb-entertainment--magicians .jb-hero__form input[type="submit"],
.jb-entertainment--magicians .jb-hero__form .frm_button_submit {
	background: var(--magic-purple);
}
.jb-entertainment--magicians .jb-hero__form button:hover,
.jb-entertainment--magicians .jb-hero__form input[type="submit"]:hover,
.jb-entertainment--magicians .jb-hero__form .frm_button_submit:hover { background: var(--magic-purple-deep); }

/* Intro narrative */
.jb-magic-intro {
	background: #fff;
	text-align: center;
}
.jb-magic-intro p { font-size: 1.08rem; }
.jb-magic-intro .jb-intro__cta {
	margin-top: 1.5rem;
	font-weight: 600;
	font-size: 1.05rem;
}

/* Grids */
.jb-grid--2 { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) {
	.jb-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* Two-col reverse layout */
@media (min-width: 900px) {
	.jb-two-col--reverse { grid-template-columns: 1fr 1fr; }
	.jb-two-col--reverse > :first-child { order: 2; }
	.jb-two-col--reverse > :last-child { order: 1; }
}

/* Magic cards — icon-led, no image */
.jb-card--magic {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	background: #fff;
	border-radius: var(--jb-radius);
	padding: 1.5rem;
	border-top: 4px solid var(--jb-gray-2);
	box-shadow: var(--jb-shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}
.jb-card--magic:hover {
	transform: translateY(-3px);
	box-shadow: var(--jb-shadow-lg);
}
.jb-card--magic h3 { margin: .25rem 0 .4rem; }
.jb-card--magic p { margin: 0; color: var(--jb-text); }

.jb-card--magic .jb-card__icon {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #ece1ff;
	color: var(--magic-purple);
}
.jb-card--magic .jb-card__icon .jb-icon { width: 28px; height: 28px; }
.jb-card--magic.jb-card--accent-1 .jb-card__icon { background: #fff3cf; color: #9a7a1f; }
.jb-card--magic.jb-card--accent-2 .jb-card__icon { background: #fde1ee; color: var(--magic-rose); }
.jb-card--magic.jb-card--accent-3 .jb-card__icon { background: #e0e6f5; color: #3d446a; }
.jb-card--magic.jb-card--accent-0 { border-top-color: var(--magic-purple); }
.jb-card--magic.jb-card--accent-1 { border-top-color: var(--magic-gold); }
.jb-card--magic.jb-card--accent-2 { border-top-color: var(--magic-rose); }
.jb-card--magic.jb-card--accent-3 { border-top-color: var(--magic-silver); }

/* Section backgrounds for rhythm */
.jb-magic-shows     { background: var(--jb-cream); }
.jb-magic-spotlight { background: #fff; }
.jb-magic-tiers     { background: var(--jb-bg-soft); }
.jb-magic-pairings  { background: #fff; }
.jb-magic-themes    { background: var(--magic-midnight); color: #fff; }
.jb-magic-themes h2, .jb-magic-themes h3 { color: #fff; }
.jb-magic-themes a:not(.jb-btn) { color: var(--magic-gold); }
.jb-magic-themes .jb-eyebrow { color: var(--magic-gold); }
.jb-magic-extras    { background: var(--jb-cream-2); }
.jb-magic-events    { background: #fff; }
.jb-magic-faq       { background: var(--jb-bg-soft); }

/* Lead paragraphs and fine print — scoped under .jb-home to beat the base p margin rule */
.jb-home .jb-lead {
	font-size: 1.1rem;
	color: var(--jb-text);
	max-width: 820px;
	margin: 0 0 1.75rem;
}
.jb-home .jb-fine {
	font-size: .9rem;
	color: #555;
	margin: 2.25rem 0 0;
	font-style: italic;
}
.jb-magic-themes .jb-fine { color: #dcdcdc; }

/* Stage-style decorative visuals — used in spotlight + themes two-col sections */
.jb-magic-spotlight__visual,
.jb-magic-themes__figure {
	margin: 0;
	border-radius: var(--jb-radius-lg);
	aspect-ratio: 4 / 3;
	overflow: hidden;
	position: relative;
}
.jb-magic-spotlight__visual {
	background:
		radial-gradient(ellipse at 50% 15%, rgba(224,182,74,.35), transparent 55%),
		radial-gradient(ellipse at 50% 100%, rgba(90,42,166,.20), transparent 55%),
		linear-gradient(160deg, #1b1552 0%, #2e1a6c 60%, #5a2aa6 100%);
	box-shadow: 0 22px 60px rgba(13,27,61,.25);
}
.jb-magic-themes__figure {
	background:
		radial-gradient(ellipse at 50% 15%, rgba(224,182,74,.28), transparent 55%),
		radial-gradient(ellipse at 30% 80%, rgba(199,75,143,.20), transparent 55%),
		linear-gradient(160deg, #0d0a2a 0%, #1e133f 100%);
	border: 1px solid rgba(255,255,255,.08);
}
.jb-magic-spotlight__stage,
.jb-magic-themes__stage {
	position: absolute;
	inset: 0;
}

/* A stylised "wand over a dark stage" motif in the spotlight block */
.jb-magic-hat {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 96px;
	height: 96px;
	transform: translate(-50%, -50%);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at 30% 30%, #fff 0%, rgba(255,255,255,.85) 40%, rgba(255,255,255,0) 70%),
	            radial-gradient(circle at 50% 50%, rgba(224,182,74,.55) 0%, rgba(224,182,74,0) 65%);
	color: var(--magic-midnight);
	box-shadow: 0 0 50px rgba(224,182,74,.35);
}
.jb-magic-hat .jb-icon {
	width: 48px;
	height: 48px;
	color: var(--magic-purple-deep);
}

/* Twinkling starfield stand-in */
.jb-magic-stars {
	position: absolute;
	border-radius: 50%;
	box-shadow:
		0 0 0 1px rgba(255,255,255,.08),
		0 0 16px rgba(224,182,74,.55);
	background: radial-gradient(circle, #fff 0%, rgba(224,182,74,.85) 55%, rgba(224,182,74,0) 80%);
}
.jb-magic-stars--a { width: 10px; height: 10px; top: 15%; left: 18%; }
.jb-magic-stars--b { width:  6px; height:  6px; top: 28%; left: 72%; opacity: .85; }
.jb-magic-stars--c { width:  8px; height:  8px; top: 65%; left: 26%; opacity: .75; }
.jb-magic-stars--d { width:  5px; height:  5px; top: 80%; left: 70%; opacity: .6; }
.jb-magic-themes__stage .jb-magic-stars--a { top: 22%; left: 28%; }
.jb-magic-themes__stage .jb-magic-stars--b { top: 38%; left: 66%; }
.jb-magic-themes__stage .jb-magic-stars--c { top: 60%; left: 18%; }
.jb-magic-themes__stage .jb-magic-stars--d { top: 75%; left: 78%; }

/* Pill row (theme chips) */
.jb-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin: .75rem 0 1.25rem;
}
.jb-pill {
	display: inline-block;
	padding: .4rem .8rem;
	border-radius: 999px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25);
	color: #fff;
	font-size: .88rem;
	font-weight: 600;
}

/* Checklist — card-style items with a gold check */
.jb-home .jb-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 1.75rem;
	display: grid;
	gap: .75rem;
	grid-template-columns: 1fr;
}
@media (min-width: 720px) {
	.jb-checklist--two { grid-template-columns: 1fr 1fr; gap: .9rem 1.25rem; }
}
.jb-checklist li {
	position: relative;
	padding: .85rem 1rem .85rem 3rem;
	background: #fff;
	border: 1px solid var(--jb-gray-2);
	border-radius: var(--jb-radius);
	box-shadow: 0 2px 6px rgba(13,27,61,.04);
	line-height: 1.5;
}
.jb-checklist li::before {
	content: "\2713";
	position: absolute;
	left: .9rem;
	top: .95rem;
	width: 1.45rem;
	height: 1.45rem;
	border-radius: 50%;
	background: var(--magic-purple);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .85rem;
	font-weight: 800;
	line-height: 1;
}
.jb-checklist strong { color: var(--jb-black); }

/* FAQ accordion */
.jb-faq { display: grid; gap: .75rem; }
.jb-faq__item {
	background: #fff;
	border-radius: var(--jb-radius);
	box-shadow: var(--jb-shadow);
	padding: 1rem 1.25rem;
	border-left: 4px solid var(--magic-purple);
}
.jb-faq__item summary {
	cursor: pointer;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--jb-black);
	list-style: none;
	position: relative;
	padding-right: 2rem;
}
.jb-faq__item summary::-webkit-details-marker { display: none; }
.jb-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	line-height: 1;
	color: var(--magic-purple);
	font-weight: 800;
}
.jb-faq__item[open] summary::after { content: "\2212"; }
.jb-faq__item p {
	margin: .75rem 0 0;
	color: var(--jb-text);
}

/* Final CTA block */
.jb-magic-cta {
	background: linear-gradient(135deg, var(--magic-purple) 0%, var(--magic-purple-deep) 100%);
	color: #fff;
	text-align: center;
}
.jb-magic-cta h2 { color: #fff; }
.jb-magic-cta .jb-hero__cta { justify-content: center; }
.jb-magic-cta a:not(.jb-btn) {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 2px;
}
.jb-magic-cta a.jb-btn.jb-btn--primary {
	background: #fff;
	color: var(--magic-purple);
}
.jb-magic-cta a.jb-btn.jb-btn--primary:hover { background: #f3f3f3; color: var(--magic-purple); }
.jb-magic-cta a.jb-btn.jb-btn--secondary { border-color: #fff; color: #fff; background: transparent; }
.jb-magic-cta a.jb-btn.jb-btn--secondary:hover { background: #fff; color: var(--magic-purple); }

/* Responsive card hover polish */
@media (prefers-reduced-motion: reduce) {
	.jb-card--magic { transition: none; }
	.jb-card--magic:hover { transform: none; }
}
