/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 50px;
  /* Location of the box */
  left: 50%;
  top: 50%;
  width: 95vw;
  /* Full width */
  height: 95vh;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
  max-width: 100vw;
  max-height: 100vh;
  transform: translate(-50%, -50%);
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 95%;
  max-width: 900px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 4rem 0;
  height: fit-content;
}

/* Add Animation */
.modal-content, #caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: black;
}

ul {
  list-style-type: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 1rem 2rem;
}
nav div {
  display: flex;
  align-items: center;
}
nav div img {
  height: 8rem;
  margin-right: 1rem;
}
nav div .nav-Name {
  font-size: 3rem;
  font-weight: 500;
  color: #cea521;
}
nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav ul li {
  margin-left: 2rem;
  color: white;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background-color: rgba(26, 25, 25, 0.733);
}
nav ul li a {
  color: white;
  text-transform: uppercase;
}
nav ul li:hover {
  cursor: pointer;
  background-color: rgba(206, 166, 33, 0.616);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 4px 12px;
}

.navMobile {
  display: none;
}

.heroWrapper {
  background-image: url("../assets/images/hero.jpg");
  background-color: rgba(0, 0, 0, 0.65);
  background-blend-mode: multiply;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}
.heroWrapper main {
  padding: 0 3rem;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  margin-top: 15vh;
}
.heroWrapper main * {
  text-align: center;
  color: white;
}
.heroWrapper main h1 {
  padding-top: 5rem;
  margin: 0;
  font-size: 10rem;
}
.heroWrapper main p {
  font-size: 2.5rem;
  margin-top: 2rem;
  width: fit-content;
  text-align: center;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
  padding: 0 0.5rem;
}
.heroWrapper main a {
  background: white;
  padding: 1rem 3rem;
  border-radius: 1rem;
  width: fit-content;
  align-self: center;
  margin-top: 4rem;
  color: #141414;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 2rem;
}
.heroWrapper main a:hover {
  background-color: #cea521;
  color: white;
}

.gallery {
  border-bottom: thin rgba(175, 175, 175, 0.705) solid;
  padding-bottom: 2rem;
  margin: 0 1rem;
}
.gallery p {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 3rem;
}
.gallery ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.gallery ul li {
  width: 25%;
  padding: 1rem;
}
.gallery ul li img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.merchandise {
  margin: 0 2rem;
}
.merchandise p {
  text-align: center;
  margin-bottom: 2rem;
}
.merchandise ul {
  display: flex;
  justify-content: space-around;
  flex-flow: row wrap;
}
.merchandise ul li {
  display: flex;
  justify-content: flex-start;
  width: 40%;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: thin gray solid;
}
.merchandise ul li div {
  margin: 0 2rem;
  border-radius: 2rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  padding: 0 0;
  width: 100%;
}
.merchandise ul li div h4 {
  font-size: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}
.merchandise ul li div span {
  font-size: 2rem;
}
.merchandise ul li img {
  width: 100%;
  background-size: cover;
  border-radius: 2rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  background-size: contain;
}

.about {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.about p {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}
.about img {
  background-size: cover;
  width: 100%;
  max-width: 1000px;
  margin: 1rem 2.5vw;
  text-align: center;
  border-radius: 2rem;
}
.about ul {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
.about ul li {
  max-width: 1000px;
  display: flex;
  padding: 2rem 0;
  border-bottom: thin gray solid;
}
.about ul li section {
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
  align-items: flex-start;
  padding-left: 2rem;
  width: 40%;
}
.about ul li section img {
  width: 50%;
  background-image: cover;
  margin: 0;
  padding: 0;
  border-radius: 50rem;
  align-self: center;
  margin-bottom: 2rem;
  border-radius: 2rem;
}
.about ul li section h4 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  align-self: center;
  text-align: center;
}
.about ul li section p {
  text-align: center;
  padding-left: 2rem;
}
.about ul li section a {
  border: thin silver solid;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background-color: #bb9824;
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  align-self: center;
}
.about ul li img {
  width: 60%;
  background-size: contain;
}

.events {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.events li {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  overflow: auto;
  border-bottom: thin gray solid;
  padding: 4rem 0;
}
.events li div {
  padding: 0 2rem;
  width: 50%;
}
.events li div span {
  font-weight: 600;
}
.events li div img {
  width: 100%;
  background-size: cover;
  padding-top: 2rem;
  align-self: flex-end;
}
.events li h4 {
  margin-bottom: 2rem;
  border-bottom: thin gray solid;
  font-size: 2.5rem;
}
.events li iframe {
  width: 50%;
  align-self: flex-end;
}

.contact {
  text-align: center;
  padding-bottom: 10rem;
}
.contact p {
  margin-bottom: 4rem;
  padding: 0 2rem;
}
.contact a {
  border-radius: 1rem;
  padding: 1rem 2rem;
  background-color: #bb9824;
  margin: 2rem 2rem;
  color: white;
  font-weight: 400;
  text-transform: uppercase;
}
.contact .contactButtons {
  display: flex;
  justify-content: space-around;
  max-width: 700px;
  align-items: center;
  flex-flow: row wrap;
  margin: 0 auto;
}
.contact a:first-of-type {
  background-color: rgba(145, 66, 42, 0.719);
}
.contact a:nth-of-type(2) {
  background-color: rgba(76, 156, 69, 0.795);
}
.contact a:last-of-type {
  background-color: rgba(91, 81, 189, 0.692);
}

h2 {
  font-size: 4rem;
  font-weight: 300;
  text-align: center;
  padding: 2rem 0;
}

@media (min-width: 1100px) {
  .merchandise ul li {
    display: flex;
    justify-content: flex-start;
    width: 40%;
  }
}
@media (max-width: 950px) {
  .heroWrapper main {
    margin-top: 8rem;
  }
  .heroWrapper main h1 {
    padding-top: 25vh;
  }

  .navMobile {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    height: 8rem;
    width: 100%;
    background-color: black;
  }
  .navMobile div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    padding: 0 3rem;
  }
  .navMobile div i {
    color: white;
  }
  .navMobile div img {
    height: 6rem;
  }
  .navMobile ul {
    display: none;
  }
  .navMobile ul li {
    margin: 1rem 0;
    border: none;
    text-align: center;
    font-size: 2.2rem;
    text-transform: uppercase;
  }

  .merchandise ul li {
    display: flex;
    justify-content: flex-start;
    width: 75%;
  }
  .merchandise ul li img {
    width: 50%;
    max-height: 200px;
    max-width: 200px;
  }

  .navDesktop {
    display: none;
  }

  .gallery ul li {
    width: 50%;
  }

  .events ul li {
    flex-flow: row wrap;
  }
  .events ul li > * {
    width: 100%;
  }
  .events ul li iframe {
    border-radius: 2rem;
    margin: 1rem 2rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }

  .about ul li {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
  .about ul li section {
    width: 100%;
  }
  .about ul li section img {
    max-width: 200px;
    border-radius: 50rem;
  }
}
@media (max-width: 500px) {
  .merchandise > p {
    font-size: 2rem;
    padding-bottom: 2rem;
    border-bottom: thin gray solid;
  }
  .merchandise ul li {
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .merchandise ul li img {
    width: 100%;
    order: 1;
  }
  .merchandise ul li div {
    width: 100%;
  }
  .merchandise ul li div h4 {
    margin: 0;
  }
  .merchandise ul li div span {
    font-weight: 600;
    margin: 1rem 0;
    color: #aa433c;
  }
}

/*# sourceMappingURL=style.css.map */
