/* TITLE */
h1 {
	max-width: 1280px;
	margin: 0 auto;
	padding: 120px 0 20px;
}
@media only screen and (max-width: 1380px) {
    h1 {
		max-width: none;
		padding: 120px 40px 20px;
		margin: 0;
	}
}
@media only screen and (max-width: 999px) {
    h1 {
		padding: 100px 30px 20px;
	}
}
@media only screen and (max-width: 690px) {
    h1 {
		padding: 80px 20px 20px;
	}
}

/* IMMERSIVE EXPERIENCE BUTTON */
.lite-version-immersive-experience-button {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}
.lite-version-immersive-experience-button {
	cursor: pointer;
	margin-bottom: 60px;
}
.lite-version-immersive-experience-button > a::before {
	content: '\2190';
	padding-right: 12px;
	transition: transform 0.25s ease-out;
	display: inline-block;
}
.lite-version-immersive-experience-button:hover > a::before {
	transform: translateX(-4px);
}
@media only screen and (max-width: 1380px) {
    .lite-version-immersive-experience-button {
		width: auto;
		max-width: none;
		margin: 0 40px;
	}
}
@media only screen and (max-width: 690px) {
    .lite-version-immersive-experience-button {
		margin: 0 20px;
	}
}

/* INTRODUCTION & ABOUT TEXT */
.lite-version-introduction,
.lite-version-about {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}
.lite-version-introduction {
	padding-top: 40px;
}
.lite-version-about {
	padding-top: 60px;
	padding-bottom: 80px;
	border-bottom: 2px solid #c5a100;
}
.lite-version-introduction p,
.lite-version-about p {
	font-size: 26px;
	line-height: 1.6em;
	max-width: 960px;
}
.lite-version-introduction p:not(:last-child),
.lite-version-about p:not(:last-child) {
	margin-bottom: 52px;
}
@media only screen and (max-width: 1380px) {
    .lite-version-introduction,
	.lite-version-about {
		width: auto;
		max-width: none;
		margin: 0 40px;
	}
}
@media only screen and (max-width: 690px) {
    .lite-version-introduction,
	.lite-version-about {
		margin: 0 20px;
	}
	.lite-version-introduction p,
	.lite-version-about p {
		font-size: 22px;
	}
}

/* SCENES */
.scenes {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}
@media only screen and (max-width: 1380px) {
    .scenes {
		max-width: none;
		padding: 0 40px;
		margin: 0;
	}
}
@media only screen and (max-width: 999px) {
    .scenes {
		padding: 0 30px;
	}
}
@media only screen and (max-width: 690px) {
    .scenes {
		padding: 0 20px;
	}
}
.scenes .scene {
	padding: 80px 0 60px;
}
.scenes .scene:not(:last-child) {
	border-bottom: 2px solid #c5a100;
}
.scenes .scene img,
.scenes .scene video {
	width: 100%;
	border-radius: 10px;
}
/* Scene description */
.scenes .scene > h2 {
	padding-bottom: 32px;
}
.scenes .scene .scene-description {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-bottom: 20px;
}
/* Scene POI */
.scenes .scene .scene-poi {
	margin: 40px 0;
	padding: 26px 26px 10px;
	background-color: #2c2c2c;
	border-radius: 20px;
}
.scenes .scene .scene-poi:last-child {
	margin-bottom: 30px;
}
.scenes .scene .scene-poi > h3 {
	padding-bottom: 30px;
}
.scenes .scene .scene-poi .scene-poi-infos {
	display: flex;
	vertical-align: top;
	gap: 30px;
}
.scenes .scene .scene-poi .scene-poi-infos p:first-child,
.scenes .scene .scene-poi .scene-poi-infos p:last-child{
	border-top: 1px solid;
	padding: 30px 0;margin-bottom: 0px;
}
.scenes .scene .scene-poi .scene-poi-infos > div:first-child {
	width: 50%;
}
.scenes .scene .scene-poi .scene-poi-infos > div:last-child {
	width: 50%;
}
.scenes .scene .scene-poi .scene-poi-infos > div a {
	position: relative;
}
a[data-src$=".mp4" i]:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
	background-position: center;
	background-size: cover;
	background-image: url('/assets/video_play_button_v1.webp');
	transition: transform 0.25s ease-in-out;
}
a[data-src$=".mp4" i]:hover:after {
	transform: scale(1.1);
}
@media only screen and (max-width: 999px) {
    .scenes .scene .scene-poi .scene-poi-infos {
		flex-direction: column;
		padding-bottom: 40px;
	}
	.scenes .scene .scene-poi .scene-poi-infos > div:first-child {
		width: 100%;
	}
	.scenes .scene .scene-poi .scene-poi-infos > div:last-child {
		width: 100%;
	}
}
/* Scene Quiz */
.scenes .scene .scene-quiz {
	margin: 40px 0;
	padding: 26px 26px;
	background-color: #2c2c2c;
	border-radius: 20px;
}
.scenes .scene .scene-quiz > h3 {
	padding-bottom: 30px;
	max-width: 650px;
}
.scenes .scene .scene-quiz .scene-quiz-answers {
	margin: 0px 0 20px;
}
.scenes .scene .scene-quiz .scene-quiz-answers > div {
	padding: 0px 0px 8px;
	box-sizing: border-box;
}
.scenes .scene .scene-quiz .scene-quiz-result > div {
	display: inline-block;
}
.scenes .scene .scene-quiz .scene-quiz-result > div:first-child {
	padding: 8px 8px 8px 0;
}
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: hidden; 
	
	z-index: 100;
  }
  #imgModal,#vidModal{
	max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain; /* ensures entire image is visible and not cropped */
    display: block;
	width: 100%;
  }
  .modal-content {
	background-color: #2c2c2c;
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
	padding: 20px;
	display: flex;
    justify-content: center;
    align-items: center;
	inset: 0;
	position: fixed;
  }
  img[onclick],a[data-src]
  {
	cursor: pointer;
  }
  
  .close-button {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: fixed;
    right: 10px;
    top: 0px;
  }
  
  .close-button:hover,
  .close-button:focus {
	
	text-decoration: none;
	cursor: pointer;
  }