@charset "UTF-8";

:root {
  --navy: #06071c;
  --purple: #5e348d;
  --pink: #ee4d9b;
  --yellow: #ffe84d;
  --light-yellow: #fff697;
  --orange: #fdc964;
  --red: #f15652;
  --dark-blue: #184e6a;
  --light-blue: #dfe7f9;
  --white: #fff;

  --font-header: "sui-generis", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "ashemore", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
  background-color: var(--navy);
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background-color: var(--navy);
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--white);
}

.hero {
  --hero-art: clamp(110px, min(24vw, (100vw - 532px) / 2), 300px);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(
    #4b225e,
    #df1f73 30%,
    var(--orange) 70%,
    #fff797
  );
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  padding: 3rem 0;
  display: flex;
}

.hero__bg {
  position: absolute;
  bottom: 0;
  width: var(--hero-art);
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero picture {
  display: contents;
}

.hero__bg--left {
  left: 0;
}

.hero__bg--right {
  right: 0;
}

@media screen and (min-width: 1400px) {
  .hero {
    --hero-art: clamp(300px, (100vw - 800px) / 2, 500px);
    padding-left: var(--hero-art);
    padding-right: var(--hero-art);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
}

.lineup {
  width: min(500px, 100% - 2rem);
  height: auto;
}

body,
html {
  cursor: url("../images/cursor-arrow.png") 4 0, auto;
}

button,
a,
[role="button"],
input[type="button"],
input[type="submit"],
label {
  cursor: url("../images/cursor-hand.png") 4 0, pointer;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
  border: 0;
}

.page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#logo {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

#logo img {
  width: min(400px, 80vw);
  height: auto;
}

.venue-button-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
}

.date-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 0.5rem;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 0 1rem;
}

.city-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  flex: 1 1 0;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  max-width: 380px;
  display: flex;
}

.date-svg-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.date-svg {
  width: auto;
  height: 4rem;
  max-width: 100%;
}

.venue-button {
  background-color: var(--light-blue);
  background-image: linear-gradient(
    90deg,
    #699ebd,
    var(--light-blue) 30%,
    var(--light-blue) 70%,
    #699ebd
  );
  color: var(--navy);
  font-family: var(--font-header);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  border: 0;
  border-radius: 1000px;
  padding: 0.8rem 2.5rem;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.city-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  border-radius: 6px;
}

.city-link:hover,
.city-link:focus-visible {
  z-index: 2;
}

@property --glow-deg {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.venue-button {
  position: relative;
  z-index: 0;
  isolation: isolate;
  --border-width: 2px;
  --glow-size: 0.6rem;
  --glow-intensity: 0.3;
}

.venue-button::before,
.venue-button::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  background: conic-gradient(
    from var(--glow-deg),
    #dfe7f9 0deg,
    #dfe7f9 50deg,
    #699ebd 120deg,
    #0e3247 180deg,
    #699ebd 240deg,
    #dfe7f9 310deg,
    #dfe7f9 360deg
  );
  animation: glow 10s infinite linear;
  pointer-events: none;
}

.venue-button::before {
  inset: 0;
  padding: var(--border-width, 2px);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.venue-button::after {
  inset: calc(-1 * var(--glow-size, 0.6rem));
  filter: blur(var(--glow-size, 0.6rem));
  opacity: var(--glow-intensity, 0.3);
  z-index: -2;
}

@keyframes glow {
  100% {
    --glow-deg: 360deg;
  }
}

.venue-button:hover,
.venue-button:focus-visible,
.city-link:hover .venue-button,
.city-link:focus-visible .venue-button {
  transform: scale(1.1);
  text-decoration: none;
}

.city-link .date-svg {
  transition: transform 0.2s;
}

.city-link:hover .date-svg,
.city-link:focus-visible .date-svg {
  transform: translateY(-2px);
}

.glow-button {
  border: 3px solid var(--yellow);
  background-color: var(--light-blue);
  background-image: linear-gradient(180deg, var(--pink), var(--yellow));
  box-shadow: 0 0 11px 1px var(--pink);
  font-family: var(--font-header);
  color: var(--navy);
  text-transform: uppercase;
  border-radius: 1000px;
  padding: 0.8rem 2.5rem;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1em;
  letter-spacing: 0.02em;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glow-button:hover,
.glow-button:focus-visible {
  transform: scale(1.1);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

#event-info-btn-cont {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
  width: 100%;
  margin-top: auto;
  margin-bottom: 40px;
}

#event-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.steel-section-stroke {
  background-image: linear-gradient(
    90deg,
    var(--navy),
    #174d6b 30%,
    var(--white) 50%,
    #174d6b 70%,
    var(--navy)
  );
  padding-top: 4px;
  padding-bottom: 4px;
  width: 100%;
}

.countdown-section {
  background-image: linear-gradient(
    138deg,
    var(--dark-blue),
    var(--navy) 25%,
    var(--navy) 75%,
    var(--dark-blue)
  );
  padding: 2.25rem 1rem;
}

.timer-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.timer-title {
  margin: 0;
  max-width: 580px;
  color: var(--white);
  font-family: var(--font-header);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1em;
  text-align: center;
}

.timer-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: stretch;
  display: flex;
  flex-wrap: nowrap;
}

.gradient-wrap {
  background-image: linear-gradient(
    317deg,
    var(--white),
    var(--yellow) 15%,
    var(--pink) 28%,
    var(--purple) 48%,
    var(--pink) 66%,
    var(--yellow) 85%,
    var(--white)
  );
  box-shadow: 0 0 15px -5px var(--pink);
  border-radius: 19px;
  padding: 5px;
}

.time-block {
  aspect-ratio: 1;
  background-color: var(--pink);
  background-image: linear-gradient(
    180deg,
    #4b225e,
    #df1f73 30%,
    var(--orange) 70%,
    var(--light-yellow)
  );
  width: 170px;
  height: 170px;
  box-shadow: 0 0 10px 1px var(--pink);
  border-radius: 15px;
  grid-row-gap: 0.6rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.number {
  color: var(--white);
  margin: 0;
  font-family: var(--font-header);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 0.8em;
  font-variant-numeric: tabular-nums;
}

.identifier {
  color: var(--navy);
  font-family: var(--font-body);
  text-transform: uppercase;
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  line-height: 1em;
  text-align: center;
}

.timer-message {
  margin: 0;
  color: var(--yellow);
  font-family: var(--font-header);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.timer-message[hidden] {
  display: none;
}

.site-footer {
  background-color: #000;
  padding: 2rem 30px;
  position: relative;
  width: 100%;
}

.footer-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: var(--white);
  font-family: var(--font-header);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 900;
}

.social-blocks {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-blocks a {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
  transition: color 0.2s, transform 0.2s;
}

.social-blocks a:hover,
.social-blocks a:focus-visible {
  color: var(--pink);
  transform: translateY(-2px);
}

.social-blocks svg {
  width: 26px;
  height: 26px;
  display: block;
}

@media screen and (max-width: 992px) {
  .footer-bottom {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
  }
  .date-wrapper {
    grid-column-gap: 1rem;
    padding: 7px;
  }
  .date-svg {
    height: 3.5rem;
  }
  .venue-button {
    font-size: 1rem;
    padding: 0.7rem 1.75rem;
  }
  #logo img {
    width: min(300px, 80vw);
  }
  .timer-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column-gap: clamp(0.5rem, 1.5vw, 1rem);
    justify-items: stretch;
    width: 100%;
    max-width: 768px;
  }
  .time-block {
    width: 100%;
    height: auto;
    padding: clamp(0.4rem, 1.5vw, 1rem);
  }
  .number {
    font-size: clamp(1.6rem, 7.4vw, 3.5rem);
  }
  .identifier {
    font-size: clamp(0.8rem, 3.3vw, 25px);
  }
}

@media (min-width: 768px) {
  .date-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    padding-bottom: calc(var(--hero-art) * 1.81);
  }
  .date-wrapper {
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    width: auto;
    display: grid;
  }
}

@media screen and (max-width: 769px) {
  #logo img {
    width: min(300px, 80vw);
  }
  .venue-button {
    font-size: 1rem;
    padding: 0.7rem 2rem;
  }
  .glow-button {
    font-size: 1rem;
    padding: 0.7rem 2rem;
  }
  #event-info {
    gap: 1rem;
  }
  .timer-title {
    font-size: 1.5rem;
    line-height: 1.5rem;
    max-width: 320px;
  }
  .number {
    -webkit-text-stroke-width: 1px;
  }
}

@media screen and (max-width: 575px) {
  header {
    padding: 10px;
  }
  #logo {
    padding: 0;
  }
  #logo img {
    width: min(280px, 82vw);
  }
}

@media screen and (max-width: 479px) {
  .date-wrapper {
    width: 100%;
  }
  .timer-wrap {
    grid-column-gap: 0.5rem;
    max-width: 420px;
  }
  .gradient-wrap {
    border-radius: 10%;
    padding: 4px;
  }
  .time-block {
    border-radius: 9%;
    grid-row-gap: 0.3rem;
    padding: 0.4rem;
  }
  .number {
    font-size: clamp(1rem, 5vw, 1.6rem);
  }
  .identifier {
    font-size: clamp(0.6rem, 2.4vw, 0.8rem);
  }
  .timer-title {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
  .countdown-section {
    padding: 1.75rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
  .venue-button:hover,
  .venue-button:focus-visible,
  .city-link:hover .venue-button,
  .city-link:focus-visible .venue-button {
    transform: none;
  }
  .city-link:hover .date-svg,
  .city-link:focus-visible .date-svg {
    transform: none;
  }
  .social-blocks a:hover,
  .social-blocks a:focus-visible {
    transform: none;
  }
  .glow-button:hover,
  .glow-button:focus-visible {
    transform: none;
  }
  .venue-button::before,
  .venue-button::after {
    animation: none !important;
  }
}
