@keyframes herding-cats-fade-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: #000000;
}

#root,
.herding-cats-app {
  min-height: 100vh;
  background-color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: #ffffff;
}

.herding-cats-app-inner {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #000000;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem;
  background-color: transparent;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 100%;
}

.site-header__logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}
.site-header__logo:hover {
  opacity: 0.9;
}

.site-header__logo-img {
  display: block;
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.home .site-header__logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.home.body-scrolled-past-hero .site-header__logo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav {
  position: relative;
}

.site-nav__toggle {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #35696c;
  transition: color 0.2s ease;
}
.site-nav__toggle:hover {
  color: #ed7730;
}
.site-nav__toggle[aria-expanded=true] {
  color: #ed7730;
}
.site-nav__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.site-header.is-nav-open .site-nav__toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.site-header.is-nav-open .site-nav__toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .site-nav__toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.site-nav__panel {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.35s ease;
}

.site-header.is-nav-open .site-nav__panel {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.site-nav__panel-logo {
  display: block;
  flex-shrink: 0;
  margin-bottom: 2rem;
  line-height: 0;
}

.site-nav__panel-logo-img {
  display: block;
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 550px;
}

.site-nav__item {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-nav__item:last-child {
  border-bottom: 0;
}

.site-nav__link {
  display: block;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 600;
  padding: 0.9rem 0;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 4px;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
}
.site-nav__link:hover {
  color: #ed7730;
  background: rgba(255, 255, 255, 0.05);
}

body.nav-overlay-open {
  overflow: hidden;
}

a {
  color: #35696c;
  transition: color 0.2s ease;
}
a:hover {
  color: #ed7730;
}

.site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  position: relative;
}
.site-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 255, 255, 0.04) 0%, transparent 55%);
}

.site-main--home {
  justify-content: flex-start;
}

.site-main--home > * {
  width: 100%;
  min-height: 100vh;
  flex-shrink: 0;
}

.site-main--home .home-intro-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.site-main--home .home-intro-section .home-text {
  flex-shrink: 0;
  padding: 0;
  max-width: 86ch;
  width: 100%;
}

.home-text__hero-img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.hero {
  margin: 0 auto 1rem;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: herding-cats-fade-up 0.7s ease-out forwards;
  animation-delay: 0.1s;
  max-width: 800px;
  width: 100%;
  padding: 0 1rem;
}
.hero .hero-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-header__logo-img {
    max-width: 150px;
    max-height: 150px;
  }
}
@media (max-width: 480px) {
  .site-header__logo-img {
    max-width: 100px;
    max-height: 100px;
  }
}
.intro-text-image {
  margin: 0 auto 1rem;
  padding: 0 1rem;
  max-width: 800px;
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: herding-cats-fade-up 0.6s ease-out forwards;
  animation-delay: 0.3s;
}
.intro-text-image .intro-text-image__img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.home-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.intro-text {
  max-width: 86ch;
  color: #ffffff;
  opacity: 0;
  animation: herding-cats-fade-up 0.6s ease-out forwards;
  animation-delay: 0.5s;
}
.intro-text p:first-child {
  margin-top: 0;
}
.intro-text p:last-child {
  margin-bottom: 0;
}
.intro-text a {
  color: #35696c;
  text-decoration: underline;
}
.intro-text a:hover {
  color: #ed7730;
}

.hero-video {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto 0;
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  overflow: hidden;
}

.hero-video--home {
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 0;
  aspect-ratio: none;
  min-height: 100vh;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  box-sizing: border-box;
}

.hero-video__inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
}

.hero-video__placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.hero-video__inner .hero-video__placeholder {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.hero-video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.scroll-hint-group {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #35696c;
}

.scroll-hint-rod {
  position: relative;
  width: 24px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.scroll-hint-rod::before {
  content: none;
}

.scroll-hint {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 0.25rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  transition: color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.scroll-hint:hover {
  color: rgb(73.1465838509, 144.9130434783, 149.0534161491);
  transform: scale(1.08);
  filter: drop-shadow(0 0 6px rgba(53, 105, 108, 0.45));
}
.scroll-hint:active {
  transform: scale(1.02);
}

.scroll-hint--up {
  margin-bottom: 20px;
}

.scroll-hint--down {
  margin-top: 20px;
}

.scroll-hint__line {
  display: block;
  flex: 1;
  min-height: 36px;
  width: 4px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.95;
  animation: scroll-hint-pulse 2s ease-in-out infinite;
  align-self: center;
  pointer-events: none;
}

.scroll-hint__chevron {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(53, 105, 108, 0.45));
}

.scroll-hint--up .scroll-hint__chevron {
  animation: scroll-hint-bounce-up 1.5s ease-in-out infinite;
}

.scroll-hint--down .scroll-hint__chevron {
  animation: scroll-hint-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-hint-bounce-up {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes scroll-hint-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@keyframes scroll-hint-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.site-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.875rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  animation: herding-cats-fade-up 0.6s ease-out forwards;
  animation-delay: 0.8s;
}

.herding-cats-loading,
.herding-cats-error {
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  background-color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.herding-cats-error {
  color: #ffffff;
}
.herding-cats-error pre {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  text-align: left;
  font-size: 0.875rem;
  color: #ffffff;
}

.home-meet-the-band-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  box-sizing: border-box;
  text-align: left;
}

.home-meet-the-band-section__inner {
  width: 100%;
  max-width: 86ch;
}

.meet-the-band__content {
  max-width: 100%;
  margin: 0 auto 1.5rem;
  color: #ffffff;
}
.meet-the-band__content p:first-child {
  margin-top: 0;
}
.meet-the-band__content a {
  color: #35696c;
  text-decoration: underline;
}
.meet-the-band__content a:hover {
  color: #ed7730;
}

.band-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.band-matrix__item {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.band-matrix__item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 2px #35696c;
}

.band-matrix__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-shows-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  box-sizing: border-box;
  text-align: left;
}

.home-shows-section__inner {
  width: 100%;
  max-width: 86ch;
}

.home-shows__content {
  max-width: 100%;
  margin: 0 auto;
  color: #ffffff;
}
.home-shows__content p:first-child {
  margin-top: 0;
}
.home-shows__content p:last-child {
  margin-bottom: 0;
}
.home-shows__content a {
  color: #35696c;
  text-decoration: underline;
}
.home-shows__content a:hover {
  color: #ed7730;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  padding: 1rem;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #35696c;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 4px;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  color: #ed7730;
  background: rgba(0, 0, 0, 0.7);
}

.lightbox__close {
  top: -2rem;
  right: -2rem;
  font-size: 2.5rem;
}

.lightbox__prev {
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__counter {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  color: #35696c;
}

@media (max-width: 768px) {
  .site-nav__panel {
    padding: 3rem 1.5rem;
  }
  .site-nav__link {
    font-size: 2.5rem;
    padding: 1.1rem 0;
  }
  .site-main {
    padding: 0.75rem;
  }
  .hero {
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
  }
  .intro-text {
    font-size: 0.9375rem;
    padding: 0 0.5rem;
  }
  .site-footer {
    margin-top: 1.25rem;
    padding-top: 0.75rem;
    font-size: 0.8125rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .hero-video--home {
    padding: 2rem 1.5rem;
    min-height: 100vh;
  }
  .home-meet-the-band-section {
    padding: 3rem 1rem;
  }
  .home-shows-section {
    padding: 3rem 1rem;
  }
}
@media (max-width: 480px) {
  .site-nav__panel {
    padding: 4rem 1rem;
  }
  .site-nav__link {
    font-size: 2.5rem;
    padding: 1.25rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-main {
    padding: 0.5rem;
  }
  .hero {
    padding: 0 0.25rem;
    margin-bottom: 0.5rem;
  }
  .intro-text {
    font-size: 0.875rem;
  }
  .site-footer {
    font-size: 0.75rem;
  }
  .band-matrix {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
  }
  .lightbox__prev {
    left: 0;
  }
  .lightbox__next {
    right: 0;
  }
  .lightbox__close {
    top: 1rem;
    right: 1rem;
  }
  .hero-video--home {
    padding: 1.5rem 1rem;
    min-height: 100vh;
  }
  .scroll-hint-group {
    right: 0.75rem;
    transform: translateY(-50%) scale(0.9);
  }
  .scroll-hint-rod {
    height: 148px;
  }
  .scroll-hint__line {
    min-height: 84px;
    width: 5px;
  }
  .scroll-hint--up {
    margin-bottom: 24px;
  }
  .scroll-hint--down {
    margin-top: 24px;
  }
}
.page-content {
  padding: 2rem 1rem 2rem 220px;
  max-width: 72rem;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 768px) {
  .page-content {
    padding-left: 170px;
  }
}
@media (max-width: 480px) {
  .page-content {
    padding-left: 120px;
  }
}
.page-title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
}

.page-featured-image {
  margin: 0 0 1.5rem;
  line-height: 0;
}
.page-featured-image img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.entry-content {
  color: #ffffff;
}
.entry-content a {
  color: #35696c;
  text-decoration: underline;
}
.entry-content a:hover {
  color: #ed7730;
}

.gform_wrapper .gfield {
  text-align: left;
}

.gform_wrapper .gfield_label,
.gform_wrapper label.gfield_label,
.gform_wrapper .gfield label {
  color: #ffffff !important;
  text-align: left !important;
}

.gform_wrapper .gfield_description {
  color: rgba(255, 255, 255, 0.8);
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]),
.gform_wrapper textarea {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image])::placeholder,
.gform_wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_footer input[type=button] {
  background-color: #35696c !important;
  color: #ffffff !important;
  border: 0 !important;
  padding: 0.75rem 1.5rem !important;
  font-family: "Outfit", system-ui, -apple-system, sans-serif !important;
  font-size: 1rem !important;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_footer input[type=button]:hover {
  background-color: #ed7730 !important;
}
