/* ====== Base ====== */
html, body { margin: 0; padding: 0; }
body{
  color: rgb(192,192,192);
  background-color: #000;
  background-image: url("background.png");
  background-repeat: repeat-y;
  background-position: top center;
  background-attachment: fixed;
  font-family: Helvetica, Arial, sans-serif;
}
a { color: #33ff33; }
a:visited { color: #ffcc33; }
a:active { color: #ffcc66; }

/* Make all images responsive */
img { max-width: 100%; height: auto; }

/* Page wrapper */
.wrap{
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 12px 40px;
  text-align: center;
}

/* Header image */
.hero{
  width: 1000px;
  max-width: 100%;
  height: auto;
}

/* Common “call to action” image size */
.ticket-btn{
  width: 220px;
  max-width: 70vw;
  height: auto;
}

/* “This year” poster */
.poster{
  width: 610px;
  max-width: 100%;
  height: auto;
}

/* ====== Hamburger Nav ====== */
.site-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 6px;
  position: relative;
}

/* Desktop menu */
.nav-links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.nav-links a{
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
}

/* Hamburger button (hidden on desktop) */
.nav-toggle{
  display: none;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: bold;
}

/* Mobile drawer panel */
@media (max-width: 700px){
  .site-nav{
    justify-content: flex-start;
  }
}

  .nav-toggle{
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  /* Turn the links into a dropdown panel */
  .nav-links{
    display: none;
    position: absolute;
    top: 52px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: min(520px, calc(100vw - 20px));
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.92);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    z-index: 999;
  }

  /* When menu is open */
  .nav-links.open{
    display: flex;
  }

  .nav-links a{
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 12px 10px;
    border-radius: 14px;
  }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: auto;
}

.gallery img {
  width: 100px;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox.open {
  display: flex;
}

/* Footer/copyright */
.copyright{
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  opacity: 0.9;
  line-height: 1.4;
  margin-top: 6px;
}

/* Social icons */
.social a{ display: inline-block; margin: 6px 6px; }
.social img{
  width: 70px;
  height: 70px;
  max-width: 18vw;
}
.gallery img:hover {
  box-shadow: 0 0 18px rgba(255,0,0,0.6);
}
