.header, .top-header{
	background-color: white !important;
	padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Top menu and its dropdowns always on top */
#header,
.header.sticky-header.clone-fixed {
	z-index: 9999 !important;
}
.header .sub-menu-wrap {
	z-index: 10000 !important;
}

.logo-wrap img{
	width: 148px !important;
}

@media only screen and (min-width: 1281px) {
	.header .top-header .flex-row {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
	}
	.header .top-header .logo-wrap {
		flex: 0 0 auto;
		margin-right: 20px;
	}
	.header .top-header .menu-holder {
		flex: 1 1 auto;
		margin-left: auto;
		text-align: right;
	}
	.header .top-header .menu-wrap {
		justify-content: flex-end !important;
	}
}

/* Site typography system */
:root {
	--lb-font-display: 'Prata', serif;
	--lb-font-body: 'Poppins', sans-serif;
	--lb-text-color: #111;
	--lb-link-color: #e58bb4;
	--lb-link-hover-color: #d06a9c;
	--lb-header-height: 120px;
	--lb-mobile-menu-gap: 8px;
	--lb-mobile-menu-top: calc(var(--lb-header-height) + var(--lb-mobile-menu-gap));
	--lb-breadcrumb-offset: calc(var(--lb-header-height) + 28px);
}

body {
	color: var(--lb-text-color) !important;
	font-family: var(--lb-font-body) !important;
}

p,
li,
label,
legend,
input,
textarea,
select,
button,
.entry-body,
.entry-meta,
.entry-meta a,
.breadcrumbs,
.breadcrumbs a {
	font-family: var(--lb-font-body) !important;
}

h1, h2, h3, h4, h5, h6,
.page-title,
.section-title,
.call-title {
	color: #000 !important;
	font-family: var(--lb-font-display) !important;
	font-weight: 400 !important;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

h1,
.page-title {
	font-size: clamp(2rem, 4.2vw, 3rem) !important;
}

h2,
.section-title.style-2,
.call-title.var2 {
	font-size: clamp(1.6rem, 3.2vw, 2.2rem) !important;
}

h3 {
	font-size: clamp(1.3rem, 2.2vw, 1.7rem) !important;
}

h4 {
	font-size: clamp(1.15rem, 1.8vw, 1.4rem) !important;
}

h5,
h6,
.entry-title a,
.icons-box-title a {
	font-family: var(--lb-font-body) !important;
	font-weight: 600 !important;
	line-height: 1.35;
}

.main-navigation > ul > li > a,
.mobile-advanced > ul > li > a,
.btn {
	font-family: var(--lb-font-body) !important;
	font-weight: 500 !important;
	letter-spacing: 0.02em;
}

.lb-policy-link {
	color: var(--lb-link-color) !important;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.lb-policy-link:hover,
.lb-policy-link:focus {
	color: var(--lb-link-hover-color) !important;
}

.lb-policy-link-button {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	cursor: pointer;
}

.policies-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.policies-modal-overlay[aria-hidden="true"] {
	display: none;
}

.policies-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.policies-modal-box {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.policies-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #e0e0e0;
	flex-shrink: 0;
}

.policies-modal-title {
	margin: 0;
	font-size: 22px;
	color: #8e5a8f;
}

.policies-modal-close {
	background: none;
	border: 0;
	font-size: 28px;
	line-height: 1;
	color: #666;
	cursor: pointer;
	padding: 0 4px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.policies-modal-close:hover,
.policies-modal-close:focus {
	background: #f0f0f0;
	color: #333;
}

.policies-modal-body {
	padding: 24px;
	overflow-y: auto;
	flex: 1;
	min-height: 0;
}

.policies-modal-body h2 {
	color: #8e5a8f;
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 10px;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 4px;
}

.policies-modal-body h3 {
	color: #333;
	font-size: 15px;
	margin-top: 14px;
	margin-bottom: 6px;
}

.policies-modal-body p,
.policies-modal-body ul {
	margin-bottom: 10px;
	line-height: 1.5;
	color: #333;
}

.policies-modal-body .policy-num {
	color: var(--lb-link-hover-color);
	font-weight: 600;
}

.policies-modal-body .effective-date {
	color: #666;
	font-size: 13px;
	margin-bottom: 16px;
}

.policies-modal-footer {
	padding: 16px 24px;
	border-top: 1px solid #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-shrink: 0;
}

.policies-modal-full-link {
	color: var(--lb-link-color) !important;
	text-decoration: underline;
}

/* Header-aware breadcrumb offset (set by JS for reliability across breakpoints) */
.breadcrumbs-wrap.breadcrumbs-clear-header {
	margin-top: var(--lb-breadcrumb-offset) !important;
}

/* Sticky header: show on scroll-up on small screens too (theme hides it by default at max-width 1280px) */
@media only screen and (max-width: 1280px) {
	#header.sticky-header.clone-fixed {
		display: block !important;
	}
	#header.sticky-header.clone-fixed.slideDown {
		top: 0 !important;
	}
}

/* Mobile menu (small screens): cleaner look, scrollable, Lumi teal */
@media only screen and (max-width: 1280px) {
	.mobile-advanced {
		position: fixed !important;
		top: var(--lb-mobile-menu-top) !important;
		left: auto !important;
		right: -100% !important;
		width: 100vw !important;
		height: calc(100vh - var(--lb-mobile-menu-top)) !important;
		z-index: 9990 !important;
		background: #fafafa !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch;
	}
	.mobile-advanced > ul {
		display: flex !important;
		flex-direction: column !important;
		padding-top: 20px !important;
		padding-bottom: 40px !important;
		max-height: none !important;
	}
	/* Basket + Start Here first in flyout (DOM order unchanged) */
	.mobile-advanced > ul > li.lb-start-here-nav {
		order: -1 !important;
		padding: 8px 16px 14px !important;
		border-bottom: 1px solid #eee !important;
		background: #fff !important;
		list-style: none !important;
	}
	.mobile-advanced > ul > li.lb-start-here-nav .btn.wizard-trigger {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		box-sizing: border-box !important;
		justify-content: center !important;
	}
	.mobile-advanced > ul > li > a {
		background: #fff !important;
		color: #1a1a1a !important;
		font-size: 15px !important;
		text-transform: none !important;
		font-weight: 600 !important;
		padding: 14px 20px !important;
		border-bottom: 1px solid #eee !important;
	}
	/* Basket: pill control (theme mobile link styles override without this) */
	.mobile-advanced > ul > li.basket-nav-item {
		order: -2 !important;
		padding: 4px 0 !important;
	}
	.mobile-advanced > ul > li.basket-nav-item > a.basket-nav-link {
		box-sizing: border-box !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		width: auto !important;
		margin: 4px 20px !important;
		padding: 6px 29px 5px !important;
		line-height: 26px !important;
		font-size: 14px !important;
		font-weight: 500 !important;
		letter-spacing: 0.02em !important;
		border-radius: 30px !important;
		border: 1px solid rgba(63, 166, 160, 0.35) !important;
		border-bottom: 1px solid rgba(63, 166, 160, 0.35) !important;
		background: rgba(255, 255, 255, 0.98) !important;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
	}
	.mobile-advanced > ul > li.basket-nav-item.basket-nav-has-items > a.basket-nav-link {
		background: rgba(63, 166, 160, 0.12) !important;
		border-color: rgba(63, 166, 160, 0.55) !important;
		border-bottom-color: rgba(63, 166, 160, 0.55) !important;
	}
	.mobile-advanced > ul > li.basket-nav-item.current > a.basket-nav-link {
		background: rgba(63, 166, 160, 0.16) !important;
		color: #1a1a1a !important;
		border-color: #3FA6A0 !important;
		border-bottom-color: #3FA6A0 !important;
	}
	.mobile-advanced > ul > li.basket-nav-item:hover > a.basket-nav-link {
		background: rgba(63, 166, 160, 0.2) !important;
		color: #1a1a1a !important;
		border-color: #3FA6A0 !important;
		border-bottom-color: #3FA6A0 !important;
	}
	.mobile-advanced > ul > li.current > a,
	.mobile-advanced > ul > li:hover > a {
		background: #e8f5f4 !important;
		color: #3FA6A0 !important;
	}
	.mobile-advanced > ul > li .sub-menu-wrap:not(.sub-menu-inner) {
		background: #fff !important;
		padding: 8px 0 14px !important;
		border-bottom: 1px solid #eee !important;
	}
	.mobile-advanced ul ul li > a {
		padding: 10px 20px 10px 28px !important;
		color: #333 !important;
		font-size: 14px !important;
		text-transform: none !important;
	}
	.mobile-advanced ul ul li > a:before {
		color: #3FA6A0 !important;
		margin-right: 8px !important;
	}
	.mobile-advanced ul ul li.current > a,
	.mobile-advanced .sub-menu-wrap > ul > li:hover > a,
	.mobile-advanced .sub-menu-wrap.mega-menu ul li:hover a,
	.mobile-advanced .sub-menu-wrap.mega-menu ul li.current a {
		color: #3FA6A0 !important;
	}
	#advanced-menu-hide {
		top: 16px !important;
		right: 16px !important;
		z-index: 20001 !important;
		color: #333 !important;
		background: #fff !important;
		width: 44px !important;
		height: 44px !important;
		line-height: 44px !important;
		border-radius: 50% !important;
		box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
	}
	#advanced-menu-hide:hover {
		color: #3FA6A0 !important;
		background: #e8f5f4 !important;
	}
}

/* Desktop: Start Here only in header bar (duplicate li is for flyout clone) */
@media only screen and (min-width: 993px) {
	.main-navigation .lb-start-here-nav {
		display: none !important;
	}
}

/* Mobile header compact layout: logo left, controls right (override theme stacking) */
@media only screen and (max-width: 992px) {
	.top-header > .flex-row,
	.top-header > .container > .flex-row {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		text-align: left !important;
	}
	.header:not(.style-3):not(.style-4) .top-header > .flex-row > *,
	.header:not(.style-3):not(.style-4) .top-header > .container .flex-row > * {
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
	}
	.top-header {
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
	.logo-wrap {
		margin-bottom: 0 !important;
		flex: 0 0 auto;
	}
	.logo-wrap img {
		width: 120px !important;
	}
	.menu-holder {
		margin-left: auto !important;
		flex: 0 0 auto;
	}
	.header .menu-wrap {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		margin: 0 !important;
	}
	.header .menu-wrap > * {
		margin: 0 !important;
	}
	.navbar-toggle.wizard-trigger {
		margin-left: 8px !important;
	}
	.responsive-nav-button {
		width: 56px !important;
		height: 56px !important;
		line-height: 56px !important;
		border-radius: 12px !important;
		background: linear-gradient(135deg, #3fa6a0 0%, #2f8b86 100%) !important;
		border: 2px solid #ffffff !important;
		box-shadow: 0 6px 16px rgba(47, 139, 134, 0.35) !important;
		color: #ffffff !important;
		text-align: center !important;
		transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
	}
	.responsive-nav-button:before {
		font-size: 26px !important;
		font-weight: 700 !important;
		color: #ffffff !important;
	}
	#wrapper.active .responsive-nav-button:before {
		content: "\e92a" !important;
	}
	.responsive-nav-button:hover,
	.responsive-nav-button:focus {
		background: linear-gradient(135deg, #49b9b2 0%, #3a9f99 100%) !important;
		box-shadow: 0 8px 18px rgba(47, 139, 134, 0.4) !important;
		transform: translateY(-1px) !important;
	}
	#advanced-menu-hide {
		display: none !important;
	}
	/* Start Here lives in flyout on small screens */
	.menu-wrap > .wizard-trigger.lb-desktop-start-here {
		display: none !important;
	}
}

/* Darken page titles */
.page-title {
	color: #000 !important;
}

/* Darken all text elements */
.text-size-small, .text-size-medium, .text-size-big {
	color: #111 !important;
	font-family: 'Lora', Georgia, serif !important;
}

/* Darken form inputs text */
input:not([type="submit"]), textarea {
	color: #111 !important;
	font-family: 'Lora', Georgia, serif !important;
}

/* Native form dropdowns: match the registration inputs across browsers. */
select.form-control {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 46px;
	padding: 10px 38px 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	color: #111;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23444' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	font-family: var(--lb-font-body) !important;
	font-size: 14px;
	line-height: 1.5;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

select.form-control:focus {
	outline: none;
	border-color: #3FA6A0;
	box-shadow: 0 0 0 2px rgba(63, 166, 160, 0.2);
}

select.form-control:disabled {
	color: #777;
	background-color: #f4f4f4;
	cursor: not-allowed;
}

select.form-select-placeholder.is-empty {
	color: #777;
}

select.form-select-placeholder option {
	color: #111;
}

/* Class creation wizard: make select match input/textarea */
.class-wizard-form select.form-control,
.class-wizard-form input.form-control[type="text"],
.class-wizard-form input.form-control[type="number"],
.class-wizard-form input.form-control[type="date"],
.class-wizard-form input.form-control[type="time"],
.class-wizard-form input.form-control[type="url"],
.class-wizard-form textarea.form-control {
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid #E5DED9;
	border-radius: 6px;
	font-size: 16px;
	font-family: 'Lora', Georgia, serif;
	color: #111;
	background: #fff;
	box-sizing: border-box;
}
.class-wizard-form select.form-control {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23444' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}
.class-wizard-form select.form-control:focus {
	outline: none;
	border-color: #3FA6A0;
	box-shadow: 0 0 0 2px rgba(63, 166, 160, 0.2);
}
/* Ensure all wizard inputs/selects have visible border (steps 1–4) */
.class-wizard-form .wizard-field-full select.form-control,
.class-wizard-form .wizard-field-full input.form-control,
.class-wizard-form .wizard-field-full textarea.form-control {
	display: block;
	width: 100% !important;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid #E5DED9;
	border-radius: 6px;
	font-size: 16px;
	font-family: 'Lora', Georgia, serif;
	color: #111;
	background: #fff;
	box-sizing: border-box;
}
.class-wizard-form .wizard-field-full select.form-control {
	padding-right: 36px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23444' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}
.class-wizard-form .wizard-field-full select.form-control:focus {
	outline: none;
	border-color: #3FA6A0;
	box-shadow: 0 0 0 2px rgba(63, 166, 160, 0.2);
}

/* Registration wizard: same dropdown/input styling as class management wizard */
.registration-wizard-form .form-group select.form-control,
.registration-wizard-form .form-group input.form-control,
.registration-wizard-form .form-group textarea.form-control {
	display: block;
	width: 100% !important;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid #E5DED9;
	border-radius: 6px;
	font-size: 16px;
	font-family: 'Lora', Georgia, serif;
	color: #111;
	background: #fff;
	box-sizing: border-box;
}
.registration-wizard-form .form-group select.form-control {
	padding-right: 36px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23444' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}
.registration-wizard-form .form-group select.form-control:focus {
	outline: none;
	border-color: #3FA6A0;
	box-shadow: 0 0 0 2px rgba(63, 166, 160, 0.2);
}

/* Keep white text on colored backgrounds (don't override) */
.text-color-light, .text-color-light * {
	color: inherit !important;
}

/* Class Finder panel: prominent yellow star */
.nav-bttn.wizard-trigger:before {
	display: none !important;
}
.nav-bttn.wizard-trigger {
	min-width: 48px;
	min-height: 48px;
	padding: 10px 12px !important;
	background: rgba(255, 215, 0, 0.2) !important;
	border-radius: 50%;
	border: 2px solid #ffd700;
	box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}
.nav-bttn.wizard-trigger:hover {
	background: rgba(255, 215, 0, 0.35) !important;
	box-shadow: 0 0 16px rgba(255, 215, 0, 0.7);
}
.nav-bttn.wizard-trigger .licon-sun {
	color: #ffd700 !important;
	font-size: 1.75em !important;
	line-height: 1;
	vertical-align: middle;
}
.navbar-menu .wizard-panel-content {
	padding-top: 20px;
	max-width: 100%;
}

/* Dropdown menus: blend theme teal (#44a6a5) + logo yellow (#ffd700), rounded corners */
.sub-menu-wrap {
	background: linear-gradient(165deg, #44a6a5 0%, #4eb8ab 45%, #52c4a8 100%) !important;
	border-radius: 12px !important;
	box-shadow: 0 8px 24px rgba(68, 166, 165, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
	padding: 20px 0 24px !important;
	margin-top: 8px !important;
	overflow: hidden !important;
}
.sub-menu-wrap .sub-menu-wrap.sub-menu-inner {
	background: linear-gradient(165deg, #44a6a5 0%, #4eb8ab 45%, #52c4a8 100%) !important;
	border-radius: 10px !important;
	box-shadow: 0 6px 20px rgba(68, 166, 165, 0.3) !important;
}
.sub-menu-wrap ul li a {
	color: #fff !important;
	border-bottom-color: rgba(255, 255, 255, 0.2) !important;
	border-radius: 8px !important;
	padding: 6px 18px !important;
	margin: 2px 8px !important;
	transition: background 0.2s ease, box-shadow 0.2s ease !important;
}
.sub-menu-wrap ul li:hover > a,
.sub-menu-wrap ul li.current > a {
	color: #fff !important;
	background: rgba(255, 215, 0, 0.25) !important;
	border-bottom-color: rgba(255, 215, 0, 0.5) !important;
	box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2) !important;
}
.sub-menu-wrap ul > li.sub:after {
	color: rgba(255, 215, 0, 0.9) !important;
}

/* Call to action section styling */
.call-out.wide.bg-section {
	color: white;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.content-element > .call-out.wide {
	width: 100% !important;
	margin: 0 !important;
}
/* Reduce spacing below CTA banner */
.content-element.cta-section {
	margin-bottom: 30px !important;
}

/* Home: theme responsive.css adds large %-based padding-bottom on .media-holder.full-scr — creates a gap above the Class Finder strip on phones */
@media only screen and (max-width: 992px) {
	.banner-fade-holder.media-holder.full-scr {
		padding-bottom: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 48px !important;
		/* Taller viewport = more photo visible; fills toward Class Finder strip */
		height: min(82vh, 720px) !important;
		min-height: 0 !important;
		max-height: none !important;
	}
	/* background-position for slides: set in website_base.html <style> (after this file) */
	.banner-fade-holder .banner-fade-slide {
		background-size: cover !important;
		min-height: 100% !important;
	}
	.banner-fade-holder .banner-fade-slides {
		min-height: 100% !important;
	}
}
@media only screen and (max-width: 768px) {
	.banner-fade-holder + .content-element.cta-section {
		margin-top: -56px !important;
		padding-top: 0 !important;
		position: relative;
		z-index: 4;
	}
}
@media only screen and (max-width: 576px) {
	.banner-fade-holder + .content-element.cta-section {
		margin-top: -72px !important;
	}
}
/* Reduce top padding on first content section (About Brandie) */
#content > .page-section:first-child {
	padding-top: 50px !important;
}
.call-out.wide.bg-section .call-title.var2 {
	color: white !important;
}
.call-out.wide.bg-section p {
	color: white !important;
}
.call-out.wide.bg-section .btn {
	color: #e883ae !important;
	background: white !important;
}

/* Banner fade-loop: hero fixed at 700px height */
.banner-fade-holder {
	position: relative;
	min-height: 700px;
	height: 700px;
	background: none !important;
}
.banner-fade-slides {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	min-height: 700px;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}
.banner-fade-slide {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	min-height: 700px;
	background-color: transparent;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-origin: border-box !important;
	background-clip: border-box !important;
	opacity: 0;
	z-index: 0;
	transform: translateZ(0);
	transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}
.banner-fade-slide.active {
	opacity: 1;
	z-index: 1;
}

/* Hero section: fixed 700px height, padding included */
.media-holder.full-scr {
	height: 700px !important;
	min-height: 700px !important;
	padding-top: 60px !important;
	padding-bottom: 60px !important;
	box-sizing: border-box !important;
}
.media-holder.full-scr .media-inner {
	margin-top: 0;
}
.media-holder.full-scr .media-inner .btn {
	margin-bottom: 50px;
}

/* Prenatal section: background set in template (same as testimonial); white overlay below */
.page-section.prenatal-section-white-overlay {
	position: relative;
	color: #1a1a1a;
	background-attachment: scroll !important;
}
.page-section.prenatal-section-white-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.82);
	z-index: 0;
	pointer-events: none;
}
.page-section.prenatal-section-white-overlay .container,
.page-section.prenatal-section-white-overlay .section-title,
.page-section.prenatal-section-white-overlay .icons-box-title a,
.page-section.prenatal-section-white-overlay .item-box,
.page-section.prenatal-section-white-overlay .hidden-area {
	position: relative;
	z-index: 1;
	color: #1a1a1a;
}
.page-section.prenatal-section-white-overlay .section-title { color: #1a1a1a !important; }
.page-section.prenatal-section-white-overlay .icons-box-title a { color: #1a1a1a !important; }
.page-section.prenatal-section-white-overlay .hidden-area p { color: #333 !important; }

/* Banner text overlay: only on extra small screens for readability */
@media (max-width: 576px) {
	.banner-fade-holder .content-element5 {
		background: rgba(0, 0, 0, 0.5);
		padding: 20px 25px;
		border-radius: 12px;
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
	}
	.banner-fade-holder .content-element5 .call-title,
	.banner-fade-holder .content-element5 .call-sub-title,
	.banner-fade-holder .content-element5 div {
		color: white !important;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	}
}

/* responsive.css (max-width: 480px) sets .media-holder.full-scr .media-inner { display: none } — restore home hero copy */
@media only screen and (max-width: 480px) {
	.banner-fade-holder.media-holder.full-scr .media-inner {
		display: block !important;
		position: absolute;
		left: 0;
		right: 0;
		top: 50%;
		width: 100%;
		max-width: 100%;
		padding: 0 16px;
		box-sizing: border-box;
		text-align: center;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

/* Class/workshop cards: instructor on next line after location, darker text */
.entry .our-info .info-item {
	display: block !important;
	margin-right: 0 !important;
	margin-bottom: 6px;
	color: #444 !important;
}
.entry .our-info .info-item:last-child {
	margin-bottom: 0;
}
.entry .our-info .info-item .wrapper,
.entry .our-info .info-item .wrapper span {
	color: #444 !important;
}
.entry .our-info .info-item i {
	color: #555 !important;
}

/* Class info icon button - ensure it's on top and positioned correctly */
.class-info-btn {
	z-index: 100 !important;
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

/* Class info icon button - default icon color */
.class-info-btn span {
	color: #555 !important;
	font-size: 18px !important;
	font-weight: bold !important;
	font-style: normal !important;
	font-family: inherit !important;
	line-height: 1 !important;
	display: inline-block !important;
}

/* Class info icon button hover effect */
.class-info-btn:hover {
	background: rgba(255, 255, 255, 1) !important;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0,0,0,0.25) !important;
}
.class-info-btn:hover span {
	color: #e883ae !important;
}

/* Divider image: small, transparent background, no box */
.icon-divider .svg[src*="divider-lumi"],
.icon-divider img.svg[src*="divider-lumi"] {
	width: auto !important;
	height: auto !important;
	max-width: 180px !important;
	max-height: 52px !important;
	object-fit: contain !important;
	display: block !important;
	margin: 0 auto !important;
}
.icon-divider:has(img[src*="divider-lumi"]) {
	background: none !important;
}

/* Raspberry divider wrapper (used on services and other pages) */
.services-divider-wrap {
	padding: 24px 0;
	text-align: center;
}

/* Class title highlight in box (grid) and list views */
#grid-view .entry-title,
#grid-view .entry-title a,
#list-view .entry-title,
#list-view .entry-title a {
	font-weight: 700 !important;
}

/* Unified testimonial look (home/about): hearts, gradient rails, darker quote text */
.testimonials-home-plain {
	padding: 72px 0 60px;
	background: #fff;
}
.testimonials-unified .carousel-type-1 {
	position: relative;
	--testimonials-rail-width: 46px;
	padding-left: 78px;
	padding-right: 78px;
}
.testimonials-unified .carousel-type-1 .owl-carousel .owl-nav {
	display: block !important;
}
.testimonials-unified .owl-nav > .owl-prev,
.testimonials-unified .owl-nav > .owl-next {
	top: 0;
	bottom: 0;
	margin-top: 0;
	width: var(--testimonials-rail-width);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	background: linear-gradient(180deg, #e7b867 0%, #b7b7b7 100%);
	border: 1px solid #c7b47a;
	box-shadow: 0 4px 12px rgba(167, 159, 129, 0.25);
	transition: background-color 0.2s ease, border-color 0.2s ease;
	z-index: 2;
}
.testimonials-unified .owl-nav > .owl-prev { left: 0; border-radius: 8px 0 0 8px; }
.testimonials-unified .owl-nav > .owl-next { right: 0; border-radius: 0 8px 8px 0; }
.testimonials-unified .owl-nav > [class*="owl-"]:hover {
	color: #fff !important;
	background: linear-gradient(180deg, #ddb05f 0%, #a8a8a8 100%);
	border-color: #b8a56f;
}
.testimonials-unified .owl-nav > .owl-prev::before,
.testimonials-unified .owl-nav > .owl-next::before {
	font-size: 24px;
	line-height: 1;
}
.testimonials-unified .testimonial-holder.style-2 .testimonial blockquote:before {
	content: "\2665 \2665 \2665";
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 4px;
	line-height: 1;
	margin-bottom: 16px;
	background-image: linear-gradient(to right, #e883ae 0%, #915291 100%);
}
.testimonials-unified .testimonial-holder.style-2 .testimonial blockquote p {
	color: #1f1f1f !important;
	font-weight: 600 !important;
}
.testimonials-unified .testimonial-holder.style-2 .testimonial:not(.blockquote-holder) blockquote {
	padding: 0 52px 8px;
}
.testimonials-unified [class*="carousel-type"] .owl-dots .owl-dot.active {
	background: #e7b867;
}
.testimonials-unified-hint {
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.4;
	color: #777;
	text-align: center;
}
@media (max-width: 767px) {
	.testimonials-unified .carousel-type-1 {
		--testimonials-rail-width: 34px;
		padding-left: 18px;
		padding-right: 18px;
		padding-bottom: 56px;
	}
	.testimonials-unified .owl-nav > .owl-prev::before,
	.testimonials-unified .owl-nav > .owl-next::before {
		font-size: 20px;
	}
	.testimonials-unified .owl-nav > .owl-prev,
	.testimonials-unified .owl-nav > .owl-next {
		top: auto;
		bottom: 8px;
		width: 36px;
		height: 36px;
		margin-top: 0;
		border-radius: 50%;
		border: 1px solid #c7b47a;
	}
	.testimonials-unified .owl-nav > .owl-prev {
		left: calc(50% - 44px);
	}
	.testimonials-unified .owl-nav > .owl-next {
		right: calc(50% - 44px);
	}
	.testimonials-unified .testimonial-holder.style-2 .testimonial:not(.blockquote-holder) blockquote {
		padding: 0 22px 8px;
	}
}

/* Hero-only typography scaling */
.banner-fade-holder .content-element5 .call-title {
	font-size: clamp(2.3rem, 5vw, 4rem) !important;
	line-height: 1.15 !important;
}
.banner-fade-holder .content-element5 .call-sub-title {
	font-size: clamp(1.15rem, 2.2vw, 1.75rem) !important;
	line-height: 1.45 !important;
}
.banner-fade-holder .content-element5 > div:not([class]),
.banner-fade-holder .content-element5 p {
	font-size: clamp(1rem, 1.7vw, 1.25rem) !important;
	line-height: 1.55 !important;
}

/* Service pages: breadcrumb prev/next rails */
.breadcrumbs-wrap.service-nav-enabled .container {
	position: relative;
	--service-rail-width: 46px;
	padding-left: 64px;
	padding-right: 64px;
}
.breadcrumbs-wrap.service-nav-enabled .container:before,
.breadcrumbs-wrap.service-nav-enabled .container:after {
	content: '';
	position: absolute;
	left: calc(var(--service-rail-width) + 1px);
	right: calc(var(--service-rail-width) + 1px);
	height: 1px;
	background: rgba(201, 183, 124, 0.5);
	pointer-events: none;
	z-index: 1;
}
.breadcrumbs-wrap.service-nav-enabled .container:before { top: 0; }
.breadcrumbs-wrap.service-nav-enabled .container:after { bottom: 0; }
.service-breadcrumb-nav-rail {
	position: absolute;
	top: 0;
	bottom: 0;
	width: var(--service-rail-width);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	background: #e58bb4;
	border: 1px solid #c98cad;
	box-shadow: 0 6px 14px rgba(173, 137, 160, 0.25);
	transition: background-color 0.2s ease, border-color 0.2s ease;
	z-index: 2;
}
.service-breadcrumb-nav-rail:hover {
	color: #fff !important;
	background: #d975a6;
	border-color: #b88fa8;
}
.service-breadcrumb-nav-rail.prev {
	left: 0;
	border-radius: 8px 0 0 8px;
}
.service-breadcrumb-nav-rail.next {
	right: 0;
	border-radius: 0 8px 8px 0;
}
.service-breadcrumb-nav-rail.placeholder {
	background: rgba(229, 139, 180, 0.38);
	border-color: rgba(190, 146, 170, 0.45);
	box-shadow: none;
	pointer-events: none;
}
.service-breadcrumb-nav-rail .arrow {
	font-size: 24px;
	line-height: 1;
	font-weight: 600;
}
.service-breadcrumb-nav-rail .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Class info modals: keep key + first value on one line for denser layout */
.class-info-modal .class-info-modal-meta .info-item .wrapper strong {
	display: inline-block !important;
	margin: 0 6px 0 0 !important;
	vertical-align: baseline;
}
.class-info-modal .class-info-modal-meta .info-item .wrapper br:first-of-type {
	display: none;
}
.class-info-modal .class-info-modal-meta {
	gap: 8px !important;
	padding: 14px 16px !important;
	background: #fff !important;
}
.class-info-modal .our-info.vr-type .info-item:not(:last-child),
.class-info-modal .class-info-modal-meta .info-item {
	margin-bottom: 0 !important;
}
.class-info-modal .class-info-modal-meta .info-item {
	gap: 10px !important;
	line-height: 1.35 !important;
}
.class-info-modal .class-info-modal-meta .info-item > i {
	line-height: 1.2 !important;
	margin-right: 0 !important;
}
.class-info-modal .class-info-modal-meta .info-item .wrapper {
	line-height: 1.45 !important;
}
@media (max-width: 767px) {
	.breadcrumbs-wrap.service-nav-enabled .container {
		--service-rail-width: 34px;
		padding-left: 48px;
		padding-right: 48px;
	}
	.service-breadcrumb-nav-rail .arrow {
		font-size: 20px;
	}
}

/* Back to top: baby icon by scroll state (down / up / stop) */
.go-to-top {
	background: #fff !important;
	box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.go-to-top:before {
	content: "" !important;
	display: block;
	width: 100%;
	height: 100%;
	background: center center / 75% no-repeat;
}
/* Scrolling down */
.go-to-top.scroll-down:before {
	background-image: url("/media/brand_kit/baby_down.gif");
}
/* Scrolling up */
.go-to-top.scroll-up:before {
	background-image: url("/media/brand_kit/baby_up.gif");
}
/* Stopped after scrolling down (or default when visible) */
.go-to-top.scroll-stop:before,
.go-to-top:before {
	background-image: url("/media/brand_kit/baby_stop.png");
}
/* Stopped after scrolling up */
.go-to-top.scroll-stop-up:before {
	background-image: url("/media/brand_kit/baby_stop_up.png");
}
.go-to-top:hover {
	background: #e883ae !important;
	color: #fff !important;
}
.go-to-top:hover:before {
	filter: brightness(0) invert(1);
}

/* Footer: theme gradient (from brandielekovic) */
#footer.footer-lumi,
footer#footer.footer.style-2.footer-lumi {
	background-color: #3FA6A0 !important;
	background-image: linear-gradient(115deg, #CFA24F 0%, #E7B867 28%, #4AB5A8 55%, #3FA6A0 78%, #2E8C87 100%) !important;
	background-repeat: no-repeat !important;
	background-position: 0 0 !important;
	background-size: 100% 100% !important;
	overflow: hidden;
}
#footer.footer-lumi,
#footer.footer-lumi .widget .widget-title,
#footer.footer-lumi .widget a,
#footer.footer-lumi .widget p,
#footer.footer-lumi .copyright,
#footer.footer-lumi .copyright a,
#footer.footer-lumi .copyright p,
#footer.footer-lumi .menu-list a,
#footer.footer-lumi .menu-list li a {
	color: #fff !important;
	text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
#footer.footer-lumi::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 55%;
	max-width: 520px;
	height: 100%;
	min-height: 160px;
	background-image: url("/media/brand_kit/raspberry_bottom_image.png");
	background-size: 160%;
	background-repeat: no-repeat;
	background-position: 0% 50%;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
	transform: scaleX(-1);
	filter: contrast(2.2) saturate(1.4) brightness(1.05);
	mix-blend-mode: lighten;
}
#footer.footer-lumi::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: auto;
	width: 55%;
	max-width: 520px;
	height: 100%;
	min-height: 160px;
	background-image: url("/media/brand_kit/raspberry_bottom_image.png");
	background-size: 160%;
	background-repeat: no-repeat;
	background-position: 100% 50%;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
	transform: scaleX(-1);
	filter: contrast(2.2) saturate(1.4) brightness(1.05);
	mix-blend-mode: lighten;
}
#footer.footer-lumi .container {
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	#footer.footer-lumi::before,
	#footer.footer-lumi::after {
		content: none !important;
		background-image: none !important;
		display: none !important;
	}
}

/* Prenatal/Postnatal/Services cards: always show slogan and "View more" (works on touch, no hover needed) */
.icons-box.style-2 .icons-wrap .hidden-area {
	opacity: 1 !important;
	max-height: 200px !important;
	visibility: visible !important;
}
/* Hide icons on home page Prenatal/Postnatal/Services boxes */
#content .page-section.parallax-section .icons-box.style-2 .item-box > i {
	display: none !important;
}
/* Better contrast: dark text on light box backgrounds */
#content .page-section.parallax-section .icons-box.style-2 .icons-item .icons-box-title a,
#content .page-section.parallax-section .icons-box.style-2 .icons-box-title a {
	color: #1a1a1a !important;
}
#content .page-section.parallax-section .icons-box.style-2 .hidden-area p {
	color: #333 !important;
}
#content .page-section.parallax-section .icons-box.style-2 .hidden-area .btn.btn-style-2 {
	background: #2f3e3d !important;
	color: #fff !important;
	border-color: #2f3e3d !important;
}
#content .page-section.parallax-section .icons-box.style-2 .hidden-area .btn.btn-style-2:hover {
	background: #1a2524 !important;
	border-color: #1a2524 !important;
}

/* Service/class boxes: auto height so long titles don't push buttons outside; flex layout for natural flow */
.icons-box.style-2 .icons-wrap {
	height: auto !important;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 24px 20px !important;
}
.icons-box.style-2 .icons-wrap .icons-item {
	position: relative !important;
	top: auto !important;
	transform: none !important;
	width: 100%;
	padding: 20px 30px !important;
}
/* Reduce title font size on smaller screens to prevent overflow */
.icons-box.style-2 .icons-item .icons-box-title a {
	font-size: 36px;
	line-height: 1.2;
	word-wrap: break-word;
}
@media (max-width: 1199px) {
	.icons-box.style-2 .icons-item .icons-box-title a {
		font-size: 28px;
	}
}
@media (max-width: 768px) {
	.icons-box.style-2 .icons-item .icons-box-title a {
		font-size: 24px;
	}
	.icons-box.style-2 .icons-wrap {
		min-height: 220px;
	}
}

/* Home page: Prenatal, Postnatal, Services section titles – white and bold */
#content .page-section.parallax-section .section-title.style-2 {
	color: #fff !important;
	font-weight: 700 !important;
}

/* Prenatal/Postnatal/Services boxes: wrap properly on smaller screens */
.icons-box.style-2.flex-row.item-col-3 {
	flex-wrap: wrap;
}
.icons-box.style-2.item-col-3 > * {
	min-width: 0; /* allow flex items to shrink and wrap */
}
@media (max-width: 1199px) {
	.icons-box.style-2.item-col-3 > * {
		width: 50%; /* 2 columns on tablet */
	}
}
@media (max-width: 768px) {
	.icons-box.style-2.item-col-3 > * {
		width: 100%; /* stack vertically on mobile */
	}
}

/* Home hero slides: WebKit often ignores background-position when bg-image is inline + translateZ(0) layer */
@media only screen and (max-width: 992px) {
	.banner-fade-holder .banner-fade-slide,
	.banner-fade-holder .banner-fade-slide.active {
		transform: none !important;
		-webkit-background-position: center 75% !important;
		background-position: center 75% !important;
		background-position-x: center !important;
		background-position-y: 75% !important;
	}
}
@media only screen and (max-width: 576px) {
	.banner-fade-holder .banner-fade-slide,
	.banner-fade-holder .banner-fade-slide.active {
		-webkit-background-position: center 82% !important;
		background-position: center 82% !important;
		background-position-y: 82% !important;
	}
}

/* Cookie consent banner (GA4 opt-in) */
.lb-cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10050;
	padding: 14px 16px;
	background: #fff;
	border-top: 1px solid #e8ded9;
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}
.lb-cookie-consent__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 20px;
}
.lb-cookie-consent__text {
	margin: 0;
	flex: 1 1 280px;
	font-size: 14px;
	line-height: 1.5;
	color: #444;
}
.lb-cookie-consent__text a {
	color: #8E5A8F;
	text-decoration: underline;
}
.lb-cookie-consent__learn-more {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	color: #8E5A8F;
	text-decoration: underline;
	cursor: pointer;
	font: inherit;
	line-height: inherit;
}
.lb-cookie-consent__learn-more:hover,
.lb-cookie-consent__learn-more:focus {
	color: #6d4570;
}
.lb-cookie-consent__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex: 0 0 auto;
}
.lb-cookie-consent__btn {
	margin: 0;
	white-space: nowrap;
}
@media (max-width: 576px) {
	.lb-cookie-consent {
		padding: 12px;
	}
	.lb-cookie-consent__actions {
		width: 100%;
	}
	.lb-cookie-consent__btn {
		flex: 1 1 auto;
	}
}
