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

.jb-entertainment--pv {
	--pv-studio-red:   #d7263d;
	--pv-studio-red-d: #8a0f22;
	--pv-amber:        #f2a154;
	--pv-amber-d:      #b66f1f;
	--pv-teal:         #2ab7a9;
	--pv-rose:         #e8668f;
	--pv-ink:          #141826;
	--pv-ink-2:        #242a40;
	--pv-cream:        #f6ece0;
}

/* 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-entertainment--pv .jb-eyebrow {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .78rem;
	font-weight: 700;
	color: var(--pv-studio-red);
	margin: 0 0 .5rem;
}
.jb-entertainment--pv .jb-hero .jb-eyebrow { color: var(--pv-amber); }

/* Hero — cinematic darkroom + warm bulb swells */
.jb-hero--pv {
	min-height: 0;
	background:
		radial-gradient(ellipse at 82% 18%, rgba(242,161,84,.38), transparent 55%),
		radial-gradient(ellipse at 12% 82%, rgba(215,38,61,.35), transparent 55%),
		radial-gradient(ellipse at 55% 55%, rgba(232,102,143,.28), transparent 60%),
		linear-gradient(180deg, var(--pv-ink) 0%, var(--pv-ink-2) 100%);
}

/* Booking form accent */
.jb-entertainment--pv .jb-hero__form button,
.jb-entertainment--pv .jb-hero__form input[type="submit"],
.jb-entertainment--pv .jb-hero__form .frm_button_submit {
	background: var(--pv-studio-red);
}
.jb-entertainment--pv .jb-hero__form button:hover,
.jb-entertainment--pv .jb-hero__form input[type="submit"]:hover,
.jb-entertainment--pv .jb-hero__form .frm_button_submit:hover { background: var(--pv-studio-red-d); }

/* Intro narrative */
.jb-pv-intro {
	background: #fff;
	text-align: center;
}
.jb-pv-intro p { font-size: 1.08rem; }
.jb-pv-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; }
}

/* PV cards — icon-led, no image */
.jb-card--pv {
	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--pv:hover {
	transform: translateY(-3px);
	box-shadow: var(--jb-shadow-lg);
}
.jb-card--pv h3 { margin: .25rem 0 .4rem; }
.jb-card--pv p { margin: 0; color: var(--jb-text); }

.jb-card--pv .jb-card__icon {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #fbdfe4;
	color: var(--pv-studio-red);
}
.jb-card--pv .jb-card__icon .jb-icon { width: 28px; height: 28px; }
.jb-card--pv.jb-card--accent-1 .jb-card__icon { background: #ffe8d3; color: var(--pv-amber-d); }
.jb-card--pv.jb-card--accent-2 .jb-card__icon { background: #d6f4f0; color: #0f6a62; }
.jb-card--pv.jb-card--accent-3 .jb-card__icon { background: #fbe0ea; color: #a82c59; }
.jb-card--pv.jb-card--accent-0 { border-top-color: var(--pv-studio-red); }
.jb-card--pv.jb-card--accent-1 { border-top-color: var(--pv-amber); }
.jb-card--pv.jb-card--accent-2 { border-top-color: var(--pv-teal); }
.jb-card--pv.jb-card--accent-3 { border-top-color: var(--pv-rose); }

/* Product gallery */
.jb-pv-gallery { background: #fff; }
.jb-pv-gallery__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 1rem;
}
@media (min-width: 640px) {
	.jb-pv-gallery__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
	.jb-pv-gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.jb-pv-gallery__item {
	margin: 0;
	aspect-ratio: 4 / 3;
	border-radius: var(--jb-radius-lg);
	overflow: hidden;
	border: 4px solid var(--pv-amber);
	box-shadow: 0 14px 40px rgba(215,38,61,.18);
	transition: transform .25s ease, box-shadow .25s ease;
}
.jb-pv-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.jb-pv-gallery__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 50px rgba(215,38,61,.28);
}
.jb-pv-gallery__item:hover img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) {
	.jb-pv-gallery__item, .jb-pv-gallery__item img { transition: none; }
	.jb-pv-gallery__item:hover { transform: none; }
	.jb-pv-gallery__item:hover img { transform: none; }
}

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

/* Lead paragraphs and fine print */
.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-pv-themes .jb-fine { color: #dcdcdc; }

/* Decorative "lens + flash" visual stand-ins (no real photos) */
.jb-pv-spotlight__visual,
.jb-pv-themes__figure {
	margin: 0;
	border-radius: var(--jb-radius-lg);
	aspect-ratio: 4 / 3;
	overflow: hidden;
	position: relative;
}
.jb-pv-spotlight__visual {
	background:
		radial-gradient(ellipse at 25% 20%, rgba(242,161,84,.40), transparent 55%),
		radial-gradient(ellipse at 80% 80%, rgba(215,38,61,.35), transparent 55%),
		radial-gradient(ellipse at 50% 50%, rgba(42,183,169,.22), transparent 60%),
		linear-gradient(160deg, #111524 0%, #2a2040 100%);
	box-shadow: 0 22px 60px rgba(13,27,61,.25);
}
.jb-pv-themes__figure {
	background:
		radial-gradient(ellipse at 30% 20%, rgba(242,161,84,.28), transparent 55%),
		radial-gradient(ellipse at 80% 80%, rgba(215,38,61,.22), transparent 55%),
		linear-gradient(160deg, #0a0d1c 0%, #1d2138 100%);
	border: 1px solid rgba(255,255,255,.08);
}
.jb-pv-spotlight__booth,
.jb-pv-themes__stage {
	position: absolute;
	inset: 0;
}

/* Concentric lens rings — the camera eye */
.jb-pv-lens {
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.jb-pv-lens--outer {
	width: 60%;
	height: 80%;
	background:
		radial-gradient(circle at 50% 50%, rgba(255,255,255,.05) 0%, rgba(0,0,0,.6) 90%),
		linear-gradient(135deg, #1f2439 0%, #0a0d1c 100%);
	box-shadow:
		0 22px 50px rgba(0,0,0,.6),
		inset 0 0 0 2px rgba(255,255,255,.08),
		inset 0 0 0 12px rgba(255,255,255,.04);
}
.jb-pv-lens--mid {
	width: 44%;
	height: 58%;
	background:
		repeating-conic-gradient(from 0deg, rgba(255,255,255,.06) 0 22deg, rgba(0,0,0,.5) 22deg 44deg),
		radial-gradient(circle, #1a1e30 0%, #070912 80%);
	box-shadow:
		inset 0 0 0 2px rgba(255,255,255,.12),
		inset 0 0 18px rgba(0,0,0,.7);
}
.jb-pv-lens--inner {
	width: 22%;
	height: 29%;
	background:
		radial-gradient(circle at 35% 35%, rgba(242,161,84,.85) 0%, rgba(215,38,61,.6) 40%, #070912 100%);
	box-shadow:
		0 0 24px rgba(242,161,84,.6),
		inset 0 0 0 1px rgba(255,255,255,.2);
}

/* Flash bulbs — warm bokeh accents */
.jb-pv-flash {
	position: absolute;
	width: 10%;
	height: 13%;
	border-radius: 50%;
	filter: blur(6px);
	opacity: .9;
}
.jb-pv-flash--a {
	top: 14%;
	left: 10%;
	background: radial-gradient(circle, rgba(242,161,84,.9) 0%, rgba(242,161,84,0) 70%);
}
.jb-pv-flash--b {
	bottom: 14%;
	right: 10%;
	background: radial-gradient(circle, rgba(232,102,143,.85) 0%, rgba(232,102,143,0) 70%);
}

/* Print strip — a 2x6 photo-booth strip peeking in */
.jb-pv-strip {
	position: absolute;
	right: 6%;
	bottom: 6%;
	width: 14%;
	height: 42%;
	background:
		linear-gradient(180deg,
			var(--pv-cream) 0 25%,
			rgba(215,38,61,.7) 25% 26%,
			var(--pv-cream) 26% 50%,
			rgba(215,38,61,.7) 50% 51%,
			var(--pv-cream) 51% 75%,
			rgba(215,38,61,.7) 75% 76%,
			var(--pv-cream) 76% 100%);
	border: 2px solid #fff;
	border-radius: 3px;
	box-shadow: 0 10px 28px rgba(0,0,0,.45);
	transform: rotate(6deg);
}

/* Pill row (deliverable chips, rendered on the dark themes section) */
.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 studio-red 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(--pv-studio-red);
	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(--pv-studio-red);
}
.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(--pv-studio-red);
	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 — studio red → amber cinematic sweep */
.jb-pv-cta {
	background: linear-gradient(135deg, var(--pv-studio-red-d) 0%, var(--pv-studio-red) 45%, var(--pv-amber) 100%);
	color: #fff;
	text-align: center;
}
.jb-pv-cta h2 { color: #fff; }
.jb-pv-cta p { color: rgba(255,255,255,.97); max-width: 700px; margin: 0 auto 1.25rem; }
.jb-pv-cta .jb-hero__cta { justify-content: center; }
.jb-pv-cta a:not(.jb-btn) {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 2px;
}
.jb-pv-cta a.jb-btn.jb-btn--primary { background: #fff; color: var(--pv-studio-red-d); }
.jb-pv-cta a.jb-btn.jb-btn--primary:hover { background: #f3f3f3; color: var(--pv-studio-red-d); }
.jb-pv-cta a.jb-btn.jb-btn--secondary { border-color: #fff; color: #fff; background: transparent; }
.jb-pv-cta a.jb-btn.jb-btn--secondary:hover { background: #fff; color: var(--pv-studio-red-d); }

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
	.jb-card--pv { transition: none; }
	.jb-card--pv:hover { transform: none; }
}
