/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding: 20px;
  background-image: url('images/blue.gif');
  background-repeat: repeat;
  background-size: 300px auto;
  color: white;
}

/* Header */
header {
  margin-bottom: 30px;
  text-align: center;
}

/* H1 — rainbow animated */
@keyframes rainbow-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 72px;
  letter-spacing: 2px;
  margin: 8px auto;
  background: linear-gradient(90deg, #ff0000, #ff7700, #ffff00, #00cc00, #0000ff, #8b00ff, #ff0000);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-shift 3s linear infinite;
}

/* Nav */
nav {
  text-align: center;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #f405a3;
  font-weight: 900;
  font-size: 36px;
  padding: 2px 8px;
  margin-right: 15px;
  transition: color 0.1s;
}

nav a:hover {
  color: white;
  background-image: url('images/fire.gif');
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

/* Marquee */
marquee {
  color: yellow;
  font-size: 18px;
  padding: 10px 0;
}

/* Main content */
main {
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: center;
}

main h2 {
  margin-bottom: 10px;
}

main p {
  margin-bottom: 15px;
}

/* Artist map SVG container */
.artist-map {
  width: 500px;
  margin: 20px auto;
}

/* Highlight (fire bg text) */
.highlight {
  background-image: url('images/fire.gif');
  background-size: cover;
  background-position: center;
  padding: 2px 6px;
  border-radius: 3px;
  color: white;
}

/* Booking form */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 15px auto;
  text-align: left;
}

form label {
  font-weight: bold;
  font-size: 16px;
}

form input,
form textarea {
  width: 100%;
  padding: 8px;
  font-size: 15px;
  border: 1px solid #999;
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

form button {
  width: fit-content;
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
  background: #f405a3;
  color: white;
  border: none;
  font-weight: 900;
  letter-spacing: 1px;
}

form button:hover {
  background: #ff66cc;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
  text-align: center;
}
@media (max-width: 768px) {

  body {
    padding: 10px;
  }

  h1 {
    font-size: 36px;
    letter-spacing: 1px;
  }

  nav a {
    font-size: 22px;
  }

  /* Stack the Spock + laptop + disks column instead of row */
  main > div[style] {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* Artist map full width */
  .artist-map {
    width: 100% !important;
  }

  /* Skull smaller on mobile */
  header img[alt="skull"] {
    width: 100px !important;
  }

  /* Zoom gif slightly smaller */
  header img[alt="Enter"] {
    width: 110px !important;
  }

  /* Marquee smaller */
  marquee {
    font-size: 14px;
  }

  /* Welcome text smaller */
  main p {
    font-size: 16px !important;
  }

  /* Booking form full width */
  form {
    width: 100%;
    padding: 0 10px;
  }

  /* Footer */
  footer {
    font-size: 12px;
  }

}