/* ==========================================================================
   FONTS & VARIABLES
   ========================================================================== */

@font-face {
  font-family: "DCC Ash";
  src:
    url("../assets/fonts/dcc-ash.woff2") format("woff2"),
    url("../assets/fonts/dcc-ash.woff") format("woff"),
    url("../assets/fonts/dcc-ash.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

:root {
  --clr-bg: #1a1a1a;
  --clr-bg-alt: #2a2a2a;
  --clr-bg-alt-2: #353535;
  --clr-text: #f5f5f5;
  --clr-text-muted: #cccccc;
  --clr-accent: #ba5e35;
  --clr-accent-2: #dfd029;
  --clr-hover: #e63946;

  --clr-gradient: linear-gradient(135deg, #ba5e35, #e5974a);

  --ff-title: "DCC Ash", "Ribeye", serif;
  --ff-text: "Zain", sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2.375rem;
  --fs-4xl: 2.5rem;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--ff-text);
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-title);
  font-weight: normal;
  text-transform: uppercase;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  padding-top: 166px;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.container-sm {
  padding: 0 3rem;
}

.is-hidden {
  display: none !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-tickets,
.hero-btn-tickets {
  display: inline-block;
  padding: 0.4rem 1.6rem;
  font-family: var(--ff-title);
  font-weight: normal;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  background: var(--clr-gradient);
  border: none;
  border-radius: 0.4rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition:
    background-position 0.4s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  background-size: 200% 200%;
  background-position: 0% 50%;
  text-decoration: none;
}

.btn-tickets:hover,
.hero-btn-tickets:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
}

.btn-tickets:active,
.hero-btn-tickets:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.hero-btn-tickets {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 40;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.6rem;
  font-family: var(--ff-title);
  font-weight: normal;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  background: var(--clr-gradient);
  border: none;
  border-radius: 0.4rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition:
    background-position 0.4s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  background-size: 200% 200%;
  background-position: 0% 50%;
  text-decoration: none;
}

.btn-maps:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
}

.btn-maps:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.btn-lang,
.btn-social {
  position: relative;
  padding: 0;
  margin: 0;
  font-size: var(--fs-md);
  color: var(--clr-text);
  transition: all 0.2s ease;
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: block;
}

.btn-lang img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn-social i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--fs-lg);
}

.btn-lang:hover {
  transform: scale(1.1);
}

.btn-social:hover i {
  background: var(--clr-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-lang:active,
.btn-social:active {
  transform: scale(0.95);
}

/* ==========================================================================
   NAVIGATION - MOBILE
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

@media (max-width: 1023px) {
  .site-header {
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-header.hide-brand {
    transform: translate3d(0, -84px, 0);
  }
}

.brand-strip {
  position: relative;
  display: grid;
  place-items: center;
  height: 84px;
  padding: 12px 4px 4px 4px;
  width: 100%;
  background: var(--clr-bg-alt);
  z-index: 1200;
  margin-bottom: -1px;
}

.brand-logo {
  height: 72px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  background: var(--clr-bg-alt);
  padding: 0 2.5rem;
  position: relative;
  z-index: 1100;
}

.nav-bar .brand {
  display: none;
}

.nav-toggle,
.desktop-nav-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle::before,
.desktop-nav-toggle::before {
  content: "";
  position: absolute;
  inset: -4px -6px -2px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(3% 8%, 97% 0, 100% 85%, 0 100%);
}

.nav-toggle svg,
.desktop-nav-toggle svg {
  width: 36px;
  height: 36px;
  display: block;
  color: var(--clr-accent);
}

.nav-toggle:focus-visible,
.desktop-nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.45);
}

.nav-toggle:active,
.desktop-nav-toggle:active {
  transform: translateY(1px) scale(0.97);
}

.nav-toggle .icon,
.desktop-nav-toggle .icon {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 36px;
  height: 36px;
  display: block;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  will-change: transform, opacity;
}

.nav-toggle .icon--menu,
.desktop-nav-toggle .icon--menu {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.nav-toggle .icon--close,
.desktop-nav-toggle .icon--close {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85) rotate(-15deg);
}

.nav-toggle[aria-expanded="true"] .icon--menu,
.desktop-nav-toggle[aria-expanded="true"] .icon--menu {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85) rotate(15deg);
}

.nav-toggle[aria-expanded="true"] .icon--close,
.desktop-nav-toggle[aria-expanded="true"] .icon--close {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.nav-menu {
  background: var(--clr-bg-alt);
  position: absolute;
  top: 166px;
  left: 0;
  width: 100%;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
}

.nav-menu.open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}

.nav-menu.open::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-gradient);
  filter: brightness(0.8) contrast(0.9);
}

.nav-menu.closing {
  transform: translate3d(0, -100%, 0);
  visibility: visible;
  pointer-events: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-list a:not(.btn-tickets) {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--clr-text);
  font-family: var(--ff-title);
  font-weight: normal;
  text-transform: uppercase;
}

.nav-list .btn-tickets {
  margin: 1rem 0 1.5rem 0;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0 0.75rem;
  gap: 4rem;
}

.language-buttons,
.social-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   NAVIGATION - DESKTOP
   ========================================================================== */

.desktop-nav {
  display: none;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  height: 110px;
  background: var(--clr-bg-alt);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.desktop-side-menu {
  position: fixed;
  top: 110px;
  left: 0;
  width: 300px;
  height: calc(100vh - 110px);
  background: var(--clr-bg-alt);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 500;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.desktop-side-menu.open {
  transform: translateX(0);
}

.desktop-side-nav {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}

.desktop-side-nav a {
  position: relative;
  padding: 1.25rem 2rem;
  font-size: 2rem;
  color: var(--clr-text);
  font-family: var(--ff-title);
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  text-decoration: none;
}

.desktop-side-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-gradient);
  filter: brightness(0.75) contrast(0.9);
  transition: filter 0.2s ease;
}

.desktop-side-nav a:hover {
  background: var(--clr-bg-alt-2);
  color: var(--clr-accent);
}

.desktop-side-nav a:hover::after {
  filter: brightness(1) contrast(1);
}

main {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.page-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background: #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero h1 {
  text-align: center;
  font-size: var(--fs-4xl);
  margin-top: 20%;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-mobile {
  display: block;
}

.hero-video-desktop {
  display: none;
}

.hero-img {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: clamp(36px, 6vw, 83px);
  height: auto;
  top: auto;
  left: auto;
  transform: none;
  z-index: 40;
  pointer-events: none;
}

.hero
  > :not(video):not(.custom-shape-divider-top):not(.hero-img):not(
    .hero-btn-tickets
  ) {
  position: relative;
  z-index: 4;
}

.custom-shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 8;
  pointer-events: none;
}

.custom-shape-divider-top svg {
  display: block;
  width: 100%;
  height: 150px;
}

.custom-shape-divider-top .shape-fill {
  fill: #2a2a2a;
}

.custom-shape-divider-top-1758609307 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1758609307 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 87px;
}

.custom-shape-divider-top-1758609307 .shape-fill {
  fill: #2a2a2a;
}

/* ==========================================================================
   LINE-UP
   ========================================================================== */

.line-up {
  padding: 4rem 0;
  background: var(--clr-bg-alt-2);
  text-align: center;
}

.line-up h2 {
  font-size: 3.5rem;
  font-weight: normal;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.lineup-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2.6rem;
  row-gap: 1.5rem;
  margin-top: 3.5rem;
}

.tab-btn {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--clr-text);
  font-family: var(--ff-title);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.9rem 1.4rem 1.1rem;
  cursor: pointer;
  z-index: 0;
}

.tab-btn::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  z-index: -1;
}

.tab-btn::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.38);
  z-index: -1;
}

.tab-btn.active {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
  background-image: var(--clr-gradient);
  background-repeat: no-repeat;
  background-size: calc(100% - 2.8rem) 3px;
  background-position: center calc(100% - 10px);
}

.tab-btn.active::before {
  background: rgba(222, 126, 179, 0.32);
}

.tape-a::before,
.tape-a::after {
  inset: -6px -10px -8px -8px;
  clip-path: polygon(4% 14%, 96% 2%, 100% 86%, 2% 100%);
}

.tape-b::before,
.tape-b::after {
  inset: -8px -8px -6px -10px;
  clip-path: polygon(3% 6%, 98% 4%, 100% 88%, 6% 100%, 0 70%);
}

.lineup-content {
  margin: 1.5rem 0;
  min-height: 300px;
  transition: opacity 0.3s ease-in-out;
}

.lineup-content.lineup-content--fallback {
  min-height: 0;
}

.lineup-content.is-fading {
  opacity: 0;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0 1rem;
  overflow: hidden;
}

.artist-grid.hidden {
  display: none;
}

.artist-card {
  background: var(--clr-bg-alt);
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.artist-card--extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translate3d(0, -20px, 0);
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 0;
  min-height: 0;
}

.artist-card--extra:not([hidden]) {
  max-height: 600px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.artist-card--extra[hidden] {
  display: none;
}

.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.artist-image {
  width: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  aspect-ratio: 4 / 5;
}

.lineup-actions {
  margin-top: 3rem;
}

.btn-show-all {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--clr-text);
  font-family: var(--ff-title);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1.05rem 2.5rem 1.15rem;
  cursor: pointer;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  line-height: 1;
}

.btn-show-all::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  z-index: -1;
}

.btn-show-all::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.38);
  z-index: -1;
}

.btn-show-all .label {
  display: inline-block;
}

.btn-show-all svg,
.btn-show-all .chevron {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
  fill: var(--clr-accent);
}

.tape-c::before,
.tape-c::after {
  inset: -14px -22px -10px -18px;
  clip-path: polygon(4% 10%, 96% 4%, 100% 86%, 90% 100%, 6% 96%, 0 70%);
}

.tape-d::before,
.tape-d::after {
  inset: -12px -22px -10px -22px;
  clip-path: polygon(6% 8%, 96% 6%, 100% 70%, 94% 100%, 10% 96%, 0 62%);
}

.btn-show-all:hover::before {
  background: rgba(240, 192, 64, 0.18);
}

.lineup-poster {
  padding: 0 1rem;
}

.lineup-poster-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.6rem;
  max-width: 520px;
  margin: 0 auto;
}

.lineup-fallback {
  padding: 2rem 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.lineup-fallback__message {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
}

.poster {
  display: none;
  padding: 4rem 0;
  background: var(--clr-bg-alt-2);
}

/* ==========================================================================
   VRIJWILLIGERS
   ========================================================================== */

.volunteer-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.volunteer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 30%,
    rgba(0, 0, 0, 0) 60%
  );
}

.volunteer-img {
  display: block;
  width: 100%;
  height: auto;
}

.volunteer-hero-content {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

.volunteer-hero-content h1 {
  margin: 0;
  font-family: var(--ff-title);
  font-weight: normal;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  line-height: 1;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.8);
}

.volunteer-hero-content p {
  margin: 0.35rem 0 0;
  color: var(--clr-text-muted);
}

.volunteer-team {
  background: var(--clr-bg-alt-2);
  padding: 3rem 1rem;
  text-align: center;
}

.volunteer-team__inner {
  max-width: 720px;
  margin: 0 auto;
}

.volunteer-team__title {
  font-family: var(--ff-title);
  font-weight: normal;
  text-transform: uppercase;
  font-size: clamp(2rem, 7vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.volunteer-team__subtitle {
  font-family: var(--ff-title);
  font-weight: normal;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  margin: 2.2rem 0 1rem;
}

.volunteer-team__lead {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0.75rem auto 1.25rem;
  max-width: 52ch;
}

.volunteer-team__intro::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  margin: 1.4rem auto 0;
  background: var(--clr-gradient);
  filter: brightness(0.8) contrast(0.9);
}

.volunteer-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.volunteer-gallery__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0.6rem;
  background: var(--clr-bg-alt);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.volunteer-roles__list {
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.volunteer-role-card {
  background: var(--clr-bg-alt);
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.volunteer-role-question {
  width: 100%;
  padding: 0.9rem 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-title);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: normal;
  color: var(--clr-text);
  font-size: 1.1rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.volunteer-role-question:hover {
  color: var(--clr-accent);
}

.volunteer-role-question i {
  transition: transform 0.3s ease;
  color: var(--clr-accent);
  font-size: 0.9rem;
}

.volunteer-role-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.volunteer-role-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  text-align: left;
}

.volunteer-role-answer.open {
  max-height: 2000px;
}

.volunteer-role-answer p {
  padding: 0.5rem 1rem 0.9rem 1rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.volunteer-role-answer p:last-child {
  margin-bottom: 0;
}

.volunteer-role-answer ul {
  padding: 0.5rem 1rem 0.9rem 1rem;
  padding-left: 3rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.volunteer-role-answer ul:last-child {
  margin-bottom: 0;
}

.volunteer-role-answer li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.volunteer-role-answer ul li::marker {
  color: var(--clr-accent-2);
}

.volunteer-roles__item {
  background: var(--clr-bg-alt);
  border-radius: 0.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.volunteer-roles__item strong {
  display: block;
  font-family: var(--ff-title);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: normal;
  color: var(--clr-text);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.volunteer-roles__item span {
  display: block;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.volunteer-cta {
  margin-top: 2.4rem;
  padding-top: 0.25rem;
}

.volunteer-cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--ff-title);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background:
    url("/assets/img/background.svg") center / cover no-repeat,
    var(--clr-bg-alt);
  border-radius: 0.65rem;
  z-index: 0;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.volunteer-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: var(--clr-gradient);
  --webkit-mask:
    linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.volunteer-cta__btn:active {
  transform: translateY(1px);
}

.volunteer-cta__small {
  margin-top: 0.9rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

.volunteer-cta__small a {
  color: var(--clr-accent-2);
  text-decoration: underline;
}

.cta-btn-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.volunteer-cta__btn.is-fixed {
  position: fixed;
  left: 50%;
  bottom: var(--sticky-bottom, 0.75rem);
  transform: translateX(-50%);
  z-index: 1200;
}

.volunteer-cta__btn.is-docked {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
}

.google-form {
  background: var(--clr-bg-alt);
  padding: 2.5rem 0;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.form-wrapper iframe {
  width: 100%;
  height: 900px;
  border-radius: 0.6rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.google-form-fullwidth {
  background: var(--clr-bg-alt);
  position: relative;
}

.google-form-fullwidth .form-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.google-form-fullwidth iframe {
  width: 100%;
  height: 900px;
  border: none;
  display: block;
}

.back-to-volunteers {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--clr-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.3s ease;
  z-index: 100;
  text-decoration: none;
}

.back-to-volunteers.hidden {
  opacity: 0;
  pointer-events: none;
}

.back-to-volunteers:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.back-to-volunteers:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   FAQ / INFO
   ========================================================================== */

.faq-section {
  padding: 4rem 1rem;
  background: var(--clr-bg-alt-2);
  line-height: 1.8;
}

.festival-info-subtitle {
  margin-bottom: 2rem;
}

.faq-section h1,
.faq-section h2,
.faq-section h3 {
  font-weight: normal;
  text-transform: uppercase;
  font-size: 2.8rem;
}

.faq-section h3 {
  font-size: 1.7rem;
}

.faq-section h1 {
  font-size: 3.5rem;
}

.faq-c {
  background: var(--clr-bg-alt-2);
  width: 100%;
  padding: 3rem 0;
}

.faq-container {
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  position: relative;
  background: var(--clr-gradient);
  padding: 3px;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--clr-bg-alt);
  border-radius: calc(0.5rem - 3px);
  z-index: 0;
}

.faq-question,
.faq-answer {
  position: relative;
  z-index: 1;
}

.faq-question {
  width: 100%;
  padding: 0.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-text);
  transition: background-color 0.3s ease;
  font-family: var(--ff-title);
}

.faq-question:hover {
  background: var(--clr-bg);
}

.faq-question i {
  position: sticky;
  top: 1rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--clr-accent);
  z-index: 10;
  background: var(--clr-bg-alt-2);
  padding: 0.5rem;
  border-radius: 50%;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition:
    max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
  max-height: 8000px;
}

.faq-answer > * {
  padding: 0.5rem;
  margin: 0;
}

.faq-answer ul {
  padding-left: 2rem;
}

.faq-answer ul:last-child {
  margin-bottom: 0;
}

.faq-answer li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.faq-answer ul li::marker {
  color: var(--clr-accent-2);
}

.faq-answer p {
  margin-bottom: 0.9rem;
  line-height: 1.6;
}

.maps-button-wrapper {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.download-link {
  color: var(--clr-text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--clr-accent);
  padding-bottom: 1px;
}

.download-link::before {
  content: "📄";
  font-size: 1.2em;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.download-link:hover {
  color: var(--clr-accent);
  text-decoration-color: var(--clr-accent-2);
  transform: translateX(2px);
}

.over-section {
  padding: 3rem 1rem;
  background: var(--clr-bg-alt-2);
  line-height: 1.8;
  margin: 0 auto;
}

.over-section h1 {
  font-size: 3.5rem;
  font-weight: normal;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 2rem;
  text-align: center;
}

.over-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--clr-bg);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-gradient);
  filter: brightness(0.7) contrast(0.8);
}

.sponsors {
  background: var(--clr-bg-alt);
  padding: 1.5rem 0;
  overflow: visible;
  position: relative;
}

.sponsors::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-gradient);
  filter: brightness(0.7) contrast(0.8);
  z-index: 850;
}

.sponsors h3 {
  font-size: 2.1rem;
  color: var(--clr-text);
  text-align: center;
  margin-bottom: 2rem;
}

.rat-mascot {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  width: clamp(65px, 8vw, 100px);
  height: auto;
  z-index: 900;
  transition: transform 0.2s ease;
}

.rat-mascot:hover {
  transform: rotate(-5deg) scale(1.05);
}

.footer-carousel {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 80px;
}

.splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsor-logo {
  width: auto;
  height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
  max-width: 90%;
}

.footer-content {
  background: var(--clr-bg);
  padding: 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.footer-column h4 {
  font-size: 1.6rem;
  color: var(--clr-text);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--clr-accent);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  line-height: 2;
  gap: 0.5rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color 0.3s ease;
}

.social-link i {
  width: 20px;
  font-size: var(--fs-lg);
  color: var(--clr-accent);
  text-align: center;
}

.social-link:hover {
  color: var(--clr-accent);
}

.social-link:hover i {
  background: var(--clr-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-bottom {
  background: var(--clr-bg-alt);
  padding: 1rem 0;
}

.copyright {
  text-align: center;
  color: var(--clr-text-muted);
}

#copyright {
  color: var(--clr-accent);
  vertical-align: middle;
}

.copyright p {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: 1.4;
}

.credits {
  margin-top: 0.25rem;
  font-size: var(--fs-base);
}

.footer-legal {
  background: var(--clr-bg-alt);
  padding: 0.5rem 0;
  text-align: center;
}

.legal-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-nav a {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: var(--fs-xs);
  flex-basis: calc(50% - 1.5rem);
  text-align: center;
}

.separator--desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .legal-nav {
    flex-wrap: nowrap;
  }

  .legal-nav a {
    flex-basis: auto;
    text-align: initial;
  }

  .separator--desktop-only {
    display: inline;
  }
}

.legal-nav a:hover {
  color: var(--clr-accent);
}

.legal-nav a:active {
  color: var(--clr-accent);
}

.separator {
  color: var(--clr-accent-2);
  font-size: var(--fs-sm);
  opacity: 0.6;
}

.line {
  width: 100%;
  height: 3px;
  background: var(--clr-gradient);
  margin: 0.5rem 0 2rem 0;
  filter: brightness(0.8) contrast(0.9);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

@media (max-width: 767px) {
  .custom-shape-divider-top-1758609307 svg {
    height: 87px;
  }
}

@media (min-width: 768px) {
  .hero-video-mobile {
    display: none;
  }

  .hero-video-desktop {
    display: block;
  }

  .artist-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .lineup-poster-img {
    max-height: 60vh;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-answer {
    padding-left: 1.618rem;
    padding-right: 1.618rem;
  }

  .custom-shape-divider-top-1758609307 svg {
    height: 167px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav-bar {
    padding: 0 1.2rem;
  }

  .container-sm {
    padding: 0 1rem;
  }
}

@media (min-width: 1024px) {
  body {
    padding-top: 110px;
  }

  .site-header.hide-brand {
    transform: none !important;
  }

  .brand-strip,
  .nav-bar,
  .nav-menu {
    display: none !important;
  }

  .desktop-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
    height: 110px;
    background: var(--clr-bg-alt);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .desktop-nav-left {
    display: flex;
    align-items: center;
    gap: 0.1rem;
  }

  .desktop-nav-left a {
    font-size: 1.5rem;
    padding: 0.75rem 0.65rem;
    color: var(--clr-text);
    font-family: var(--ff-title);
    text-transform: uppercase;
    transition: color 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
  }

  .desktop-nav-left a:hover {
    color: var(--clr-accent);
  }

  .desktop-brand {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .desktop-logo {
    height: 85px;
    width: auto;
  }

  .desktop-nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
  }

  .desktop-nav-right .btn-tickets {
    margin-right: 0.75rem;
    font-size: 1.5rem;
    padding: 0.4rem 1.4rem;
  }

  .desktop-language-buttons,
  .desktop-social-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .desktop-nav-right .btn-lang,
  .desktop-nav-right .btn-social {
    position: relative;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    display: block;
    transition: all 0.2s ease;
  }

  .desktop-nav-right .btn-lang img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .desktop-nav-right .btn-social i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
  }

  .desktop-nav-right .btn-lang:hover {
    transform: scale(1.1);
  }

  .desktop-nav-right .btn-social:hover i {
    background: var(--clr-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero {
    margin-top: 0;
    height: 60vh;
  }

  main {
    display: block;
  }

  .tab-btn {
    font-size: 1.2rem;
    padding: 1.1rem 2.2rem 1.45rem;
    letter-spacing: 0.14em;
  }

  .tape-a::before,
  .tape-a::after {
    inset: -10px -18px -12px -14px;
  }

  .tape-b::before,
  .tape-b::after {
    inset: -12px -14px -10px -18px;
  }

  .lineup-tabs {
    column-gap: 4rem;
  }

  .line {
    display: none;
  }

  .line-up h2::after {
    content: "";
    display: block;
    width: 180px;
    height: 3px;
    background: var(--clr-gradient);
    margin: 0.5rem auto 2rem auto;
    filter: brightness(0.8) contrast(0.9);
  }

  .faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .faq-section h1 {
    max-width: 800px;
    width: 100%;
  }

  .faq-container {
    max-width: 800px;
  }

  .volunteer-hero {
    height: auto;
    max-height: 60vh;
    min-height: 400px;
  }

  .volunteer-img {
    height: auto;
    max-height: 60vh;
    width: 100%;
    object-fit: cover;
    object-position: center 60%;
  }

  .volunteer-team__inner {
    max-width: 1000px;
  }

  .volunteer-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .volunteer-gallery__img {
    height: 200px;
  }

  .volunteer-roles__list {
    max-width: 900px;
    margin: 1rem auto 0;
  }

  .sponsors {
    padding: 2.5rem 0;
  }

  .sponsors h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-carousel {
    height: 100px;
  }

  .sponsor-logo {
    height: 80px;
  }

  .footer-content {
    padding: 3rem 3rem;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-column {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .footer-column:first-child {
    justify-content: center;
  }

  .footer-column:last-child {
    justify-content: center;
    flex-direction: row-reverse;
  }

  .footer-column h4 {
    font-size: 1.8rem;
    margin-bottom: 0;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .footer-nav {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

  .footer-nav a {
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .footer-nav a:hover {
    color: var(--clr-accent);
    transform: translateY(-2px);
  }

  .social-links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

  .social-link {
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    transform: translateY(-2px);
  }

  .social-link i {
    font-size: 1.4rem;
  }

  .social-link:hover {
    transform: scale(1.1);
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }

  .copyright p {
    font-size: var(--fs-sm);
  }
}

@media (min-width: 1400px) {
  body {
    padding-top: 165px;
  }

  .desktop-nav {
    padding: 0 4rem;
    height: 165px;
    gap: 2rem;
  }

  .desktop-side-menu {
    top: 165px;
    height: calc(100vh - 165px);
  }

  .desktop-nav-left a {
    font-size: 2rem;
    padding: 0.75rem 1.25rem;
  }

  .desktop-nav-right .btn-tickets {
    font-size: 2rem;
    padding: 0.4rem 1.6rem;
  }

  .desktop-logo {
    height: 128px;
  }

  .container,
  .container-sm {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }

  .artist-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
}
