/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: #000;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

:root {
  --accent: #ff6a00;
}



/* Glow animation */
@keyframes pulseGlow {
  0% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(255,106,0,0.4)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 0 14px rgba(255,106,0,0.75)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(255,106,0,0.4)); }
}

/* Typography */
h1, h2, h3 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Bowlby One SC", sans-serif;
  font-weight: 400;
  color: #FFF4CD;
}

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

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5,54,119,0.61);
  backdrop-filter: blur(6px);
  padding: 12px 0;
  text-align: center;
  z-index: 1000;
}

.nav ul { list-style: none; padding: 0; margin: 0; }
.nav li { display: inline-block; margin: 0 18px; }

.nav a {
  color: #FFF4CD;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.nav a:hover { color: var(--accent); }

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero {
  position: relative;
  height: 120vh;
  background: url("img/hero.jpg") no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.40),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
}

@media (max-width: 768px) {
  .hero { background-position: right center; }
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.30),
      rgba(0,0,0,0.20)
    );
  }
}

.hero-content { position: relative; z-index: 2; text-align: center; }
.logo { width: 205px; margin-bottom: 20px; animation: pulseGlow 3s infinite; }
.tagline { margin-top: -10px; opacity: 0.9; color: #FFF4CD; font-weight: 700; }

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  background: var(--accent);
  padding: 12px 26px;
  border-radius: 999px;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: 0.25s ease;
}

.btn:hover { background: #fff7c2; color: #333; }
.btn:active { background: var(--accent); color: #000; }

/* --------------------------------------------------
   SOCIAL ICONS
-------------------------------------------------- */
.social { margin-top: 20px; }
.social a { margin: 0 10px; }

/* --------------------------------------------------
   BASE SECTION WRAPPER
-------------------------------------------------- */
.section {
  line-height: 1.6;
  padding: 65px 20px;
  max-width: 1100px;
  margin: auto;
}

/* --------------------------------------------------
   FULL-WIDTH BACKGROUND SECTIONS
-------------------------------------------------- */
#about,
#release,
#music,
#events,
#gallery {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#about > *,
#release > *,
#music > *,
#events > *,
#gallery > * {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------
   ABOUT — Blue → Orange → Midnight
-------------------------------------------------- */
#about {
  background-image: url("img/ambient_about.jpg");
  background-attachment: fixed;
}



@media (max-width: 768px) {
  #about { background-attachment: scroll; }
}

/* --------------------------------------------------
   RELEASE — Orange → Amber → Shadow
-------------------------------------------------- */
#release {
  background-image: url("img/release-bg.png");
   background-attachment: fixed;
}
@media (max-width: 768px) {
  #release { background-attachment: scroll; }
}
.release-row .info h4 {
  margin-bottom: 10px;
}

.release-row:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------
   MUSIC — Blue → Teal → Deep
-------------------------------------------------- */
#music {
  background-image: url("img/music-bg.png");
   background-attachment: fixed;
}
@media (max-width: 768px) { 
  #music { background-attachment: scroll; }
}


/* --------------------------------------------------
   VIDEO — Purple → Indigo → Black
-------------------------------------------------- */
#gallery {
  background-image: url("img/gallery-bg.png");
   background-attachment: fixed; 
}
@media (max-width: 768px) {
  #gallery { background-attachment: scroll; }
}


/* --------------------------------------------------
   EVENTS — Purple → Indigo → Black
-------------------------------------------------- */
#events {
  background-image: url("img/events-big.png");
   background-attachment: fixed; 
}
@media (max-width: 768px) {
  #events { background-attachment: scroll; }
}

/* --------------------------------------------------
   SPLIT LAYOUT
-------------------------------------------------- */
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.cover img {
  width: 225px;
  border-radius: 8px;
}

/* --------------------------------------------------
   VIDEO IFRAME
-------------------------------------------------- */
iframe {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  margin-top: 20px;
}

/* --------------------------------------------------
   TOUR TABLE
-------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 14px;
  border-bottom: 1px solid #333;
}

/* --------------------------------------------------
   SIGNUP FORM
-------------------------------------------------- */
form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

input[type="email"] {
  flex: 1;
  padding: 12px;
  border-radius: 4px;
  border: none;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
  background: #111;
  text-align: center;
  padding: 50px 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.social-footer {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-footer .icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--accent);
  transition: 0.25s ease;
}

.social-footer .icon svg {
  width: 18px;
  height: 18px;
}

.social-footer .icon:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 12px var(--accent);
  transform: translateY(-3px);
}

/* --------------------------------------------------
   MOBILE MENU
-------------------------------------------------- */
.mobile-menu-btn {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 32px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2000;
}

.mobile-menu-btn span {
  height: 4px;
  background: #fff;
  border-radius: 4px;
  transition: 0.3s ease;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(5,54,119,0.95);
    backdrop-filter: blur(8px);
    padding-top: 80px;
    transition: 0.35s ease;
  }

  .nav.open { right: 0; }

  .nav ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .nav li { margin: 0; }
  .nav a { font-size: 1.4rem; }
}
.gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.gallery-overlay img {
  max-width: 75vw;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 1000000;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px 20px;
  z-index: 1000000;
  transition: 0.2s ease;
}

.arrow:hover {
  transform: translateY(-50%) scale(1.15);
}

.arrow.left {
  left: 40px;
}

.arrow.right {
  right: 40px;
}
/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-thumb {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-thumb:hover {
  transform: scale(1.05);
}

.gallery-overlay {
  position: fixed;          /* key: fixed, not absolute */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;            /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 3000;            /* above nav and everything else */
}

.gallery-overlay img {
  max-width: 75vw;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 3100;
}


/* scroll top */
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 45px;
  height: 45px;
  background: rgba(255, 106, 0, 0.9);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999999; /* forces it above EVERYTHING */
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.7);
}

#scrollTopBtn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 25px rgba(255, 106, 0, 1);
}

/* toggle music */
#musicToggle {
  position: fixed;
  top: 70px; /* adjust if needed depending on nav height */
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;
  cursor: pointer;
}

#musicToggle .bars {
  display: flex;
  gap: 4px;
}

#musicToggle .bars span {
  width: 6px;
  height: 20px;
  background: var(--accent);
  display: block;
  border-radius: 3px;
  animation: bounce 0.6s infinite ease-in-out;
}

#musicToggle .bars span:nth-child(1) {
  animation-delay: 0s;
}
#musicToggle .bars span:nth-child(2) {
  animation-delay: 0.15s;
}
#musicToggle .bars span:nth-child(3) {
  animation-delay: 0.3s;
}

/* Animation */
@keyframes bounce {
  0%, 100% { height: 6px; }
  50% { height: 22px; }
}

/* Paused state */
#musicToggle.paused .bars span {
  animation: none;
  height: 8px;
}