::-webkit-scrollbar-track {
  background: var(--red);
}

#hero {
  position: relative;
  width: 100%;
  height: 200vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
    min-height: 150vw;
  }
}
#hero .background {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0px;
  left: 0px;
}
#hero .background.mobile {
  display: none;
}
@media (max-width: 768px) {
  #hero .background.desktop {
    display: none;
  }
  #hero .background.mobile {
    display: block;
  }
}
#hero .logo-container {
  width: calc(100% - var(--s) * 2);
  max-width: 1300px;
  height: auto;
  position: relative;
  z-index: 3;
  top: calc(var(--m) + 66px);
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #hero .logo-container {
    top: calc(var(--s) + 66px);
  }
}
@media (max-width: 450px) {
  #hero .logo-container {
    top: calc(var(--s) + 76px);
  }
}
#hero .logo-container .logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
#hero .logo-container .title {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28%;
  transform: translateX(-50%);
  font-family: "Mafia Witch", serif;
  font-size: min(6vw, 80px);
  color: var(--red);
  text-transform: uppercase;
  line-height: 1em;
  text-align: center;
  letter-spacing: -0.075em;
}

#tour-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--red);
  padding: var(--l) var(--s);
}
#tour-section:has(> .no-content) {
  min-height: 25vh;
}
#tour-section .no-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  width: max-content;
  height: max-content;
}
#tour-section .no-content h1, #tour-section .no-content p {
  width: 100%;
  text-align: center;
  color: var(--beige);
  font-family: "garamond-premier-pro", serif;
  font-weight: 200;
}
#tour-section .no-content h1 {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
#tour-section .no-content p {
  font-size: 25px;
  text-transform: math-auto;
}
@media (max-width: 768px) {
  #tour-section .no-content h1 {
    font-size: 26px;
  }
  #tour-section .no-content p {
    font-size: 16px;
  }
}
#tour-section .tour-date {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto var(--l);
  display: grid;
  grid-template-columns: 200px 240px 1fr 125px;
}
#tour-section .tour-date:last-of-type {
  margin-bottom: 0px !important;
}
#tour-section .tour-date .date,
#tour-section .tour-date .city,
#tour-section .tour-date .venue,
#tour-section .tour-date .link {
  font-size: 26px;
  color: var(--beige);
  font-family: "garamond-premier-pro", serif;
  line-height: 1em;
}
#tour-section .tour-date .date {
  font-weight: 600;
  text-transform: capitalize;
}
#tour-section .tour-date .city {
  font-weight: 400;
  text-transform: capitalize;
}
#tour-section .tour-date .venue {
  font-weight: 400;
  text-transform: capitalize;
}
#tour-section .tour-date .link {
  width: max-content;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  color: var(--beige) !important;
}
#tour-section .tour-date .link::after {
  background-color: var(--beige) !important;
}
@media (max-width: 900px) {
  #tour-section .tour-date {
    grid-template-columns: 60px 100px 1fr 85px;
    max-width: 500px;
  }
  #tour-section .tour-date .date,
  #tour-section .tour-date .city,
  #tour-section .tour-date .venue,
  #tour-section .tour-date .link {
    font-size: 20px;
  }
}
@media (max-width: 570px) {
  #tour-section .tour-date {
    grid-template-columns: 1fr;
  }
  #tour-section .tour-date .date,
  #tour-section .tour-date .city,
  #tour-section .tour-date .venue,
  #tour-section .tour-date .link {
    text-align: center;
    margin: auto;
  }
}

#pre-order {
  width: 100%;
  height: auto;
  padding: var(--l) var(--s);
  background-color: var(--beige);
}
#pre-order h1 {
  width: 100%;
  font-family: "Mafia Witch", serif;
  font-size: 60px;
  color: var(--red);
  text-transform: uppercase;
  line-height: 1em;
  text-align: center;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin-bottom: 0.4em;
}
#pre-order h1 span {
  display: block;
  font-family: "garamond-premier-pro", serif;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: -0.05em;
}
#pre-order p {
  width: 100%;
  max-width: 24em;
  font-family: "garamond-premier-pro", serif;
  font-size: 27px;
  color: var(--red);
  line-height: 1.5em;
  text-align: center;
  text-transform: lowercase;
  text-transform: math-auto;
  letter-spacing: -0.025em;
  margin: 0px auto 1em;
}
#pre-order a {
  display: block;
  width: 300px;
  height: auto;
  margin: auto;
}
#pre-order a img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.3s;
}
#pre-order a:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  #pre-order h1 {
    font-size: 40px;
  }
  #pre-order h1 span {
    font-size: 20px;
  }
  #pre-order p {
    font-size: 18px;
  }
  #pre-order a {
    width: 150px;
  }
}

#sign-up-section {
  width: 100%;
  height: auto;
  padding: var(--l) var(--s);
  background-color: var(--beige);
  display: grid;
  place-items: center;
}
#sign-up-section #sign-up {
  opacity: 0;
  pointer-events: none;
}/*# sourceMappingURL=tour.css.map */