/* VARS */
:root {
  /* COLOR SCHEME */

  /* alt scheme */
  --primary: #e96912;
  --secondary: #0b4364;   /* CHANGE THIS TO REAL COLOR LATER */ 
  --black: #030303ff;
  --black-trans: #03030366;
  --med-grey: #333333ff;
  --grey: #666666ff;
  --light-grey: #ccccccff;
  --off-white: #f1f1f1ff;
  --white: #fafafaff;
  --green: #a1ca1eff;
  --light-green: #e9f6c0ff;
  --orange: #ca711eff;
  --light-orange: #f5d5b8ff;
  --light-red: #2FB8AC;
  --dark-red: #C91547;
  --trans: #fafafa44; 
  --trans-black: #03030344;

  /* FONT SIZES */
  --x-small: 0.625rem;
  --small: 0.75rem;
  --medium: 1rem;
  --large: 1.25rem;
  --x-large: 1.5rem;
  --xx-large: 3rem;
  --xxx-large: 4rem;

  /* FONT WEIGHT */
  --light: 400;
  --medium: 500;
  --heavy: 700;
  --bold: 900;

  /* ANIMATION SPEEDS */
  --very-slow: 1s;
  --slow: 0.8s;
  --fast: 0.7s;
  --very-fast: 0.3s;
  
  /* BORDER RADIUS */
  --round-very-small: 1px;
  --round-small: 5px;
  --round-big: 10px;
  --circle: 50%;
}

/* animatons */
@keyframes fade {
    0% {box-shadow:2px 2px 50px 2px #aaaaaaff;}
    50% {box-shadow:2px 2px 50px 2px #aaaaaa00;}
    100% {box-shadow:2px 2px 50px 2px #aaaaaaff;}
}


/* FONTS */
@font-face {
  font-family: "helvetica";
  src: url("../fonts/helvetica.ttf") format("truetype"), url("../fonts/helvetica.woff") format("woff");
}


/* CLEARFIX */
* {
  box-sizing: border-box;
}

html {
  background:var(--black);
}

.clearfix:after {
  content: " ";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
  font-size: 0;
}

body {
  margin: 0px;
  font-family: helvetica;
  background: var(--black);
  overflow:hidden;
}

/* MISC */
:focus {
	outline: none;
}

p {
	line-height: 1.5;
	font-size: var(--medium);
  color: var(--light-grey);
}

.lineBreak {
	width: 25%;
	border: solid 1px var(--secondary);
	display: block;
	margin: 0px 0px 30px 0px;
}

.disabled {
  display:none;
}

.xl-text {
  font-size: var(--xxx-large);
}

.l-text {
  font-size: var(--xx-large);
}

.dark-text {
  color: var(--black) !important;
}

video, img {
	width: 100%;
  border-radius: var(--round-small)
}

.darkBG {
  background:var(--black);
}

.lightBG {
  background: var(--white) !important;
}

.noBG {
  background: none !important;
}

.bgSize {
  background-position: center !important;
  background-size: cover;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fullHeight {
  min-height:100vh;
}

.fullWidth {
  min-width: 100vw;
}

.halfWidth {
  width: 50vw;
}
.pad {
  padding-top:50px;
}

.largeIcon {
	font-size: var(--xxx-large);
	text-align: center;
	text-shadow: 2px 2px 5px #03030344;
}

.centered {
  text-align:center;
}

.green {
	padding: 8px;
	text-align: center;
	display: block;
	line-height: 1.5;
	font-size: var(--medium);
	background: var(--green);
	border-radius: var(--round-small);
	color: var(--black) !important;
}

.red {
	padding: 8px;
	text-align: center;
	display: block;
	line-height: 1.5;
	font-size: var(--medium);
	background: var(--light-red);
	border-radius: var(--round-small);
	color: var(--black) !important;
}


/* FLEX */
.flex {
	display: flex;
	gap: 30px;
}

.column {
  flex-flow:column;
}

.spaceBetween {
  justify-content: space-between;
}

.flex-smallgap {
	display: flex;
	gap: 20px;
}

.flex-nogap {
  display:flex;
}

.flex img, .flex video {
  padding-right:30px;
}

.col-1 {
  flex: 0 0 33%;
}

.col-2 {
  flex: 0 0 67%;
}

.col-3 {
	flex-grow: 1;
	display: flex;
	flex-flow: column;
	width: 100%;
}

.col-half {
  width:50%;
  flex: 0 0 50%;
}

/* HEADINGS */
h1 {
  font-size: var(--xx-large);
  margin: 10px 0px 10px 0px;
}

h2 {
  font-size: var(--x-large);
  margin: 5px 0px 5px 0px;
}

h3 {
  font-size: var(--x-large);
  margin: 5px 0px 5px 0px;
}

h4 {
  font-size: var(--x-small);
  margin: 5px 0px 5px 0px;
}


/* LINKS */
a {
  text-decoration: none;
  font-size: var(--small);
  color: var(--secondary);
  font-family: helvetica;
  transition: var(--slow);
  cursor:pointer;
}

a:hover {
  color: var(--med-grey);
  transition: var(--fast);
}


/* BUTTONS */

button, .Submit {
  border: none;
  padding:15px;
  margin-top: 10px;
  font-size: var(--medium);
  border-radius: 5px;
  background: var(--secondary);
  color: var(--white);
  transition: var(--very-fast);
  cursor: pointer;
}

button:hover, .Submit:hover {
  background: var(--white);
  color: var(--black);
  transition: var(--very-fast);
}

.darkHover:hover {
  background: var(--black);
  color: var(--white);
  transition: var(--very-fast);
}

.darkBtn {
  background: var(--med-grey);
  color: var(--white);
}

button a {
  font-size: var(--medium) !important;
}

/* FORMS AND FIELDS */
form {
  width:20rem;
}

form .green {
  padding: 40px;
  text-align: center;
  display: block;
  line-height: 1.5;
  font-size: var(--medium);
  background: var(--green);
  border-radius: var(--round-small);
  color: var(--med-grey);
}


label {
  margin:40px 0px 40px 0px;
  display:block;
}

form button, form .Submit {
	float: right;
}

::placeholder {
  opacity: 1;
  color: var(--white);
}

.lightBG ::placeholder {
  opacity: 1;
  color: var(--grey);
}

select {
  border:solid 1px var(--secondary);
  border-radius: var(--round-small);
  
}

.textInput {
	background: none;
	padding: 10px;
  margin:0px;
	border-bottom: solid 1px var(--secondary);
	width: 20rem;
	font-size: var(--medium);
	color: var(--secondary);
}

.rightNav .textInput {
	width: calc(100% - 10px);
	display: block;
	margin: 5px;
}

.input {
	margin: 10px;
	padding: 8px;
	border: solid 1px var(--secondary);
	border-radius: var(--round-small);
	color: var(--secondary);
}

input {
	border: none;
	/* margin: 0px 0px 0px 10px; */
}

.imgInput {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow:column;
  width: 100%;
  height:100px;
  padding-right: 10px;
  min-height: 77px;
  cursor:pointer;
  transition: var(--very-fast);
}

.imgInput i {
  font-size: var(--xx-large);
  transition: var(--very-fast);
}

.imgInput span {
  margin:10px 0px 0px 0px !important;
  transition: var(--very-fast);
}

.imgInput:hover i, .imgInput:hover span {
  color: var(--light-grey) !important;
  transition:var(--very-fast);
}

.imgInput input {
	height: 20px;
	display: block;
	position: relative;
	z-index: 999;
	width: 100%;
	opacity: 0;
	margin-top: -20px;
}


/* MAIN */
#container {
  display: flex;
  flex-flow:column;
}

.hide {
  width: 68px !important;
}


/* NAVIGATION */

/* home navigation */


/* landing page navigation */
.navbar {
	position: absolute;
	display: flex;
	width: 100vw;
	padding: 15px 40px 0px 40px;
	align-items: center;
	justify-content: space-between;
  z-index:999;
}

.menuBtn {
  cursor:pointer;
  float:right;
  font-size: var(--x-large);
  color: var(--secondary);
  transition: var(--fast);
}

.rightNav .menuBtn {
  cursor:pointer;
  font-size: var(--x-large);
  color: var(--secondary);
  width:100%;
  text-align:right;
  position:relative;
  top:10px;
  right:10px;
}

.menuBtn:hover, .bookBtn:hover {
  color: var(--primary);
  transition: var(--fast);
}

.rightNav, .creditsNav {
  background: var(--off-white);
  padding:20px;
  float:right;
  position: fixed;
  right:-220px;
  top:0px;
  width:220px;
  min-height:100vh;
  height:100vh;
  display:flex;
  flex-flow:column;
  overflow:scroll;
}

.creditsNav {
  width:40vw;
  right:-40vw;
  /* right: 0vw !important;  */
  color: var(--black);
}

.creditsInfo {
	padding: 20px;
}

.creditsNav p {
  color: var(--grey);
}

.locCredits {
  margin-top:20px;
  color: var(--black);
}

.locCredits h3 {
  font-size: var(--large);
  margin-bottom:10px;
}

.bookLinks a {
	color: var(--secondary);
	font-size: var(--large);
	padding-right: 15px;
  transition: var(--fast);
}

.bookLinks a:hover {
	color: var(--primary );
	font-size: var(--large);
	padding-right: 15px;
  transition: var(--fast);
}

.bookLinks {
  margin-top:15px;
}

.locations {
  float:right;
  display:flex;
  flex-flow:column;
  gap:5px;
}

.desirade, .stanne, .gosier, .stfranc, .activity {
  display:none;
}

.desUp, .anneUp, .francUp, .gosUp, .actup {
  display:none;
}

.locs {
  min-height:100vh;
}

.locs h3 {
  font-size: var(--medium);
  color: var(--secondary);
  cursor:pointer;
  transition: var(--fast);
  padding-top:10px;
}

.locs h3:hover {
  font-size: var(--medium);
  color: var(--primary);
  transition: var(--fast);
}

.rightNav label {
  margin:20px 10px 10px 10px;
}

.rightNav a {
	padding: 15px;
	border-radius: var(--round-small);
	color: var(--secondary);
  height:130px;
  transition: var(--fast);
}

.rightNav .thumb {
  margin-bottom: 5px;
}

.rightNav a:hover {
  background: var(--primary);
  color: var(--off-white) !important;
  transition: var(--fast);
}

.rightNav span {
	position: relative;
	width: 100%;
	display: block;
	padding: 5px;
	bottom: calc(100% - 5px);
}

/* .rightNav a span {
	color: var(--primary);
} */

.rightNav img {
  opacity: 0.6;
}

.bottomNav {
	position: fixed;
	bottom: 20px;
	font-size: var(--x-large);
	padding: 20px;
	width: 200px;
	display: block;
	background: var(--trans-black);
	right: 0px;
  border-radius: var(--round-small) 0px 0px var(--round-small);
}

/* sub locations */
.sub {
	position: absolute;
	bottom: 0px;
	z-index: 998;
	font-size: var(--medium);
	width: 100vw;
	display: flex;
	justify-content: center;
}

.sub a {
	padding: 8px;
  margin:10px;
  padding-bottom:8px;
	border-radius: var(--round-small);
	color: var(--secondary);
	width: 120px;
	transition: var(--fast);
}

.sub a:hover {
  background: var(--primary);
  color: var(--off-white) !important;
  transition: var(--fast);
}

.map {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 999;
	font-size: var(--xx-large);
	color: var(--off-white);
	text-shadow: 0px 0px 5px #03030344;
    transition: var(--fast);
    cursor:pointer;
}

.map a {
    color: var(--off-white);
}

.map span:hover {
  color: var(--primary);
  transition: var(--fast);
}

.social a{
  font-size: var(--x-large);
  transition: var(--fast);
}

/* .fb a{
  color: #0866ffff;
}

.yt a{
  color: #ff0000ff;
}

.li a{
  color: #0a66c2ff;
}

.in a{
  color: #d02f74ff ;
} */

.social a:hover {
  color: var(--primary);
  transition: var(--fast);
}

.bookBtn {
	float: right;
	padding: 10px;
	transition: var(--fast);
  cursor:pointer;
  font-size: var(--small);
  display:flex;
  text-align: center;
  justify-content: center;
  color: var(--secondary);
  transition:var(--fast);
}

.bookBtn i {
  padding-right:10px;
  font-size: var(--small);
}

.bottomNav .title {
	float: left;
	text-align: right;
	width: 100%;
}

.bottomNav a {
  color: var(--off-white);
}

.bottomNav h1 {
	font-size: var(--x-large);
	color: var(--off-white);
    width:fit-content;
    float:right;
    padding:5px;
    margin:0px; 
}

.navbar .Submit {
  padding:10px;
  float:right;
  margin:0px;
}

.navbar .logo img {
	width: 150px;
}

.navbar .logo {
  color: var(--white);
  display:inline-flex;
  align-items:center;
  font-size: var(--medium);
  margin:0px;
  float:left;
}

.navbar .logo span {
	padding: 3px 0px 0px 3px;
}

/* logo */
.logo {
  margin: 0px 0px 10px 0px;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.selected {
  background: var(--primary);
  color: var(--off-white);
  transition: var(--fast);
}

/* SECTION */

.section {
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding:40px;
  max-width: 75vw;
  margin: auto;
}

/* modal */
.modalBg {
	position: absolute;
	width: 100vw;
	height: 100vh;
	background: var(--trans-black);
	top: 0px;
	left: 0px;
  z-index:999;
  overflow:scroll;
  display:flex;
  justify-content: center;
  align-items: center;
}

.modal {
	width: 85vw;
	height: 85vh;
	display: flex;
	min-height: 200px;
	border-radius: var(--round-small);
  flex-flow:column;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.09);
  position:relative;
  z-index:999;
  padding:10px;
  background:var(--black);
}

.modal span i {
	float: right;
	font-size: var(--x-large);
	padding: 20px;
  cursor:pointer;
  color: var(--secondary);
  transition: var(--fast);
}

.modal span i:hover {
  color: var(--primary);
  transition: var(--fast);
}

.closeModal {
	position: absolute;
	z-index: 999;
	display: flex;
	right: 0px;
}

.modalLogo {
	position: absolute;
	z-index: 999;
	right: 15px;
	display: flex;
	bottom: 15px;
}

.modalLogo img {
	width: 70px;
}

/* MAP */
.mapBg {
	display: block;
	height: 100%;
}

#map {
  height: 100%;
  width:100%;
  display:block;
}

.mapLoc {
	display: block;
  text-align:center;
}

.leaflet-container .Submit {
	border: none;
	padding: 15px;
	font-size: var(--medium);
	border-radius: 5px;
	background: var(--secondary);
	color: var(--white) !important;
	transition: var(--very-fast);
	cursor: pointer;
	margin: auto;
	display: block;
	text-align: center;
}

.leaflet-container .Submit:hover {
  color: var(--white) !important;
  transition: var(--slow);
  background: var(--primary);
}

.leaflet-bottom {
  display:none;
}

.leaflet-left {
	display: block;
}

.dots {
	position: absolute;
	font-size: var(--x-large);
  left:40%;
  top:17%;
}

/* VR */
.vrOverlay {
  min-height:100vh;
  background: none;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  min-width:100vw;
  padding:0px;
}

.vrImage img{
  width: 200%;
}

.vrImage {
  overflow:hidden;
}

/* loading animation */
.loader {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background: var(--off-white);
	position: fixed;
	z-index: 999;
	width: 100vw;
}

.loader img {
  width:15%;
  animation-name: fade;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.a-enter-vr {
  display:none !important;
}

/* FOOTER */

.footer {
	width: 100vw;
	height: 50px;
	background: var(--med-grey);
}

.footer ul {
	display: flex;
	width: 100%;
	gap: 5px;
	justify-content: center;
  height:50px;
  align-items:center;
}

.footer li {
	float: left;
	padding: 5px;
}

.footer a {
  color:var(--white);
}

.footer .textInput {
	width: 150px;
	padding: 3px;
	border: none;
	background: var(--grey);
}

.footer a:hover {
  color:var(--secondary);
}



/* HIDE LOCATIONS */
.h18, .h19, .h15 {
  display:none;
}

/* moile max 1024 */
@media screen and (max-width: 1024px) {

  /* loading animation */
  .loader img {
    width:40% !important;
  }
  

  /* mobile nav */
  .rightNav, .creditsNav {
    background: var(--off-white);
    padding:20px;
    float:right;
    position: fixed;
    right:-100vw;
    top:0px;
    width:100vw;
    min-height:100vh;
    height:100vh;
    display:flex;
    flex-flow:column;
    overflow:scroll;
    z-index: 999;
  }

  .rightNav img {
    height: 100%;
  }

  .locations {
    width: 100%;
    margin: auto;
  }

  .map {
    display: flex;
    flex-flow: column;
    text-align: center;
    margin-bottom:60px;
  }

  .bottomNav {
    width: 75vw;
    margin-bottom:70px;
  }

  .modal {
    width: 100vw;
    height: 90vh;
    top:-20px;
  }
}

@media screen and (min-width: 768px) {
  @media screen and (max-width: 1024px) {
    .rightNav a {
      padding: 15px;
      border-radius: var(--round-small);
      color: var(--secondary);
      height: 400px;
      transition: var(--fast);
    }
  }
}