body {
    font-family: 'Gilroy', sans-serif !important;
}

/* Header Title Kerning */
.head-title p {
    letter-spacing: 2px;
}

/* Navigation - Gallery Link Cursor */
.tabs-corporate .nav-link[href="./"],
.tabs-corporate .nav-link[href="./"]:hover,
.tabs-corporate .nav-link[href="./"]:active,
.tabs-corporate .nav-link[href="./"].active {
    cursor: pointer !important;
}

/* page home */
.page-home {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	background-image: url("../img/alchemy-body-bg.jpg");
	background-image: image-set(
		url("../img/optimized/alchemy-body-bg.webp") type("image/webp"),
		url("../img/alchemy-body-bg.jpg") type("image/jpeg")
	);
	background-size: cover;
	background-position: center;
}


.tabs-gallery .gallery-wrap {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
}
.tabs-gallery .gallery-wrap > .gallery-wrap-inner--content {
	/* max-width: 1300px; */
	flex: 0 0 calc(100% - 200px);
	max-width: calc(100% - 200px);
}

/* Keep gallery carousel images full-size (Owl init in hidden tabs can collapse height) */
.owl-gallery .gallery-item,
.owl-gallery .gallery-item figure {
	display: block;
	width: 100%;
	margin: 0;
	line-height: 0;
}
.owl-gallery .gallery-item img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}
.owl-gallery .owl-stage-outer {
	height: auto !important;
}
.owl-gallery.owl-drag .owl-item {
	min-height: 1px;
}

/* About Section Styles */
#tabs-1-2 .content-box {
	overflow: visible;
	padding: 0 !important;
}

#tabs-1-2 .content-box-inner {
	max-height: none !important;
	overflow: visible !important;
	padding: 0 !important;
}

#tabs-1-2 .content-box-inner .row.g-0 {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: stretch;
}

#tabs-1-2 .content-box-inner .row.g-0 > [class*="col-"] {
	padding: 0;
}

#tabs-1-2 .content-box-inner .row.g-0 > [class*="col-"]:first-child {
	display: flex;
	align-items: stretch;
}

#tabs-1-2 .about-image {
	margin: 0;
	padding: 0;
	line-height: 0;
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 100%;
}

#tabs-1-2 .about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0;
	padding: 0;
}

#tabs-1-2 .about-text {
	padding: 30px;
}

#tabs-1-2 .about-text h3 {
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 28px;
	color: #dedcd1;
}

#tabs-1-2 .about-text p {
	line-height: 1.7;
	font-size: 16px;
	color: #dedcd1;
}

#tabs-1-2 .about-logos {
	margin-top: 25px;
}

#tabs-1-2 .about-logos img {
	max-width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 1200px) {
	#tabs-1-2 .about-text {
		padding: 40px 50px 40px 40px;
	}
	
	#tabs-1-2 .about-text h3 {
		font-size: 32px;
		margin-bottom: 25px;
	}
	
	#tabs-1-2 .about-text p {
		font-size: 17px;
		line-height: 1.7;
	}
}

@media (max-width: 767px) {
	#tabs-1-2 .content-box-inner .row.g-0 {
		align-items: flex-start;
	}
	
	#tabs-1-2 .content-box-inner .row.g-0 > [class*="col-"]:first-child {
		display: block;
	}
	
	#tabs-1-2 .about-image {
		margin-bottom: 20px;
		height: auto;
	}
	
	#tabs-1-2 .about-image img {
		height: auto;
		object-fit: contain;
	}
	
	#tabs-1-2 .about-text {
		padding: 20px;
	}
	
	#tabs-1-2 .about-text h3 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	#tabs-1-2 .about-text p {
		font-size: 15px;
		line-height: 1.6;
	}
}

/* Close Button Styling */
#tabs-1-2 .close-content-box {
	background-color: #cdcbc0 !important;
	color: #111111 !important;
}

#tabs-1-2 .close-content-box:hover {
	background-color: #cdcbc0 !important;
	color: #111111 !important;
}

/* Privacy Modal - Prevent Horizontal Shift */
#privacy.modal {
	overflow: hidden !important;
}

#privacy .modal-dialog {
	width: 800px !important;
	max-width: 800px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

#privacy .modal-content {
	width: 100% !important;
	overflow: hidden !important;
}

#privacy .privacy-content-box {
	width: 100% !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}

#privacy .privacy-content-inner {
	width: 100% !important;
	box-sizing: border-box !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
}

@media (max-width: 767px) {
	#privacy .modal-dialog {
		width: 95% !important;
		max-width: 95% !important;
	}
}

/* Gallery lightbox */
.owl-gallery .gallery-item img {
	cursor: zoom-in;
}

body.gallery-lightbox-open {
	overflow: hidden;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: rgba(0, 0, 0, 0.9);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease-in-out;
}

.gallery-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.gallery-lightbox__image {
	max-width: 100%;
	max-height: 85vh;
	width: auto;
	height: auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.gallery-lightbox__caption {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	text-align: center;
	color: #dedcd1;
	font-style: italic;
	padding: 0 30px;
}

.gallery-lightbox__close {
	position: absolute;
	top: 20px;
	right: 25px;
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	color: #fff;
	font-size: 34px;
	line-height: 44px;
	cursor: pointer;
	transition: opacity 0.2s ease-in-out;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus {
	opacity: 0.7;
	outline: none;
}
