:root {
  --bg: #05060c;
  --panel: #0b1020cc;
  --text: #ecf0ff;
  --muted: #a0abd0;
  --cyan: #2df6ff;
  --pink: #ff4fd8;
  --lime: #b2ff59;
  --danger: #ff6b85;
  --border: #ffffff22;
  --shadow: 0 0 40px #2df6ff1f;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 15%, #18244a 0%, transparent 45%),
    radial-gradient(circle at 80% 5%, #3a1234 0%, transparent 35%), var(--bg);
  min-height: 100vh;
  overflow-x: clip;
}

h1,
h2,
h3,
.eyebrow {
  margin: 0;
  font-family: "Syne", sans-serif;
}

p {
  margin: 0.2rem 0;
  color: var(--muted);
}

.bg-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  filter: blur(48px);
  z-index: -2;
  opacity: 0.4;
}

.bg-glow-1 {
  background: var(--cyan);
  left: -70px;
  top: 100px;
}

.bg-glow-2 {
  background: var(--pink);
  right: -70px;
  top: 35%;
}

.site-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.7rem 0 0.3rem;
}

.site-nav {
  width: min(1100px, calc(100% - 1rem));
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  background: #070b16b8;
}

.nav-links {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  gap: 0;
}

.nav-links a {
  color: #cdd5f8;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
  border-color: #2df6ff66;
  color: #ffffff;
  background: #2df6ff14;
}

.container {
  width: min(1100px, calc(100% - 1rem));
  margin: 1rem auto 2.8rem;
  display: grid;
  gap: 1.2rem;
}

.hero,
.panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  backdrop-filter: blur(8px);
}

.panel {
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-visual {
  min-height: min(78vh, 760px);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: end;
  background: #040811;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -14px;
  background-image: var(--hero-image, url("../images/photos/DSC_5221.jpg"));
  background-size: cover;
  background-position: center;
  filter: blur(5px) saturate(1.1);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0408115e 0%, #040811dd 65%, #040811f4 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

.hero-logo {
  width: min(760px, 88vw);
  height: auto;
  display: block;
  margin: 0.2rem auto 0;
  filter: drop-shadow(0 0 22px #2df6ff4f);
}

.eyebrow {
  font-size: 0.82rem;
  color: var(--lime);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lead {
  max-width: 58ch;
  margin: 0.9rem auto 0;
  line-height: 1.55;
  text-align: center;
  overflow-wrap: break-word;
}

.link-grid {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  width: 100%;
}

.social-link,
.ticket,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid #2df6ff77;
  background: linear-gradient(135deg, #2df6ff2a, #ff4fd81f);
  color: #f6f8ff;
  border-radius: 10px;
  padding: 0.62rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.social-link .bi {
  font-size: 1.05rem;
}

.brand-instagram .bi {
  color: #e4405f;
}

.brand-youtube .bi {
  color: #ff0000;
}

.brand-spotify .bi {
  color: #1db954;
}

.social-link:hover,
.ticket:hover,
button:hover {
  border-color: #ff4fd8b0;
  transform: translateY(-1px);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.panel-head span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.gallery {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery figure {
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 220px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.gallery-track-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #070b16;
}

.gallery-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  transition: transform 0.35s ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  margin: 0;
  aspect-ratio: 3 / 2;
  max-height: min(62vh, 520px);
  overflow: hidden;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.55rem;
  pointer-events: none;
}

.gallery-arrow {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid #ffffff55;
  background: #060a16cc;
  color: #eef2ff;
  pointer-events: auto;
  padding: 0;
}

.gallery-arrow:hover {
  border-color: #2df6ffb8;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
  max-width: 100%;
  overflow: hidden;
}

.gallery-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  border: 1px solid #ffffff5f;
  background: transparent;
  padding: 0;
}

.gallery-dot.is-active {
  background: var(--cyan);
  border-color: var(--cyan);
}

.show-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.show-list li {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  background: #0a0f1de0;
}

.show-date {
  color: var(--cyan);
  font-weight: 700;
}

.show-list h3 {
  margin-top: 0.1rem;
  font-size: 1.06rem;
}

.notes,
.empty-state {
  color: var(--muted);
}

.ticket-disabled {
  border-color: #ffffff2f;
  color: #ccd1ef;
  background: transparent;
}

.booking-flow {
  margin-top: 1rem;
  width: 100%;
  border-top: 1px solid var(--border);
}

.booking-visual {
  margin: 0.95rem 0 0.35rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-height: 420px;
}

.booking-visual img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}

.booking-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.booking-item h3 {
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.booking-item .ticket {
  margin-top: 0.45rem;
}

.legal-panel {
  max-width: 900px;
}

.legal-copy {
  display: grid;
  gap: 0.75rem;
}

.legal-copy h3 {
  margin: 0.5rem 0 0.15rem;
  font-size: 1rem;
}

.legal-copy p {
  line-height: 1.6;
}

.site-footer {
  width: min(1100px, calc(100% - 1rem));
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.site-footer a {
  color: #8e96bc;
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--cyan);
}

.flash-stack {
  position: fixed;
  right: 1rem;
  top: 1rem;
  display: grid;
  gap: 0.45rem;
  z-index: 30;
}

.flash {
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #090f20ea;
  font-size: 0.9rem;
}

.flash-success {
  border-color: #7fff9970;
}

.flash-error {
  border-color: #ff6b8575;
}

.admin-shell .panel {
  box-shadow: 0 0 35px #ff4fd829;
}

.narrow {
  width: min(560px, 100%);
  margin-inline: auto;
}

.stack {
  display: grid;
  gap: 0.9rem;
}

.grid-form {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-form .full {
  grid-column: 1 / -1;
}

.admin-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  display: grid;
  gap: 0.6rem;
}

label {
  display: grid;
  gap: 0.3rem;
  color: #d8ddff;
  font-size: 0.86rem;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ffffff2f;
  background: #0a1020;
  color: var(--text);
  padding: 0.6rem 0.7rem;
  font: inherit;
}

.subtle-link {
  color: var(--cyan);
  font-size: 0.9rem;
}

.pseudo-link {
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.danger {
  background: #ff6b8520;
  border-color: #ff6b8590;
}

@media (max-width: 820px) {
  .site-nav {
    flex-direction: column;
    align-items: start;
    gap: 0.4rem;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .container {
    width: min(700px, calc(100% - 1rem));
    margin-top: 0.8rem;
  }

  .hero-visual {
    min-height: 70vh;
  }

  .hero-content {
    padding: 0.7rem;
    max-width: 100%;
  }

  .hero-logo {
    width: min(78vw, 460px);
  }

  .home-page .panel,
  .home-page .hero {
    padding: 0.95rem;
  }

  .home-page .link-grid {
    justify-content: center;
    gap: 0.55rem;
  }

  .home-page .social-link {
    flex: 1 1 calc(50% - 0.55rem);
    max-width: calc(50% - 0.55rem);
    min-width: 0;
  }

  .home-page .gallery-carousel,
  .home-page .gallery-track-wrap {
    width: 100%;
    max-width: 100%;
  }

  .gallery,
  .grid-form,
  .show-list li {
    grid-template-columns: 1fr;
  }

  .show-list li {
    align-items: start;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(5px) saturate(1.1);
  transform: scale(1.06);
  z-index: 0;
}
