:root {
  --color-background: var(--color-neutral-9);
  --color-primary: #ff0a8a;
  --color-secondary: #00f5ff;
  --color-offset: #ffe500;
  --color-neutral-1: #f5f6f7;
  --color-neutral-2: #e8eaed;
  --color-neutral-3: #d7dadd;
  --color-neutral-4: #b9bdc2;
  --color-neutral-5: #979ca3;
  --color-neutral-6: #747a82;
  --color-neutral-7: #555b63;
  --color-neutral-8: #3b4046;
  --color-neutral-9: #24282d;
  --color-neutral-10: #14171a;

  --content-width: 1200px;

  --space-xs: 4px;
  --space-s: 8px;
  --space-base: 16px;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'League Spartan', sans-serif;
  background: var(--color-background);
  color: var(--color-neutral-1);
  line-height: 1.6;
  height: 100%;
}

a {
  color: var(--color-neutral-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(var(--content-width), 90%);
  padding: 2rem 1rem 4rem;
}


main>section {
  display: flex;
  justify-content: center;
}

/* HOVER ACCENTS */
a:hover {
  color: var(--color-primary);
}

/* HEADER */
header {
  border-bottom: 1px solid var(--color-neutral-9);
  background: var(--color-neutral-10);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  opacity: 0.9;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--color-primary);
  width: 0;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: var(--color-neutral-3);
  transition: all 0.3s ease;
}

.social-icons svg:hover {
  fill: var(--color-primary);
  transform: scale(1.2);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-neutral-1);
}

/* BANNER */
.banner-bg {
  width: 100%;
  object-fit: cover;
  height: auto;
  min-height: 500px;
  display: block;
  transition: all 1ms ease-in-out;
}

.banner-content {
  position: absolute;
  padding-top: .5rem;
}

.banner-logo {
  max-width: 900px;
  width: 100%;
  display: block;
  filter: drop-shadow(2px 4px 6px var(--color-neutral-10));
}

/* VIDEO */
.video-wrapper {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  filter: drop-shadow(0px 0px 5px var(--color-neutral-10));
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.video-description {
  padding: 16px;
}

/* SHOWS */
.shows {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  background-color: var(--color-neutral-2);
  color: var(--color-neutral-9)
}

.shows h2 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.show-row {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-neutral-7);
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-row:last-child {
  border-bottom: unset;
}

.show-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.date {
  font-weight: 600;
  color: var(--color-primary);
}

.venue {
  font-weight: 500;
  font-size: 1.2rem;
}

.address {
  font-size: 0.9rem;
  color: var(--color-neutral-6);
}

.location {
  text-align: center;
  font-weight: 500;
}

.ticket-cell {
  text-align: right;
}

.tickets {
  display: inline-flex;
  border: 1px solid var(--color-primary);
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  justify-content: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.tickets a {
  color: var(--color-neutral-9);
  line-height: normal;
}

.tickets:hover {
  background: var(--color-primary);
  color: var(--color-neutral-10);
  font-weight: 600;
}

/* FOOTER */
footer {
  display: flex;
  flex: 1;
  justify-content: center;
  border-top: 1px solid #222;
  padding: 3rem 1rem 6rem 1rem;
  background-color: var(--color-neutral-10);
}

.footer-content {
  max-width: var(--content-width);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

/* MOBILE */
@media(max-width:768px) {

  .nav-container {
    padding: 1rem 1rem;
  }

  .nav-container nav {
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-neutral-10);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    justify-content: center;
    transition: all 1ms ease-in-out;
    opacity: 0;
    display: none;
  }

  nav>a {
    font-size: 1.5rem;
  }

  .nav-container.active nav {
    position: fixed;
    display: flex;
    height: 100%;
    top: 0;
    opacity: unset;
  }

  .nav-container.active .social-icons {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 2em;
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
    z-index: 100;
  }

  .shows>h2 {
    text-align: center;
  }

  .show-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .show-info {
    align-items: center;
  }

  .location {
    text-align: center;
  }

  .ticket-cell {
    text-align: center;
  }

  /* CONTENT CONTAINER */
  .content-container {
    width: 100%;
  }

  /* BANNER */
  .banner-bg {
    min-height: 300px;
  }

  .nav-container {
    height: 100%
  }

}

/* PHONE */
@media(max-width:400px) {
  .banner-bg {
    min-height: 200px;
  }
}