/* ======================== */
/* Base Layout and Globals */
/* ======================== */

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(120deg, #000000, #1a1a1a, #000000);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  color: #ff6d00;
  min-height: 100vh;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ================ */
/* Background Video */
/* ================ */

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.05;
  pointer-events: none;
}

/* ============== */
/* Content Layout */
/* ============== */

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2vh 2rem 5rem 2rem;
  flex: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Divider Between Sections */
.grid-divider {
  margin: 2rem auto 1.5rem;
  width: 60%;
  border: none;
  border-top: 2px solid #ff6d00;
  box-shadow: none;
  opacity: 0;
  animation: fadeInDivider 1.2s ease-out forwards;
}

@keyframes fadeInDivider {
  to {
    opacity: 1;
  }
}


/* Section Heading (e.g. Socials) */
.section-label {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #ff6d00;
  text-shadow: 0 0 10px #ff6d00;
}

/* ============= */
/* Logo Styling  */
/* ============= */

.logo-img {
  width: 240px;
  max-width: 80%;
  display: block;
  margin: 0 auto 1rem auto;
  border-radius: 8px;
  z-index: 2;
  animation: glitchLogo 2s infinite;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.logo-img:hover {
  animation: glitchHover 0.3s steps(2, end) infinite;
  filter: brightness(1.2) contrast(1.5);
  transform: scale(1.05);
}

@keyframes glitchLogo {
  0% { transform: translate(0, 0); opacity: 1; }
  20% { transform: translate(-1px, 1px); opacity: 0.9; }
  40% { transform: translate(2px, -2px); opacity: 1; }
  60% { transform: translate(-1px, 2px); opacity: 0.95; }
  80% { transform: translate(1px, -1px); opacity: 1; }
  100% { transform: translate(0, 0); opacity: 1; }
}

@keyframes glitchHover {
  0% { transform: translate(0px, 0px); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-3px, 1px); }
  80% { transform: translate(3px, -1px); }
  100% { transform: translate(0px, 0px); }
}

.logo {
  font-size: 3rem;
  margin: 0;
}

.tagline {
  color: silver;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

/* ============= */
/* Music Player  */
/* ============= */

.player {
  margin-top: 1rem;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 109, 0, 0.2);
}

.player iframe {
  width: 100%;
  height: 166px;
  border: none;
}

/* ============== */
/* Social Links  */
/* ============== */

.socials {
  margin-top: 2rem;
}

.socials a {
  color: #ff6d00;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.socials a:hover {
  color: silver;
}

/* ========== */
/* Live Button */
/* ========== */

.live-button {
  display: inline-block;
  margin: 2rem auto 0 auto;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: bold;
  color: black;
  text-decoration: none;
  background-color: grey;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
}

.live-button.live {
  background-color: #00e676;
  box-shadow: 0 0 20px #00e676, 0 0 40px #00e676;
  animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 10px #00e676; }
  50% { box-shadow: 0 0 20px #00e676, 0 0 40px #00e676; }
  100% { box-shadow: 0 0 10px #00e676; }
}

.live-button.offline {
  background-color: #ff1744;
}

/* ========== */
/* Events Grid */
/* ========== */

.events-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.event a {
  display: inline;
  color: silver;
  text-decoration: none;
  font-weight: bold;
  margin: 0 0.3rem;
}

.event a:hover {
  color: #ff6d00;
  text-shadow: 0 0 8px #ff6d00;
}
.event .location-link {
  color: #ff6d00;
  font-size: .8rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.event .artist-link {
  color: #ff6d00;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
  display: inline-block;
  overflow: hidden;
}


.event .artist-link:hover {
  color: silver;
}


.date-link span {
  white-space: pre;
  display: inline-block;
  font-size: 2rem; /* adjust as needed */
  animation: pulseLetter 2s ease-in-out infinite;
}

.date-link span:nth-child(1) { animation-delay: 0s; }
.date-link span:nth-child(2) { animation-delay: 0.35s; }
.date-link span:nth-child(3) { animation-delay: 0.15s; }
.date-link span:nth-child(4) { animation-delay: 0.5s; }
.date-link span:nth-child(5) { animation-delay: 0.1s; }
.date-link span:nth-child(6) { animation-delay: 0.6s; }
.date-link span:nth-child(7) { animation-delay: 0.3s; }
/* ...keep going as needed */


@keyframes pulseLetter {
  0%, 200% {
    transform: scale(.5);
  }
  50% {
    transform: scale(1.1);
  }
}


.artist-separator {
  color: silver;
  margin: 0 0.5rem;
  font-weight: normal;
}
.artist-date {
  color: silver;
  margin: 0 0.5rem;
  font-weight: normal;
  font-size: 1rem;
}

.event img {
  width: 100%;
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 109, 0, 0.3);
  transition: transform 0.3s ease;
}

.event img:hover {
  transform: scale(1.02);
}

/* ======= */
/* Footer  */
/* ======= */

footer {
  font-size: 0.75rem;
  color: gray;
  text-align: center;
  padding: 1rem;
  z-index: 2;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* ================ */
/* Responsive Media */
/* ================ */

@media (max-width: 600px) {
  .logo {
    font-size: 2rem;
  }
  .tagline {
    font-size: 1rem;
  }
  .logo-img {
    width: 180px;
  }
  .container {
    padding-bottom: 6rem;
  }
}
@media (max-width: 400px) {
  .logo {
    font-size: 1.5rem;
  }
  .tagline {
    font-size: 0.9rem;
  }
  .logo-img {
    width: 150px;
  }
  .player {
    max-width: 100%;
  }
  .event img {
    max-width: 100%;
  }
}

/* ================ */
/* About Content    */
/* ================ */
.bio-content {
  color: #c0c0c0;
  text-align: justify;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.1);

  font-size: 1.1rem;
  line-height: 1.6;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.bio-content p {
  margin-bottom: 1.5rem;
}
