:root {
  --font-main: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-grey-faint: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: url('/assets/images/transparent-cursor.png') 0 0, none !important;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  cursor: url('/assets/images/transparent-cursor.png') 0 0, none !important;
}

a, button, .clickable, iframe {
  cursor: url('/assets/images/transparent-cursor.png') 0 0, none !important;
}

body {
  background: var(--color-white);
  color: var(--color-black);
}

img.illustration {
  mix-blend-mode: multiply;
  display: block;
}

#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  pointer-events: none;
  z-index: 9999;
  background-image: url('../assets/images/CURSOR%20MAIN%20(FINAL).png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(0, 0);
}

/* HOME PAGE */

#hero {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#logo-wrap {
  position: absolute;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  width: 16vw;
  max-width: 260px;
}

#logo {
  width: 100%;
  height: auto;
}

#figures {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 3vw;
  width: 100%;
  padding: 0 18vw;
  flex-shrink: 1;
  min-height: 0;
}

.figure-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 240px;
  min-width: 0;
}

.figure-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

.figure-img {
  width: 100%;
  height: auto;
  max-height: 48vh;
  object-fit: contain;
}

.nav-number {
  width: 30%;
  height: 6vh;
  margin-top: 0;
  object-fit: contain;
}

#scroll-hint {
  position: absolute;
  bottom: 2vh;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-grey-faint);
  font-size: 10px;
  letter-spacing: 0.25em;
  white-space: nowrap;
}

#signup {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 15vw;
}

/* BACK-HOME LINK (Tour + Music pages) */

#back-home {
  position: fixed;
  top: 24px;
  left: 28px;
  z-index: 100;
  display: block;
  width: 120px;
}

#back-home img {
  width: 100%;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
}

#back-home:hover img {
  opacity: 1;
}

/* TOUR PAGE */

#tour-page {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 5vh 40px 80px;
}

#tour-header {
  display: flex;
  justify-content: center;
  margin-bottom: 4vh;
}

.page-icon {
  width: auto;
  max-width: none;
  height: 18vh;
}

#tour-dates {
  width: 100%;
  max-width: 860px;
}

#seated-55fdf2c0,
#seated-55fdf2c0 * {
  font-family: var(--font-main) !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* MUSIC PAGE */

#music-page {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#music-header {
  position: absolute;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
}

#music-header .page-icon {
  width: auto;
  max-width: none;
  height: 18vh;
}

#music-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
  width: 100%;
  padding: 0 18vw;
  align-items: start;
  margin-top: 8vh;
}

.music-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.music-link-item:hover {
  opacity: 0.7;
}

.music-link-img {
  width: 100%;
  height: auto;
  max-height: 42vh;
  object-fit: contain;
  display: block;
}

.music-link-item:first-child .music-link-img {
  max-height: 46vh;
}

.music-link-item:first-child {
  margin-top: -3vh;
}

/* TOUCH DEVICES — disable custom cursor */

@media (pointer: coarse) {
  * { cursor: auto !important; }
  #cursor { display: none; }
}

/* TABLET */

@media (max-width: 768px) {
  #logo-wrap { width: 30vw; }
  #figures { padding: 0 8vw; gap: 4vw; }
  .figure-img { max-height: 40vh; }
  .nav-number { height: 5vh; }

  #back-home { width: 90px; top: 16px; left: 16px; }

  #tour-page { padding: 4vh 24px 60px; }
  .page-icon { height: 14vh; }

  #music-header .page-icon { height: 14vh; }
  #music-links { padding: 0 8vw; gap: 4vw; margin-top: 4vh; }
  .music-link-img { max-height: 35vh; }

  #signup { padding: 60px 8vw; }
}

/* PHONE */

@media (max-width: 480px) {
  #hero {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding: 12vh 0 8vh;
  }
  #logo-wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 50vw;
    margin: 0 auto 4vh;
  }
  #figures {
    flex-direction: column;
    align-items: center;
    padding: 0 10vw;
    gap: 4vh;
  }
  .figure-item { max-width: 200px; }
  .figure-img { max-height: 30vh; }
  .nav-number { height: 4vh; }
  #scroll-hint {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    text-align: center;
    margin-top: 3vh;
  }

  #back-home { width: 70px; top: 12px; left: 12px; }

  #tour-page { padding: 3vh 16px 40px; }
  .page-icon { height: 80px; }
  #tour-dates { max-width: 100%; }

  #music-page {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding: 12vh 0 8vh;
  }
  #music-header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    justify-content: center;
    margin-bottom: 4vh;
  }
  #music-header .page-icon { height: 80px; }
  #music-links {
    grid-template-columns: 1fr;
    gap: 4vh;
    padding: 0 15vw;
    margin-top: 0;
  }
  .music-link-img { max-height: 30vh; }

  #signup { padding: 40px 5vw; }
}
