* {
  box-sizing: border-box;
}

:root {
  --bg: #0e0e12;
  --bg-soft: #181824;
  --bg-card: rgba(255, 255, 255, 0.05);
  --accent: #f04d5d;
  --accent-soft: rgba(240, 77, 93, 0.2);
  --highlight: #caff3d;
  --text: #f5f5f7;
  --text-muted: rgba(245, 245, 247, 0.74);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  --radius: 18px;
  --transition: 0.3s ease;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, rgba(240, 77, 93, 0.08), transparent 45%),
              radial-gradient(circle at 20% 30%, rgba(98, 82, 255, 0.15), transparent 55%),
              var(--bg);
}
.gallery {
  position: relative;
  padding: 100px 0 120px;
  background: radial-gradient(circle at top, rgba(202, 255, 61, 0.12), transparent 45%), #0d0d14;
  color: #f5f5f7;
  overflow: hidden;
  display: grid;
  gap: 40px;
}


.gallery__inner {
  width: min(1180px, 90vw);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.gallery__header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(90deg, rgba(50, 50, 58, 0.96), rgba(28, 28, 34, 0.96));
  padding: 14px clamp(32px, 10vw, 72px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.gallery__banner {
  margin: 0;
  font-size: clamp(1.4rem, 4.6vw, 2rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(245, 245, 247, 0.92);
}

.gallery__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.gallery__track {
  display: flex;
  gap: 0;
  padding: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__track--dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.gallery__item {
  flex: 0 0 clamp(320px, 34vw, 540px);
  scroll-snap-align: center;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  display: block;
  width: 100%;
  height: clamp(220px, 38vw, 460px);
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery__item:hover img,
.gallery__item:focus-within img {
  transform: scale(1.05);
}

.gallery__fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(60px, 9vw, 120px);
  background: linear-gradient(270deg, #0d0d14 10%, rgba(13, 13, 20, 0) 100%);
  pointer-events: none;
  transition: opacity var(--transition);
}

.gallery__fade--hidden {
  opacity: 0;
}

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(202, 255, 61, 0.45);
  background: rgba(202, 255, 61, 0.08);
  color: var(--highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  --gallery-nav-shift: 2px;

  .gallery__item img {
    height: clamp(190px, 52vw, 320px);
  }
}

.gallery__nav--next {
  right: clamp(16px, 3vw, 28px);
}

.gallery__nav--prev {
  left: clamp(16px, 3vw, 28px);
  right: auto;
  --gallery-nav-shift: -2px;
}

.gallery__nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.gallery__nav--prev svg {
  transform: scaleX(-1);
}

.gallery__nav:hover,
.gallery__nav:focus {
  transform: translateY(-50%) translateX(var(--gallery-nav-shift));
  border-color: rgba(202, 255, 61, 0.8);
  background: rgba(202, 255, 61, 0.18);
}

.no-scroll {
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 7vw;
  background: #000;
  color: #fff;
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  max-height: 54px;
}

.topbar__logo {
  display: block;
  height: 48px;
  width: auto;
}

.topbar__social {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: opacity var(--transition);
}

.topbar__social a:hover {
  opacity: 0.7;
}

.topbar__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.topbar__menu {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 0;
  width: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.topbar__menu span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 999px;
  transition: background var(--transition);
}

.topbar__menu:hover span,
.topbar__menu:focus-visible span {
  background: var(--highlight);
}

  .menu-overlay__panel {
    width: min(320px, 92vw);
    padding: 32px clamp(18px, 12vw, 36px) 56px;
  }

  .menu-overlay__nav {
    margin-top: 36px;
  }



.menu-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 999;
}

.menu-overlay--open {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay__panel {
  position: relative;
  width: min(420px, 85vw);
  background: #040404;
  color: #e5e5e7;
  padding: 48px clamp(28px, 6vw, 64px) 72px;
  box-shadow: -18px 0 36px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0.01, 0.12, 1);
}

.menu-overlay--open .menu-overlay__panel {
  transform: translateX(0);
}

.menu-overlay__close {
  position: absolute;
  top: 24px;
  right: clamp(24px, 6vw, 42px);
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-overlay__close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.menu-overlay__close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.menu-overlay__close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.menu-overlay__close:hover span,
.menu-overlay__close:focus span {
  background: var(--highlight);
}


.menu-overlay__nav {
  margin-top: 64px;
}

.menu-overlay__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.menu-overlay__link {
  display: inline-block;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #d6d6da;
  transition: color var(--transition);
}

.menu-overlay__link:hover,
.menu-overlay__link:focus {
  color: var(--highlight);
}

.menu-overlay__link--active {
  color: var(--highlight);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius);
}

.section {
  padding: 96px 7vw;
}

.section__intro {
  max-width: 680px;
  margin-bottom: 48px;
}

.section__intro h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section__intro p {
  color: var(--text-muted);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--light {
  background: #fff;
  color: #111;
}

.btn--light:hover {
  background: #f4f5ff;
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--dark {
  background: var(--bg-soft);
}

.hero {
  position: relative;
  min-height: 90vh;
  padding: 32px 7vw 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 56px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 12, 19, 0.95) 10%, rgba(12, 12, 19, 0.3) 100%);
  z-index: 1;
}

.nav {
  position: absolute;
  top: 32px;
  left: 7vw;
  right: 7vw;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav__links {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.hero__focus {
  margin: 0;
  color: var(--highlight);
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(202, 255, 61, 0.45);
  color: var(--highlight);
  background: rgba(202, 255, 61, 0.08);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}


.strip {
  padding: 80px 6vw;
}

.strip--dark {
  background: #17171f;
  color: #fafafc;
}

.strip--neon {
  background: var(--highlight);
  color: #0b0b0d;
}


.strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

.strip__inner--split {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
  gap: clamp(32px, 8vw, 96px);
}

.strip__inner--center {
  place-items: center;
  text-align: center;
}


.strip__block {
  display: grid;
  gap: 20px;
}

.strip__block--highlight {
  align-self: center;
}

.strip__block--center {
  justify-items: center;
}


.strip__title {
  font-size: clamp(2rem, 7vw, 3.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

.strip__title--accent {
  color: var(--highlight);
}

.strip--neon .strip__title {
  color: #111;
}


.strip__title--bold {
  font-size: clamp(1.8rem, 6.6vw, 3.1rem);
}


.strip__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: clamp(0.95rem, 2.6vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strip__list span {
  font-size: 0.8em;
  letter-spacing: 0.14em;
}


.strip__list--dense {
  gap: 10px;
  font-size: clamp(1rem, 3.2vw, 1.4rem);
}


.strip__details {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
  font-size: clamp(0.95rem, 3vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.strip__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 999px;
  border: 2px solid currentColor;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.strip--dark .strip__button:hover,
.strip--dark .strip__button:focus {
  transform: translateY(-2px);
  background: #fff;
  color: #0b0b15;
}

.strip--neon .strip__button {
  border-color: #0b0b15;
}

.strip--neon .strip__button:hover,
.strip--neon .strip__button:focus {
  transform: translateY(-2px);
  background: #0b0b15;
  color: var(--highlight);
}


.strip p {
  margin: 0;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.strip--dark p {
  color: rgba(247, 247, 252, 0.9);
}

.strip--neon .strip__list span {
  color: rgba(0, 0, 0, 0.65);
}

.hero__scroll:hover,
.hero__scroll:focus {
  transform: translateY(4px);
  border-color: rgba(202, 255, 61, 0.8);
  background: rgba(202, 255, 61, 0.15);
}

.hero__scroll svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.highlights {
  background: rgba(255, 255, 255, 0.02);
}

.highlights__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition);
  box-shadow: 0 18px 30px rgba(8, 8, 12, 0.25);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 77, 93, 0.4);
}

.card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.schedule__days {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.day {
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.day h3 {
  margin-top: 0;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.day ul li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.day ul li:last-child {
  border-bottom: none;
}

.day ul span {
  color: #fff;
  font-weight: 600;
}

.artists {
  background: rgba(255, 255, 255, 0.02);
}

.artists__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.artist-card {
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.artist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 77, 93, 0.35);
}

.artist-card h3 {
  margin: 16px 0 8px;
}

.artist-card p {
  color: var(--text-muted);
  margin: 0;
}

.infos__content {
  display: grid;
  gap: 42px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.infos__details {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.infos__details ul {
  margin: 24px 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.infos__details strong {
  color: #fff;
}

.infos__map {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  padding: 24px;
}

.map-placeholder {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.newsletter {
  background: linear-gradient(135deg, rgba(240, 77, 93, 0.2), rgba(255, 255, 255, 0.03));
}

.newsletter__content {
  max-width: 620px;
}

.newsletter__form {
  display: grid;
  gap: 16px;
}

.newsletter__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter__inputs input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.newsletter__inputs input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter__form small {
  color: var(--text-muted);
  line-height: 1.5;
}

.footer {
  display: grid;
  gap: 12px;
  padding: 48px 7vw;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 8, 12, 0.92);
}

.footer__brand strong {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-muted);
}

.footer__links a:hover {
  color: #fff;
}

.footer__legal {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .topbar {
    padding: 14px 6vw;
  }

  .nav {
    top: 28px;
    left: 6vw;
    right: 6vw;
    gap: 18px;
  }

  .hero {
    gap: 48px;
  }

  .nav__links {
    display: none;
  }

  .strip {
    padding: 64px 6vw;
  }

  .gallery {
    padding: 72px 0 96px;
  }

  .gallery__header {
    padding: 14px 8vw;
  }

  .gallery__item img {
    height: clamp(200px, 44vw, 360px);
  }

  .section {
    padding: 80px 6vw;
  }

  .menu-overlay__panel {
    width: min(380px, 90vw);
    padding: 40px clamp(22px, 9vw, 56px) 64px;
  }

  .menu-overlay__nav {
    margin-top: 48px;
  }
}

@media (max-width: 680px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    text-align: center;
  }

  .nav {
    top: 24px;
    left: 5vw;
    right: 5vw;
  }

  .strip {
    padding: 56px 5vw;
  }

  .gallery {
    padding: 64px 0 80px;
  }

  .gallery__header {
    padding: 12px 8vw;
  }

  .gallery__banner {
    font-size: clamp(1.2rem, 7vw, 1.6rem);
    letter-spacing: 0.18em;
  }

  .topbar__social {
    order: 2;
  }

  .topbar__menu {
    order: 3;
  }

  .menu-overlay__panel {
    width: min(320px, 92vw);
    padding: 32px clamp(18px, 12vw, 36px) 56px;
  }

  .menu-overlay__nav {
    margin-top: 36px;
  }

  .hero__focus {
    font-size: clamp(1.4rem, 10vw, 2rem);
  }

  .hero__scroll {
    width: 60px;
    height: 60px;
  }

  .strip__inner--split {
    gap: 42px;
  }

  .strip__block {
    gap: 20px;
  }

  .gallery__viewport {
    border-radius: 22px;
  }

  .gallery__item {
    flex: 0 0 clamp(220px, 70vw, 300px);
    padding: clamp(4px, 2vw, 10px);
  }

  .gallery__nav {
    right: clamp(8px, 4vw, 18px);
  }

  .gallery__nav--prev {
    left: clamp(8px, 4vw, 18px);
  }

  .section {
    padding: 72px 5vw;
  }

  .newsletter__inputs {
    flex-direction: column;
  }
}
