/* ----------------------------------------------------------------
	Canvas: Videographer
-----------------------------------------------------------------*/

:root, .not-dark {
	--cnvs-themecolor: #ff7f26;
	--cnvs-themecolor-rgb: 255, 127, 38;
	--cnvs-dark-color: #2b2e34;
	--cnvs-dark-color-rgb: 43, 46, 52 !important;

	--cnvs-body-font: "Trebuchet MS", sans-serif;
	--cnvs-primary-font: "Trebuchet MS", sans-serif;
	--cnvs-secondary-font: Arial, sans-serif;

	--cnvs-slider-arrows-bg-color: transparent;
	--cnvs-slider-arrows-bg-hover-color: transparent;

	--cnvs-frame-offset: 20px;
	--cnvs-frame-bg: var(--cnvs-contrast-200);
	--cnvs-slider-gradient-bg: var(--cnvs-contrast-rgb);
	font-variation-settings: "opsz" 100, "wght" 400;

	--cnvs-header-bg: transparent;
}

body.dark,
.dark {
	--cnvs-body-bg: var(--cnvs-dark-color);
	/* --cnvs-header-bg: var(--cnvs-body-bg); */
	--cnvs-frame-bg: var(--cnvs-contrast-200);
	--cnvs-header-sticky-bg: transparent;
}

.dark .not-dark .menu-link {
	--cnvs-primary-menu-color: #fff;
}

.swiper-slide .button:not(:hover) {
	border-color: rgba(var(--cnvs-contrast-rgb),.25) !important;
}

/* Dark Mode Switch */
.body-scheme-toggle, .contact-button-float {
	position: fixed;
	top: auto;
	right: calc(var(--cnvs-frame-offset) + 70px);
	bottom: calc(var(--cnvs-frame-offset) + 30px);
	text-align: center;
	margin: 0 auto;
	z-index: 299;
}

.swiper-kenburn-effect .swiper-slide .swiper-slide-bg {
	transition: 10s ease-out;
	transform: scale(1);
}

.swiper-kenburn-effect .swiper-slide.swiper-slide-active .swiper-slide-bg {
	transform: scale(1.1);
}

#header {
	--cnvs-primary-menu-font-size: 1.25rem;
	--cnvs-primary-menu-font: var(--cnvs-primary-font);
	--cnvs-primary-menu-font-weight: 400;
	--cnvs-primary-menu-ls: 0px;
	--cnvs-primary-menu-tt: none;
}

.is-expanded-menu #header + .include-header {
	margin-top: -181px;
}

/* Image Hover */
.img-hover-block {
	z-index: 0;
}

.img-hover-block span {
	position: relative;
	color: var(--cnvs-contrast-1000);
}

.img-hover-block small {
	position: absolute;
	font-size: 26%;
	font-weight: normal;
	top: 5px;
	right: 5px;
	color: var(--cnvs-themecolor);
}

.img-hover-block:hover span {
	mix-blend-mode: difference;
	z-index: 2;
}

body:not(.dark) .img-hover-block:hover span {
	color: var(--cnvs-contrast-0);
}

.hover-reveal {
	position: fixed;
	width: 220px;
	height: 280px;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	z-index: 1;
}

.hover-reveal__inner,
.hover-reveal__img {
	width: 100%;
	height: 100%;
	position: relative;
}

.hover-reveal__inner {
	overflow: hidden;
}

.hover-reveal__img {
	background-size: cover;
	background-position: 50% 50%;
	border-radius: 4px;
}

.portfolio-desc h3 {
	font-size: 1.5rem;
}

.grid-filter li a {
	font-family: monospace;
	font-weight: normal !important;
	--cnvs-grid-filter-item-font-size: 1rem;
}

.grid-filter li:not(.activeFilter):not(:hover) a  {
	background-color: var(--cnvs-dark-color)!important;
	color: var(--cnvs-contrast-400);
}

.menu-item.current > .menu-link {
	background-color: var(--cnvs-dark-color)!important;
	color: var(--cnvs-themecolor);
}

/* Scroll-to-top circular button (fixed bottom-right) */
.scroll-top-btn {
	position: fixed;
	right: calc(var(--cnvs-frame-offset) + 10px);
	bottom: calc(var(--cnvs-frame-offset) + 30px);
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background-color: var(--cnvs-themecolor);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cnvs-dark-color);
	cursor: pointer;
	z-index: 9999;
	box-shadow: 0 6px 18px rgba(0,0,0,0.3);
	border: none !important;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .28s ease, transform .28s ease, visibility .2s;
}

.scroll-top-btn.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top-btn:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(var(--cnvs-themecolor-rgb), .12);
}

@media (max-width: 768px) {
	.scroll-top-btn {
		right: 15px;
		width: 48px;
		height: 48px;
	}
}

/* Ensure existing #gotoTop has no visible border */
#gotoTop,
a#gotoTop {
	border: none !important;
	background: transparent !important;
}


.accordion-button:not(.collapsed) {
    color: var(--cnvs-dark-color);
    background-color: var(--cnvs-themecolor);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}