/* ==========================================
   VIRTUAL TOUR STANDALONE BUTTON
   ========================================== */
/* Estilos para botón de tour virtual centrado en página de galería */

/* ==========================================
   DESKTOP (992px+)
   ========================================== */

.virtualTourBtnContainer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 60px;
	width: 100%;
	background-color: #faf8f5;
}

.virtualTourBtnContainer .exploreBtn {
	display: inline-block;
	padding: 12px 25px;
	border: 1px solid #d3d0cf;
	background-color: transparent;
	border-radius: 0px;
	font-size: 1rem;
	color: #606060;
	font-weight: 300;
	line-height: 1.15rem;
	letter-spacing: 0.0938rem;
	text-transform: uppercase;
	text-decoration: none;
	transition: 0.8s cubic-bezier(0.3, 1, 0.3, 1);
}

.virtualTourBtnContainer .exploreBtn:hover {
	border-color: #ded9d4;
	background-color: #ded9d4;
	color: #606060;
}

.virtualTourBtnContainer .exploreBtn .btnText {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	width: 100%;
	overflow: hidden;
}

.virtualTourBtnContainer .exploreBtn .btnText span {
	width: 100%;
	white-space: nowrap;
	text-shadow: 0px calc(20px * 1.25) transparent;
	transform: translateY(0);
	transition: text-shadow 0.8s cubic-bezier(0.3, 1, 0.3, 1);
}

.virtualTourBtnContainer .exploreBtn:hover .btnText span {
	text-shadow: 0px 20px #606060;
	transform: translateY(calc(20px * -1));
	transition: all 0.8s cubic-bezier(0.3, 1, 0.3, 1);
}

/* ==========================================
   MEDIA QUERY - TABLET/MOBILE (max 991px)
   ========================================== */
@media only screen and (max-width: 991px) {
	.virtualTourBtnContainer {
		padding-bottom: 40px;
	}

	.virtualTourBtnContainer .exploreBtn {
		font-size: 0.875rem;
		padding: 10px 20px;
	}
}
