:root {
	--font-heading: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Base */
html,
body {
	background-color: #f8f9fa;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.5;
	color: #111;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	/* use 700 for stronger headings */
	letter-spacing: 0.2px;
	margin: 0 0 0.5rem 0;
}

/* Utilities to force heading/body fonts */
.font-heading { font-family: var(--font-heading) !important; }
.font-body { font-family: var(--font-body) !important; }

/* Example utility classes */
.lead {
	font-size: 1.125rem;
	font-weight: 600;
}

/* for subheads */
.small {
	font-size: 0.875rem;
}


#showroom-viewer {
	min-height: 360px;
}

p {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #111;
}

.nav-link {
	font-family: var(--font-heading);
	color: #000;
	font-weight: 500;
	font-size: 22px;
}

.navbar-brand { font-family: var(--font-heading); }

/* Animated logo heartbeat */
@keyframes logo-beat {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.navbar-brand img.logo-beat {
	animation: logo-beat 1.4s ease-in-out infinite;
	transform-origin: center center;
	will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
	.navbar-brand img.logo-beat { animation: none; }
}

/* Force black hamburger icon */
.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-toggler { border-color: rgba(0,0,0,0.2); }

/* Navbar link hover animation */
.navbar .nav-link {
	position: relative;
	transition: color 0.2s ease, transform 0.2s ease;
}

.navbar .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 0;
	background-color: currentColor;
	transition: width 0.25s ease;
}

.navbar .nav-link:hover {
	transform: translateY(-1px);
	color: #0d6efd;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
	width: 100%;
}

.navbar .nav-link.active {
	color: #0d6efd;
	font-weight: 700;
	text-shadow: 0 0 0 rgba(0,0,0,0); /* avoid layout shifts */
}

@media (prefers-reduced-motion: reduce) {
	.navbar .nav-link { transition: none; }
	.navbar .nav-link::after { transition: none; }
}

/* Mobile adjustments */
@media (max-width: 576px) {
	.navbar .nav-link {
		font-size: 16px;
		padding: 0.25rem 0.5rem;
	}
}

/* FAQ transparent outline style */
.faq-outline .accordion-item {
	background-color: transparent;
	border: 1px solid rgba(0,0,0,0.15);
	border-radius: 8px;
	margin-bottom: 0.5rem;
}

.faq-outline .accordion-button {
	background-color: rgba(255,255,255,0.6);
	font-weight: 600;
}

.faq-outline .accordion-button:not(.collapsed) {
	color: #0d6efd;
	background-color: rgba(13,110,253,0.06);
}

.faq-outline .accordion-body {
	background-color: rgba(255,255,255,0.5);
}

/* Brand logos strip */
.brand-logos img {
	height: 100px;
	filter: grayscale(100%) contrast(1.1) opacity(0.8);
	transition: filter 0.2s ease, transform 0.2s ease;
}

.brand-logos img:hover {
	filter: grayscale(0%) opacity(1);
	transform: translateY(-1px);
}

/* Horizontal brand scroller */
.brand-scroller {
	position: relative;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE/Edge */
	border-radius: 8px;
	background: rgba(0,0,0,0.02);
	padding: 8px 4px;
	cursor: grab;
}

.brand-scroller.dragging { cursor: grabbing; }
.brand-scroller::-webkit-scrollbar { display: none; } /* WebKit */

.brand-scroller .brand-track {
	display: inline-flex;
	gap: 24px;
	align-items: center;
	padding: 4px 8px;
}

.brand-scroller img {
	height: 125px;
	filter: grayscale(100%) contrast(1.1) opacity(0.8);
	transition: filter 0.2s ease, transform 0.2s ease;
	scroll-snap-align: center;
	user-select: none;
	-webkit-user-drag: none;
}

.brand-scroller img:hover { filter: grayscale(0%) opacity(1); transform: translateY(-1px); }

@media (max-width: 576px) {
	.brand-scroller img { height: 52px; }
}

/* Footer styles */
.site-footer { background-color: #0f1216; color: #cfd3d7; }
.site-footer .footer-cta { background-color: #10385c; color: #fff; max-width: 1140px; margin-left: auto; margin-right: auto; border-radius: 8px; }
.site-footer .footer-cta h3 { white-space: nowrap; }
.site-footer .footer-widgets h5 { color: #fff; letter-spacing: 1px; }
.site-footer .footer-list li { margin-bottom: 6px; }
.site-footer .footer-list a { color: #cfd3d7; text-decoration: none; }
.site-footer .footer-list a:hover { color: #fff; text-decoration: underline; }
.site-footer .btn-outline-light { color: #cfd3d7; border-color: rgba(255,255,255,0.25); }
.site-footer .btn-outline-light:hover { color: #0f1216; background-color: #fff; border-color: #fff; }
.back-to-top { position: fixed; right: 16px; bottom: 16px; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; transform: translateY(8px); }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Avatar initials badge */
.avatar-initial {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #0d6efd;
	color: #fff;
	font-weight: 700;
	font-family: var(--font-heading);
	text-transform: uppercase;
}

/* Remove underline animation from header CTA */
a.cta .hover-underline-animation:after { display: none !important; }

/* Ensure LEARN MORE CTA never shows underline */
a.cta { text-decoration: none !important; }
a.cta:hover, a.cta:focus, a.cta:active { text-decoration: none !important; }

/* Newsletter input styling to black */
.site-footer .footer-cta .newsletter-input {
	background-color: #000;
	color: #fff;
	border-color: #000;
	border-width: 2px;
}
.site-footer .footer-cta .newsletter-input::placeholder { color: rgba(255,255,255,0.7); }
.site-footer .footer-cta .newsletter-input:focus {
	background-color: #000;
	color: #fff;
	border-color: #000;
	box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.08);
}
.site-footer .footer-cta .newsletter-btn { background:#000; color:#fff; border:2px solid #000; }
.site-footer .footer-cta .newsletter-btn:hover { background:#111; border-color:#111; }

/* Partner CTA button - matches newsletter theme (navy + black) */
.btn-partner {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 9999px;
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: .3px;
	text-decoration: none !important;
	background: linear-gradient(90deg, #10385c 0%, #000 100%);
	color: #fff !important;
	border: 2px solid #000;
	box-shadow: 0 6px 14px rgba(0,0,0,.15);
	transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, background .2s ease;
}
.btn-partner:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(0,0,0,.22);
	filter: brightness(1.03);
}
.btn-partner:active {
	transform: translateY(0);
	box-shadow: 0 6px 12px rgba(0,0,0,.18);
}
.btn-partner:focus { outline: none; box-shadow: 0 0 0 0.2rem rgba(16,56,92,0.35); }

/* Partner registration wizard buttons */
.btn-step-next {
	background:#10385c;
	border:2px solid #10385c;
	color:#fff;
	border-radius:8px;
	font-family: var(--font-heading);
	font-weight:700;
	padding: 8px 16px;
	transition: background .15s ease, border-color .15s ease, transform .12s ease;
}
.btn-step-next:hover { background:#0c2c47; border-color:#0c2c47; transform: translateY(-1px); }
.btn-step-next:active { transform: translateY(0); }
.btn-step-next:disabled { opacity:.6; cursor:not-allowed; }

.btn-step-back {
	background:#000;
	border:2px solid #000;
	color:#fff;
	border-radius:8px;
	font-family: var(--font-heading);
	font-weight:700;
	padding: 8px 16px;
	transition: background .15s ease, border-color .15s ease, transform .12s ease;
}
.btn-step-back:hover { background:#111; border-color:#111; transform: translateY(-1px); }
.btn-step-back:active { transform: translateY(0); }
.btn-step-back:disabled { opacity:.6; cursor:not-allowed; }

/* Show bootstrap invalid feedback when using .is-invalid */
.is-invalid ~ .invalid-feedback { display:block; }

/* Inline 3D showroom styles */
#shop3dContainer {
	height: 60vh;
	position: relative;
	background: transparent;
}
#shop3dCanvas {
	width: 100%;
	height: 100%;
	display: block;
}