:root {
  --pink: #ff80ff;
  --blue: #001060;
  --plum: #540067;
  --lime: #BFFF66;
  --yellow: #ffffa0;
}

body {
  font-family: "Fredoka", sans-serif;
  background-color: #001060;
  margin: 0;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
}

html, body {
  font-size: 2.7vh;
}

#isDesktop {
  display: none;
}

button {
  border: none;
}

header > a.logo {
  position: absolute;
  z-index: 9;
  left: 50%;
  transform: translateX(-50%);
}

header > a.logo > img {
  height: 40vh;
  animation-name: zoom;
  animation-duration: .5s;
  animation-delay: 1.25s;
  animation-fill-mode: forwards;
}

@keyframes zoom {
  0% {height: 40vh;}
  100% {height: 22vh;}
}

header {
  color: #f0f0ff;
  text-align: center;
  min-height: 15vh;
  background-color: #001060;
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  opacity: 0;
  background-image: linear-gradient(45deg, #000060, #0000ff);
  position: fixed;
  /* z-index: 4; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  padding: 3em 1em 1em 1em;
  font-size: 4vh;
  box-sizing: border-box;
  transition: opacity .5s ease;
  color: white;
}

.nav > a {
  margin-bottom: 0.5em;
  color: inherit;
  text-decoration: none;
}

.open + .nav {
  z-index: 4;
  opacity: 1;
}

#hamburger {
  position: fixed;
  right: 1.5em;
  top: 1.5em;
  width: 1.5em;
  height: 1.25em;
  z-index: 5;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #d3531a;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2),
#hamburger span:nth-child(3) {
  top: 10px;
}

#hamburger span:nth-child(4) {
  top: 20px;
}

#hamburger.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

#hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

section, #footer {
  box-sizing: border-box;
  position: relative;
  padding: 1em;
}

#footer {
  margin-top: 1em;
  width: 100vw;
  left: -5vw;
  position: relative;
}

#app > #footer {
  margin-top: 0;
  left: 0;
  width: 100%;
}

#footer > div {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1em;
}

#footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: .25em;
}

#footer nav > a {
  color: white;
  text-decoration: none;
}

#sitemap {
  padding-left: 0;
  border-left: 0;
  border-top: 1px solid #505050;
  padding-top: 1em;
  margin: 0;
}

#attractions {
  padding: 0 0 1em 0;
}

#attractions h2 {
  color: var(--lime);
}

#awards a {
  color: var(--lime);
}

#home-header {
  padding: 0;
	height: 50vh;
}

#home video {
	height: 100%;
	object-fit: cover;
}

.edge::before,
.edge::after {
  content: "";
  position: absolute;
  display: block;
  height: 10px;
  width: 100%;
  z-index: 1;
}

.edge::before {
  left: 0;
  top: -9px;
}

.edge::after {
  left: 0;
  bottom: -9px;
}

.edge.top::after {
  display: none;
}

#home-header.edge::before {
	left: 0;
	top: 0px;
 }
 
 #home-header.edge::after {
	left: 0;
	bottom: -1px;
 }
 
.pink {
  background: var(--pink);
}

.edge.pink::after,
.edge.pink::before {
  background: var(--pink);
  background: repeating-linear-gradient(
    45deg,
    var(--pink) 0,
    var(--pink) 20px,
    transparent 20px,
    transparent 40px
  );
}

.lime {
  background: var(--lime);
  color: black;
}

.edge.lime::after,
.edge.lime::before {
  background: var(--lime);
  background: repeating-linear-gradient(
    45deg,
    var(--lime) 0,
    var(--lime) 20px,
    transparent 20px,
    transparent 40px
  );
}

.plum {
  background: var(--plum);
  color: white;
}

.edge.plum::after,
.edge.plum::before {
  background: var(--plum);
  background: repeating-linear-gradient(
    45deg,
    var(--plum) 0,
    var(--plum) 20px,
    transparent 20px,
    transparent 40px
  );
}

.blue {
  background: var(--blue);
}

.edge.blue::after,
.edge.blue::before {
  background: var(--blue);
  background: repeating-linear-gradient(
    45deg,
    var(--blue) 0,
    var(--blue) 20px,
    transparent 20px,
    transparent 40px
  );
}

.slideshow {
	overflow: hidden;
	position: relative;
	color: white;
  width: auto;
	height: calc(35vh + 10px);
	background-color: var(--blue);
  overflow: hidden;
}

.slideshow-slider {
  white-space: nowrap;
  position: absolute;
  left: 0;
  transition: left .5s;
}

.slideshow .clickable {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.slideshow-slider > div {
  position: relative;
  display: inline-block;
  aspect-ratio: 4 / 3;
  width: 95vw;
  margin-top: 5vw;
  margin-left: 2.5vw;
  margin-right: 2.5vw;
	height: auto;
	object-fit: cover;
	background-size: cover;
	color: var(--blue);
}

.slideshow-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow h1 {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow:
	-3px 3px 0 white,
	3px 3px 0 white,
	3px -3px 0 white,
	-3px -3px 0 white,
	-2px 2px 0 white,
	2px 2px 0 white,
	2px -2px 0 white,
	-2px -2px 0 white,
	-1px 1px 0 white,
	1px 1px 0 white,
	1px -1px 0 white,
	-1px -1px 0 white
	;
	white-space: nowrap;
}

/* .slideshow a {
  position: absolute;
  bottom: .5em;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
} */

.slideshow button {
  font-size: .8em;
  width: 80%;
  color: white;
  padding: .5em 1em .5em 1em;
  line-height: 1;
  text-align: center;
  border-radius: 1em;
  background-image: linear-gradient(to right top,#7f0096,#930096,#a50495,#b70e94,#c71a93);
  border: 0;
  white-space: nowrap;
  width: 100%;
}

.slideshow + .dots {
  display: flex;
  justify-content: center;
  margin-top: 0;
  position: relative;
  flex-wrap: wrap;
}

.dots > .dot {
  height: 1em;
  width: 1em;
  border-radius: .5em;
  background-color: skyblue;
  margin-top: .25em;
  margin-left: .1em;
  margin-right: .1em;
  position: relative;
}

.dot.active {
  background-color: orange;
}

.dot.paused::before {
  content: '\23F5';
  position: absolute;
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

#about {
  color: white;
  padding: 0em 1em 2em 1em;
}

#about a {
  color: lightgreen;
  text-decoration: none;
}

#about h1 {
  color: lightgreen;
  text-align: center;
}

.first-time {
  background-color: lightgreen;
  color: black;
  text-align: center;
  padding: .5em;
  margin-top: 1em;
  border-radius: .2em;
}

.first-time h2 {
  margin-top: 0;
}

.first-time button {
  font-size: 1.0em;
  width: 80%;
  color: white;
  padding: .5em;
  line-height: 1;
  text-align: center;
  border-radius: 1em;
  background-image: linear-gradient(to right top,#7f0096,#930096,#a50495,#b70e94,#c71a93);
  border: 0;
}

article {
  display: none;
  box-sizing: border-box;
  min-height: calc(100vh - 15vh);
  position: absolute;
  /* top: 15vh; */
  top: 0;
  left: 0;
  width: 100%;
}

article {
  padding: 15vh 5% 0 5%;
}


#first-time-visitor {
  background-color: papayawhip;
  color: black;
}

:target, .pageshow {
  display: block;
}

:target ~ #home {
  display: none;
}

article h1 {
  text-align: center;
  margin-top: 1.5em;
}

#first-time-visitor video {
  margin-left: 5%;
}

.accordion h2, h3 {
  margin: 0;
}

.accordion h3 {
  font-size: 1.0em;
}

#faq h1 {
  color: white;
}

#faq .accordion {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  font-size: 1em;
}

#faq .accordion>* {
  padding: 0;
}

#faq .accordion .tab {
  padding: .5em;
  border-radius: .25em;
  border: 1px solid #000080;
  background-color: #5a5ad6;
  cursor: pointer;
  color: black;
  font-weight: bold;
}

#faq .accordion > :nth-child(6n+1) .tab {
  background-color: #ff5994;
}

#faq .accordion > :nth-child(6n+2) .tab {
  background-color: #ff9668;
}

#faq .accordion > :nth-child(6n+3) .tab {
  background-color: #edff8f;
}

#faq .accordion > :nth-child(6n+4) .tab {
  background-color: #84ff9f;
}

#faq .accordion > :nth-child(6n+5) .tab {
  background-color: #82b6ff;
}

#faq .accordion > :nth-child(6n+0) .tab {
  background-color: #7a7aff;
}

#faq .accordion .tab > * {
  max-height: 0;
  box-sizing: border-box;
  overflow: hidden;
  transition: all .5s;
  display: block;
  background-color: #f0f0ff;
  padding: 0;
  border-radius: .25em;
  color: #404040;
}

#faq .accordion .tab.expanded>* {
  max-height: 3000px;
  padding: 1em;
  margin-top: .5em;
}

#faq .accordion .tab-content {
  padding-bottom: 1em;
  font-size: .8em;
}

#faq .accordion .tab h3:first-of-type {
  margin-top: 0;
}

#address {
  text-align: center;
}

.address-hint {
  font-size: .8em;
  margin-top: .5em;
}

.social-media {
  margin-top: 1em;
  height: 1.5em;
}

#address a {
  margin-left: 1ch;
  margin-right: 1ch;
}

#address > div {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2em;
}

#address table {
  width: 100%;
}

#address td {
  padding: 0 .5em .5em .5em;
  white-space: nowrap;
}
#ticket-booth {
  /* display: flex;
  flex-direction: column; */
  position: relative
}

#ticket-booth img {
  width: 100%;
}

#ticket-booth {
  width: fit-content;
}

#ticket-booth > * {
  margin-bottom: .2em;
}

#ticket-booth > *:nth-child(1) {
  align-self: center;
}

#ticket-booth .signs > * {
  position: absolute;
}

#ticket-booth .signs > *::before {
  content: '';
  position: absolute;
  height: 3px;
  width: 3px;
  line-height: 1;
  border-radius: 50%;
  background-color: black;
  left: 50%;
  top: 5px;
  transform: translate(-50%);
}

#ticket-booth .signs > *:nth-child(1) {
  background-color: lightskyblue;
  /* align-self: flex-start; */
  padding: .5em;
  top: 30%;
  left: 5%;
  transform: rotate(-13deg);
}

#ticket-booth .signs >*:nth-child(2) {
  background-color: palegreen;
  /* align-self: flex-end; */
  padding: .5em;
  top: 45%;
  right: 5%;
  transform: rotate(5deg);
}

#ticket-booth .signs > *:nth-child(3) {
  background-color: lightcoral;
  /* align-self: flex-start; */
  padding: .5em;
  top: 60%;
  left: 5%;
  transform: rotate(-4deg);
}

#ticket-booth .signs > *:nth-child(4) {
  background-color: lightblue;
  /* align-self: flex-end; */
  padding: .5em;
  top: 75%;
  right: 5%;
  transform: rotate(2deg);
}

#awards {
  /* display: flex;
  flex-direction: column; */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

#awards img {
  width: 7vh;
  height: 7vh;
  object-fit: contain;
  margin-right: 2ch;
}

#awards figure {
  display: grid;
  grid-template-columns: max-content auto;
  margin-top: 0;
}

footer {
  font-size: .8em;
  text-align: center;
  margin-top: 1em;
}

#prices {
  background-color: white;
  color: black;
}

#prices a {
  color: blue;
}

#prices > p {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: 1.2em;
  text-align: center;
}

#prices h1 {
  font-size: 1.25rem;
}

table {
  font-size: 1rem;
}

.pass {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  grid-gap: .2em;
  padding: .5em;
  font-weight: bold;
  color: white;
}

.passage {
  grid-column: 1 / span 2;
  font-size: .8em;
  font-weight: normal;
}

.pass:nth-child(6n+1) {
  background-color: #f8246e;
}

.pass:nth-child(6n+2) {
  background-color: #814ef8;
}

.pass:nth-child(6n+3) {
  background-color: #23ad1f;
}

.pass:nth-child(6n+4) {
  background-color: #cc6816;
}

.pass:nth-child(6n+5) {
  background-color: #3780e7;
}

.pass:nth-child(6n+0) {
  background-color: #20c00b;
}

#prices {
  text-align: center;
  background-color: var(--yellow);
}

#prices .rules {
  padding: 1em;
  background-color: darkviolet;
  color: #f0f0f0;
  border-radius: 1em;
  box-shadow: .25em .25em .25em #303030;
  text-align: left;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

#prices .rules li {
  padding-bottom: .2em;
}

#prices button {
  font-size: 1.2em;
  border-radius: 1em;
  padding: .5em 2em .5em 2em;
  background-image: linear-gradient(45deg, #5050ff, #8080ff);
  color: white;
}

.included, .unincluded {
  font-weight: bold;
  padding: 0 .5em;
}

#about-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1ch;
  background-color: chocolate;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background-image: url("images/wood2.jpg");
  background-repeat: repeat;
  text-align: center;
  margin-top: 1em;
  text-shadow: .2em .2em .2em #303030;
  font-weight: bold;
  padding: 1ch;
  box-sizing: border-box;
  font-size: .7rem;
}

#about-boxes a {
  text-decoration: none;
  color: white;
}

#about-boxes h3 {
  color: greenyellow;
}

#about-boxes > * {
  background-color: black;
  color: white;
  padding: 1ch;
  border-radius: .5em;
  position: relative;
}

#about-boxes figure {
  margin: 0;
}

#about-boxes img {
  position: absolute;
  bottom: -2ch;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#about-boxes > *:first-child img {
  height: 75%;
}

#about-boxes figcaption {
  position: relative;
  z-index: 2;
}

/* ----------------------------*/
/*             Ticket          */
/* ----------------------------*/
.ticket {
  background: #333;
  width: 90vw;
  height: 45vw;
  position: relative;
  margin-bottom: 1em;
  border-left: 3px dotted var(--yellow);
  border-right: 3px dotted var(--yellow);
  margin-top: -.5em;
  box-shadow: .25em .25em .25em #303030; 
}

.ticket:first-child {
  margin-top: 2em;
}

.corner1, .corner2, .corner3, .corner4 {
  background-color: var(--yellow);
  height: 2em;
  width: 2em;
  position: absolute;
  border-radius: 1em;
  z-index: 2;
}

.corner1 {
  top: -1em;
  left: -1em;
}

.corner2 {
  top: -1em;
  right: -1em;
}

.corner3 {
  bottom: -1em;
  left: -1em;
}

.corner4 {
  bottom: -1em;
  right: -1em;
}

.ticket .title {
  border-radius: 20px;
  border: 3px solid #aaa;
  color: #fff;
  display: inline-block;
  font-size: 1em;
  left: 0;
  left: 50%;
  padding: .1em 1em;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%,-50%);
  min-width: 60%;
}

.ticket .ages {
  color: var(--yellow);
  display: inline-block;
  font-size: 1.2em;
  font-weight: bold;
  left: 50%;
  padding: .5em 0;
  width: 100%;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  border-bottom: 1px dashed darkgrey
}

.ticket .admit {
  color: var(--yellow);
  display: inline-block;
  font-size: .6em;
  left: 50%;
  padding: .5em 0;
  width: 100%;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  border-top: 1px dashed darkgrey
}

.ticket:nth-child(6n+1) {
  background-color: #ff000d;
}

.ticket:nth-child(6n+2) {
  background-color: #ffa800;
}

.ticket:nth-child(6n+2) .ages, .ticket:nth-child(6n+2) .admit {
  color: #ff000d;
}

.ticket:nth-child(6n+3) {
  background-color: #10e858;
}

.ticket:nth-child(6n+3) .ages, .ticket:nth-child(6n+3) .admit {
  color: blueviolet;
}

.ticket:nth-child(6n+4) {
  background-color: #a54399;
}

.ticket:nth-child(6n+4) .ages, .ticket:nth-child(6n+4) .admit {
  color: greenyellow;
}

.ticket:nth-child(even) {
  transform: rotate(5deg);
}

.ticket:nth-child(odd) {
  transform: rotate(-5deg);
}

#play {
  background-color: #8080ff;
  background-image: url("images/BLUE SKY and CLOUDS.png");
  background-size: 100vw auto;
  background-position-x: 100vw;
  /* background-attachment: fixed; */
  background-repeat: repeat;
  animation: drift 90s linear 0s infinite;
}

@keyframes drift {
  0% {
    background-position-x: 100vw;
  }

  100% {
    background-position-x: 0vw;
  }
}

#play h1, #play p {
  text-shadow: 2px 2px 2px #f0f0f0;
}

#play a {
  color: red;
}

#play .photos {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin-left: 5%;
}

#play .photos figure {
  background-color: white;
  padding: 1em;
  margin: -.5em 0 0 0;
  box-shadow: 0px 0px .25em black
  ;
}

#play .photos img {
  width: 100%;
}

#play .photos figcaption {
  text-align: center;
  /* font-family: "Shadows Into Light", cursive; */
  font-family: "Fredoka", sans-serif;
}

#play .photos figure:even {
  align-self: flex-start;
}

#play .photos figure:odd {
  align-self: flex-end;
}

#play .photos figure:first-child {
  margin-top: 1em !important;
}

#play .photos > figure:nth-child(4n+1) {
  transform: rotate(-3deg);
}

#play .photos > figure:nth-child(4n+2) {
  transform: rotate(7deg);
}

#play .photos > figure:nth-child(4n+3) {
  transform: rotate(-1deg);
}

#play .photos > figure:nth-child(4n+0) {
  transform: rotate(5deg);
}

#menu {
  background-color: #bcf5b6;
}

#menu img {
  width: 90%;
  margin-left: 5%;
}

#jobs {
  background-color: turquoise;
}

#jobs a {
  color: mediumvioletred;
}

#awards-page {
  background-color: white;
}

#membership {
  background-color: lightpink;
}

#membership h3 {
  color: deeppink;
}

#membership p {
  text-align: center;
}

#membership button {
  font-size: 1.2em;
  border-radius: 1em;
  padding: .5em 2em .5em 2em;
  background-image: linear-gradient(45deg, #5050ff, #8080ff);
  color: white;
}

#parties {
  background-color: white;
}

#parties h3 {
  color: #00c12a;
  text-align: center;
}

#parties button {
  font-size: 1.2em;
  border-radius: 1em;
  padding: .5em 2em .5em 2em;
  background-image: linear-gradient(45deg, #5050ff, #8080ff);
  color: white;
}

#parties p {
  text-align: center;
}

#awards-page img {
  object-fit: contain;
}

.fadeshow {
  width: 100%;
  padding-top: 100%;
  margin-left: 0;
  position: relative;
}

.fadeshow > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  transition: opacity .5s;
}

.fadeshow > img.show {
  opacity: 1;
}

#announcements {
  position: fixed;
  width: 90%;
  box-sizing: border-box;
  left: 50%;
  top: 5%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateX(-50%);
  opacity: 0;
  transition: all .5s ease;
  background-color: darkslateblue;
  color: #f0f0ff;
  padding: 1em;
  border: 3px groove blueviolet;
  border-radius: .5em;
  z-index: 11;
  font-size: 12pt;
  z-index: 10;
}

#announcements.show {
  display: block;
  animation: show-announcements .5s ease 0s forwards;
}

/* #announcements {
  background-image: url("images/valentines-day-6-.webp");
  background-size: cover;
	text-shadow:
	-3px 3px 0 white,
	3px 3px 0 white,
	3px -3px 0 white,
	-3px -3px 0 white,
	-2px 2px 0 white,
	2px 2px 0 white,
	2px -2px 0 white,
	-2px -2px 0 white,
	-1px 1px 0 white,
	1px 1px 0 white,
	1px -1px 0 white,
	-1px -1px 0 white
	;
  min-height: 50vh;
  color: black;
} */

#announcements > .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: .25em;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  text-align: center;
  text-shadow: 1px 1px 1px #303030;
  background-color: red;
  border: 3px groove darkred;
  line-height: 1;
  cursor: pointer;
}

#announcements h1 {
  margin-top: 0;
  font-size: 1.3em;
}

@keyframes show-announcements {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#announcements.hide, #announcements.hide + #blocker {
  display: none;
}

#announcements.show + #blocker {
  display: block;
}

#blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color:rgba(0, 0, 0, 0.7);
  z-index: 8;
}

.box {
  margin-top: 1em;
  margin-bottom: 1em;
  background-color: skyblue;
  border-radius: .5em;
  box-shadow: .25em .25em .25em #303030;
  padding: 1em;
}
