/*────────────────────────────────────────
  RESET & BASE
────────────────────────────────────────*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: var(--primary-copy-font);
  font-weight: var(--bold-font);
  color: #fff;
  overflow-x: clip;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

main {
  margin: 0;
  min-width: 0;
}

/*────────────────────────────────────────
  ROOT VARIABLES
────────────────────────────────────────*/
:root {
  --primary-light: #ff0;
  --primary-dark: #373737;
  --text-light: #fff;
  --bg-dark: #333;
  --radius: 10px;
  --shadow: rgba(0, 0, 0, 0.1);
  --primary-font: "ebony", sans-serif;
  --primary-copy-font:  "input-sans", sans-serif;
  --bold-font: 400;
  --semi-bold-font: 400;
  --heavy-font: 700;
  --ultra-black-font: 900;
}

/*────────────────────────────────────────
  HEADER / NAVBAR
────────────────────────────────────────*/
header {
  width: 100%;
  background: var(--bg-dark);
  padding: 0 20px;
  z-index: 1000;
  position: relative;
}

.menu {
  display: none;
}

.navbar {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

/* logo */
.logo-wrapper {
  flex: 0 1 auto;
  min-width: 0;
}

header .logo-wrapper img {
  display: block;
  height: clamp(56px, 8vh, 90px);
  width: auto;
  max-width: 100%;
  padding: 0.5em 0;
}

/* desktop links */
.links {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.links li {
  min-width: 0;
}

.links li a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
}

.links li a:hover {
  color: var(--primary-light);
}

.navbar .action_btn {
  margin-left: 0;
  flex: 0 0 auto;
}

/* share */
.share-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.share-toggle {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2b2b2b;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.share-toggle:hover,
.share-dropdown.is-open .share-toggle {
  /* background: #e91d2d; */
  border-color: #ff0;
  color: #ff0;
}

.share-toggle .material-symbols-outlined {
  font-size: 28px;
}

.social-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  margin: 0;
  padding: 0.75rem;
  list-style: none;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 4px solid #ff0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  z-index: 1001;
  white-space: nowrap;
}

.social-nav::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: #ff0;
  transform: rotate(45deg);
  z-index: -1;
}

.share-dropdown.is-open .social-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-nav li {
  margin: 0;
  padding: 0;
}

.social-nav li a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: #2b2b2b;
  border-radius: 6px;
  padding: 0.45rem;
  transition: background 180ms ease, transform 180ms ease;
}

.social-nav li a:hover,
.social-nav li a:focus-visible {
  background: #e91d2d;
  transform: translateY(-2px);
}

.social-nav img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* call-to-action button */
.action_btn,
.btn {
  background-color: hsl(60, 100%, 50%);
  color: #e91d2d;
  padding: 16px 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-radius: 4px;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 200ms ease, color 200ms ease;
}

.btn-pair {
  display: inline-flex;
  gap: 5px;
  flex-wrap: wrap;
  max-width: 100%;
}

.btn-left {
  background-color: hsl(60, 100%, 50%);
  color: #e91d2d;
  padding: 16px 12px 16px 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 200ms ease, color 200ms ease;
}

.btn-right {
  background-color: hsl(60, 100%, 50%);
  color: #e91d2d;
  padding: 16px 24px 16px 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 200ms ease, color 200ms ease;
}

.ticket_btn {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.9rem;
  background: #e91d2d;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
  max-width: 100%;
}

.ticket_btn:hover {
  background: hsl(355, 82%, 41%);
  color: #fff;
}

.btn-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.2em;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  font-size: 1.2rem;
  max-width: 100%;
}

.btn-link .icon {
  transition: transform 180ms ease;
  font-size: 1.8rem;
}

.btn-link:hover .icon,
.btn-link:focus-visible .icon {
  transform: translateX(6px);
}

.btn {
  margin: 0 0 20px;
}

.action_btn:hover,
.btn:hover,
.btn-right:hover,
.btn-left:hover {
  background: hsl(60, 80%, 50%);
  color: hsl(351, 89%, 30%);
}

/* mobile toggle */
.toggle_btn {
  display: none;
  flex: 0 0 auto;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  z-index: 1100;
  margin-left: auto;
}

/* dropdown menu (mobile) */
.dropdown_menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 20px;
  width: 300px;
  max-width: calc(100vw - 40px);
  background: var(--bg-dark);
  list-style: none;
  overflow: hidden;
  border-radius: var(--radius);
  z-index: 1200;
}

.dropdown_menu.open {
  display: block;
}

.dropdown_menu li {
  padding: 0.7rem;
  text-align: center;
}

.dropdown_menu li a {
  color: var(--text-light);
  text-decoration: none;
  display: block;
}

.dropdown_menu .action_btn {
  color: #e60d2e;
}

.dropdown_menu .action_btn:hover {
  color: #ffffff;
}

.mobile-social {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-label {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mobile-social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.mobile-social-row img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/*────────────────────────────────────────
  ALERT BAR
────────────────────────────────────────*/
.alert-bar {
  background-color: rgb(0 0 0 / 0.2);
  position: relative;
  display: flex;
  align-content: center;
  gap: 0.5em;
  width: 100%;
  font-size: 1.5em;
  font-style: italic;
  font-weight: 900;
  border-radius: 3px;
  overflow: hidden;
  color: #ff0;
  padding: 0.5em;
}

.alert-bar::before,
.alert-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
}

.alert-bar::before {
  top: 0;
  border-top: 2px solid transparent;
  border-image: repeating-linear-gradient(
      -55deg,
      #000,
      #000 10px,
      #ff0 10px,
      #ff0 20px
    )
    10;
}

.alert-bar::after {
  bottom: 0;
  border-bottom: 2px solid transparent;
  border-image: repeating-linear-gradient(
      -55deg,
      #000,
      #000 10px,
      #ff0 10px,
      #ff0 20px
    )
    10;
}

/*────────────────────────────────────────
  GLOBAL ANIMATION
────────────────────────────────────────*/
h1,
h3,
p,
.btn,
.btn-link {
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 600ms ease-out forwards;
}

h1 {
  animation-delay: 0ms;
}
h3 {
  animation-delay: 120ms;
}
p {
  animation-delay: 240ms;
}
.cloudinary img {
  animation-delay: 400ms;
}
.btn-link {
  animation-delay: 500ms;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  h1,
  h3,
  p,
  .btn-link,
  .cloudinary img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.cloudinary img {
  opacity: 0;
  animation: fadeIn 600ms ease-out forwards;
  max-width: 100%;
  height: auto;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/*────────────────────────────────────────
  PAGE CONTENT OFFSET
────────────────────────────────────────*/
.page-builder {
  margin-top: 10vh;
}

/*────────────────────────────────────────
  GENERIC SECTIONS & COLUMNS
────────────────────────────────────────*/
.section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-width: 0;
}

.column {
  flex: 1 1 600px;
  min-width: 0;
}

.column > .section > .column {
  flex: 1 1 200px;
  min-width: 0;
}

/*────────────────────────────────────────
  TYPOGRAPHY UTILITIES
────────────────────────────────────────*/
h1 {
  font-family: var(--primary-font);
  font-weight: var(--ultra-black-font);
  text-transform: uppercase;
  font-size: clamp(3.5rem, 4vw + 1rem, 4.5rem);
  line-height: calc(3.5rem * 1.2);
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

h3 {
  font-family: var(--primary-font);
  font-weight: var(--semi-bold-font);
  font-size: clamp(3rem, 2vw + 0.5rem, 3.2rem);
  line-height: 3.125rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

h6 {
  font-family: var(--primary-font);
  font-weight: var(--bold-font);
  font-size: clamp(1.5rem, 1vw + 0.25rem, 1.8rem);
  line-height: 1.6rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

h4 {
  font-family: var(--primary-font);
  font-weight: var(--semi-bold-font);
  font-size: clamp(1.1rem, 1vw + 0.25rem, 1.5rem);
  line-height: calc(1.1rem * 1.2);
  margin: 1.2rem 0 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

h5 {
  font-family: var(--primary-font);
  font-weight: var(--semi-bold-font);
  font-size: clamp(1.1rem, 1vw + 0.25rem, 1.5rem);
  line-height: calc(1.1rem * 1.2);
  margin: 1.2rem 0 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

p {
  font-family: var(--primary-copy-font);
  font-weight: var(--bold-font);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.25rem);
  line-height: calc(1rem * 1.5);
  margin-bottom: 20px;
  max-width: 75ch;
}

a {
  color: #fff;
}

a:hover {
  color: var(--primary-light);
}

.copy ul {
  margin-left: 1em;
}

/*────────────────────────────────────────
  DESKTOP DROPDOWNS
────────────────────────────────────────*/
.links > li {
  position: relative;
}

.links > li > .menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: var(--bg-dark);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px var(--shadow);
  z-index: 1200;
}

.links > li:hover > .menu,
.links > li:focus-within > .menu {
  display: block;
}

.menu > li {
  list-style: none;
}

.menu > li > a {
  display: block;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: var(--text-light);
  white-space: nowrap;
}

.menu > li > a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-light);
}

.menu li {
  position: relative;
}

.menu li .menu {
  top: 0;
  left: 100%;
}

.menu li:hover > .menu {
  display: block;
}

.links .chev {
  display: inline-block;
  transition: transform 0.2s;
  margin-left: 0.35rem;
}

.links > li:hover .chev,
.links > li:focus-within .chev {
  transform: rotate(180deg);
}
/*────────────────────────────────────────
  RESPONSIVE
────────────────────────────────────────*/
@media (max-width: 1024px) {
  .links,
  .action_btn,
  .share-dropdown {
    display: none;
  }

  .toggle_btn {
    display: block;
  }

  .navbar {
    gap: 0.5rem;
  }

  header .logo-wrapper img {
    height: clamp(48px, 7vh, 72px);
  }

  .links > li > .menu,
  .menu li .menu {
    position: static;
    min-width: auto;
    box-shadow: none;
  }

  .dropdown_menu li {
    text-align: left;
  }

  .dropdown_menu li > a {
    display: block;
    padding: 0.7rem 1rem;
  }

  .column {
    flex: 1 1 100%;
  }
}

@media (max-width: 576px) {
  header {
    padding: 0 12px;
  }

  .dropdown_menu {
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
  }

  .btn-pair {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-left,
  .btn-right,
  .ticket_btn,
  .btn,
  .action_btn {
    max-width: 100%;
  }

  h1 {
    line-height: 1.1;
  }

  h3 {
    line-height: 1.05;
  }
}