/* Jumper Bee — Event Types: Gender Reveals template (layered on homepage-v2.css) */

.jb-event--gender-reveals {
	--gr-rose:        #e8739e;
	--gr-rose-soft:   #fbe0ea;
	--gr-rose-deep:   #a23b62;
	--gr-sky:         #7fb9e8;
	--gr-sky-soft:    #dfeefa;
	--gr-sky-deep:    #2a6497;
	--gr-butter:      #f6d05c;
	--gr-butter-soft: #fdf2d3;
	--gr-butter-deep: #8a6517;
	--gr-mint:        #8ed5af;
	--gr-mint-soft:   #def3e6;
	--gr-mint-deep:   #357d52;
	--gr-lilac:       #bc9dd4;
	--gr-lilac-soft:  #ecdff6;
	--gr-lilac-deep:  #5c3d7d;
	--gr-cream:       #fff8f3;
	--gr-cream-soft:  #fffcf7;
	--gr-ink:         #2f2238;
}

/* 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 */
.jb-event--gender-reveals .jb-eyebrow {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .78rem;
	font-weight: 700;
	color: var(--gr-rose-deep);
	margin: 0 0 .5rem;
}
.jb-hero--gr .jb-eyebrow { color: var(--gr-butter-soft); }

/* Hero — reveal-wash: rose, sky, butter, lilac */
.jb-hero--gr {
	min-height: 0;
	background:
		radial-gradient(ellipse at 82% 22%, rgba(232,115,158,.55), transparent 55%),
		radial-gradient(ellipse at 15% 75%, rgba(127,185,232,.60), transparent 60%),
		radial-gradient(ellipse at 58% 50%, rgba(246,208,92,.45), transparent 58%),
		radial-gradient(ellipse at 30% 18%, rgba(188,157,212,.55), transparent 55%),
		linear-gradient(180deg, #a23b62 0%, #7b4b8a 45%, #2a6497 100%);
}

/* Hero form override — rose submit with sky hover */
.jb-event--gender-reveals .jb-hero__form button,
.jb-event--gender-reveals .jb-hero__form input[type="submit"],
.jb-event--gender-reveals .jb-hero__form .frm_button_submit {
	background: var(--gr-rose-deep);
}
.jb-event--gender-reveals .jb-hero__form button:hover,
.jb-event--gender-reveals .jb-hero__form input[type="submit"]:hover,
.jb-event--gender-reveals .jb-hero__form .frm_button_submit:hover { background: var(--gr-sky-deep); }

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

/* Reveal cards — rotating accent (rose / sky / butter / mint / lilac) */
.jb-card--gr {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	background: #fff;
	border-radius: var(--jb-radius);
	padding: 1.5rem;
	border-top: 4px solid var(--gr-rose);
	box-shadow: var(--jb-shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}
.jb-card--gr:hover {
	transform: translateY(-3px);
	box-shadow: var(--jb-shadow-lg);
}
.jb-card--gr h3 { margin: .25rem 0 .4rem; }
.jb-card--gr p { margin: 0; color: var(--jb-text); }
.jb-card--gr .jb-card__icon {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--gr-rose-soft);
	color: var(--gr-rose-deep);
}
.jb-card--gr .jb-card__icon .jb-icon { width: 28px; height: 28px; }

.jb-card--gr.jb-card--accent-1 { border-top-color: var(--gr-sky); }
.jb-card--gr.jb-card--accent-1 .jb-card__icon { background: var(--gr-sky-soft); color: var(--gr-sky-deep); }

.jb-card--gr.jb-card--accent-2 { border-top-color: var(--gr-butter); }
.jb-card--gr.jb-card--accent-2 .jb-card__icon { background: var(--gr-butter-soft); color: var(--gr-butter-deep); }

.jb-card--gr.jb-card--accent-3 { border-top-color: var(--gr-mint); }
.jb-card--gr.jb-card--accent-3 .jb-card__icon { background: var(--gr-mint-soft); color: var(--gr-mint-deep); }

.jb-card--gr.jb-card--accent-4 { border-top-color: var(--gr-lilac); }
.jb-card--gr.jb-card--accent-4 .jb-card__icon { background: var(--gr-lilac-soft); color: var(--gr-lilac-deep); }

/* Section rhythm */
.jb-gr-core      { background: var(--gr-cream); }
.jb-gr-methods   { background: #fff; }
.jb-gr-signature { background: var(--gr-sky-soft); }
.jb-gr-styling   { background: var(--gr-cream-soft); }
.jb-gr-flow      { background: #fff; }
.jb-areas        { background: var(--gr-butter-soft); }
.jb-gr-faq       { background: var(--gr-cream); }

/* Signature figure frame — sky trim */
.jb-gr-signature__figure {
	margin: 0;
	border: 4px solid var(--gr-sky);
	border-radius: var(--jb-radius-lg);
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(42,100,151,.22);
}
.jb-gr-signature__figure img { width: 100%; height: auto; display: block; }

/* Core figure frame — rose trim */
.jb-gr-core .jb-events__figure {
	margin: 0;
	border: 4px solid var(--gr-rose);
	border-radius: var(--jb-radius-lg);
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(232,115,158,.24);
}
.jb-gr-core .jb-events__figure img { width: 100%; height: auto; display: block; }

/* Top reveal stripe — pink / blue centered with accent ticks on the ends */
.jb-gr-core,
.jb-gr-signature {
	position: relative;
}
.jb-gr-core::before,
.jb-gr-signature::before {
	content: "";
	display: block;
	height: 6px;
	background:
		linear-gradient(
			90deg,
			var(--gr-butter)  0 10%,
			var(--gr-rose)    10% 45%,
			var(--gr-lilac)   45% 55%,
			var(--gr-sky)     55% 90%,
			var(--gr-mint)    90% 100%
		);
	position: absolute;
	top: 0; left: 0; right: 0;
}

/* Lead + fine */
.jb-home .jb-event--gender-reveals .jb-lead,
.jb-event--gender-reveals .jb-lead {
	font-size: 1.1rem;
	color: var(--jb-text);
	max-width: 820px;
	margin: 0 0 1.75rem;
}
.jb-home .jb-event--gender-reveals .jb-fine,
.jb-event--gender-reveals .jb-fine {
	font-size: .9rem;
	color: #555;
	margin: 2.25rem 0 0;
	font-style: italic;
}

/* Checklist — card-style with rose ticks */
.jb-home .jb-event--gender-reveals .jb-checklist,
.jb-event--gender-reveals .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-event--gender-reveals .jb-checklist--two { grid-template-columns: 1fr 1fr; gap: .9rem 1.25rem; }
}
.jb-event--gender-reveals .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(232,115,158,.07);
	line-height: 1.5;
}
.jb-event--gender-reveals .jb-checklist li::before {
	content: "\2713";
	position: absolute;
	left: .9rem;
	top: .95rem;
	width: 1.45rem;
	height: 1.45rem;
	border-radius: 50%;
	background: var(--gr-rose);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .85rem;
	font-weight: 800;
	line-height: 1;
}
.jb-event--gender-reveals .jb-checklist strong { color: var(--jb-black); }

/* Reveal-flow section — sky ticks */
.jb-gr-flow .jb-checklist li::before {
	background: var(--gr-sky-deep);
}

/* FAQ */
.jb-gr-faq .jb-faq { display: grid; gap: .75rem; max-width: 860px; margin: 0 auto; }
.jb-gr-faq h2 { text-align: center; margin-bottom: 2rem; }
.jb-gr-faq .jb-faq__item {
	background: #fff;
	border-radius: var(--jb-radius);
	box-shadow: var(--jb-shadow);
	padding: 1rem 1.25rem;
	border-left: 4px solid var(--gr-butter);
}
.jb-gr-faq .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-gr-faq .jb-faq__item summary::-webkit-details-marker { display: none; }
.jb-gr-faq .jb-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	line-height: 1;
	color: var(--gr-rose-deep);
	font-weight: 800;
}
.jb-gr-faq .jb-faq__item[open] summary::after { content: "\2212"; }
.jb-gr-faq .jb-faq__item p { margin: .75rem 0 0; color: var(--jb-text); }

/* Final CTA — rose-through-lilac to sky, with butter highlight */
.jb-gr-cta {
	background: linear-gradient(135deg, var(--gr-rose-deep) 0%, var(--gr-rose) 30%, var(--gr-lilac) 55%, var(--gr-sky) 80%, var(--gr-sky-deep) 100%);
	color: #fff;
	text-align: center;
}
.jb-gr-cta h2 { color: #fff; }
.jb-gr-cta p { color: rgba(255,255,255,.97); max-width: 720px; margin: 0 auto 1.25rem; }
.jb-gr-cta .jb-hero__cta { justify-content: center; }
.jb-gr-cta a:not(.jb-btn) {
	color: var(--gr-cream-soft);
	text-decoration: underline;
	text-decoration-thickness: 2px;
}
.jb-gr-cta a.jb-btn.jb-btn--primary { background: var(--gr-butter); color: var(--gr-ink); border-color: var(--gr-butter); }
.jb-gr-cta a.jb-btn.jb-btn--primary:hover { background: var(--gr-butter-soft); color: var(--gr-butter-deep); border-color: var(--gr-butter-soft); }
.jb-gr-cta a.jb-btn.jb-btn--secondary { border-color: #fff; color: #fff; background: transparent; }
.jb-gr-cta a.jb-btn.jb-btn--secondary:hover { background: #fff; color: var(--gr-rose-deep); }
