* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: white;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );

  z-index: 20;
  
}

.menu-btn {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-btn span {
  height: 3px;
  background: white;
}

.menu-panel {
  position: fixed;
  right: -100%;
  top: 0;
  width: 280px;
  height: 100vh;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;

  transition: right 0.4s ease;
  z-index: 15;
}

.menu-panel.open {
  right: 0;
}

.menu-panel button {
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

.menu-panel button:hover {
  color: red;
}

.landing,
.page {
  display: none;
  padding-top: 120px; 
}


.landing.active,
.page.active {
  display: block;
}

.page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-band {
  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.75)
    ),
    url("../images/band-hero.jpg") center/cover no-repeat;
}


.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.btn-primary {
  padding: 18px 56px;
  border: 2px solid red;
  color: red;
  text-decoration: none;
  font-weight: 800;
}

.section {
  padding: 120px 20px;
  text-align: center;
}

.section.dark {
  background: #0a0a0a;
}

.section h2 {
  color: red;
  margin-bottom: 20px;
}

.section-text {
  opacity: 0.7;
}

.music-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.music-icons img {
  width: 60px;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.music-icons img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.show-card img {
  width: 100%;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.album-card img {
  width: 100%;
  border: 1px solid #222;
  transition: transform 0.3s ease;
}

.album-card:hover img {
  transform: scale(1.05);
}

.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  cursor: pointer;
  break-inside: avoid;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.gallery-grid div {
  background: #111;
  height: 200px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.contact-card {
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 40px;
}

.contact-card h3 {
  color: red;
  margin-bottom: 20px;
}

.location {
  margin-top: 40px;
  opacity: 0.6;
}

.back-btn {
  background: none;
  border: 1px solid red;
  color: red;
  padding: 10px 18px;
  cursor: pointer;
  margin-bottom: 40px;
}

.back-btn:hover {
  background: red;
  color: black;
}

@media (max-width: 768px) {
  .shows-grid,
  .music-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-inner {
    padding: 0 20px;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn-primary {
    padding: 14px 32px;
    font-size: 0.9rem;
  }
}

.contact-card a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.contact-card a:hover {
  opacity: 1;
  text-decoration: underline;
}

.album-card span {
  color: white;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.album-card:hover span {
  opacity: 1;
  text-decoration: underline;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  cursor: pointer;
  color: white;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;     
  color: white;
  cursor: pointer;
  user-select: none;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 4rem;
  }
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.35s ease;
}


.lightbox-img.show {
  opacity: 1;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  color: white;
  opacity: 0.7;
  font-size: 1rem;
}


@keyframes logoIntro {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.scrolled .nav {
  background: rgba(0,0,0,0.95);
}

.logo {
  color: red;
  font-weight: 800;
  letter-spacing: 3px;

  opacity: 1;
  transform: translateY(1);

  transition: opacity 0.25s ease, transform 0.25s ease;
  transform-origin: left center;
}

.logo.compact {
  opacity: 0;
  transform: scaleX(0.7);
}

.lightbox-img {
  position: relative;
  z-index: 1;
}

.lightbox-prev,
.lightbox-next,
.lightbox-close,
.lightbox-counter {
  z-index: 5;
}

.lightbox-prev,
.lightbox-next {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show-controls .lightbox-prev,
.lightbox.show-controls .lightbox-next {
  opacity: 0.85;
}

.lightbox.show-controls .lightbox-prev:hover,
.lightbox.show-controls .lightbox-next:hover {
  opacity: 1;
}

.menu-btn span {
  transition:
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  transform-origin: center;
}


.menu-btn.open span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-btn.open span:nth-child(2) {
  transform: rotate(90deg);
}

.menu-btn.open span:nth-child(3) {
  opacity: 0;
}

@keyframes tBounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.menu-btn.open {
  filter:
    drop-shadow(0 0 8px rgba(255, 0, 0, 0.8))
    drop-shadow(0 0 18px rgba(255, 0, 0, 0.6))
    drop-shadow(0 0 30px rgba(255, 0, 0, 0.35));
.menu-btn.open {
  animation: glowPulse 1.8s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    filter:
      drop-shadow(0 0 6px rgba(255, 0, 0, 0.6))
      drop-shadow(0 0 16px rgba(255, 0, 0, 0.35));
  }
  50% {
    filter:
      drop-shadow(0 0 10px rgba(255, 0, 0, 0.95))
      drop-shadow(0 0 26px rgba(255, 0, 0, 0.55))
      drop-shadow(0 0 40px rgba(255, 0, 0, 0.3));
  }
  100% {
    filter:
      drop-shadow(0 0 6px rgba(255, 0, 0, 0.6))
      drop-shadow(0 0 16px rgba(255, 0, 0, 0.35));
  }
}
}.menu-btn:active {
  transform: scale(0.92);
}
.menu-btn.open span {
  box-shadow: 0 0 6px rgba(255,255,255,0.25);
}
.menu-btn span:nth-child(1) {
  transition-delay: 0s;
}

.menu-btn span:nth-child(2) {
  transition-delay: 0.05s;
}

.menu-btn span:nth-child(3) {
  transition-delay: 0.1s;
}

.band-member img {
  width: 100%;
  max-width: 200px;  
  margin: 0 auto 18px;
  display: block;
  border-radius: 6px;
}

.band-member {
  margin-top: 80px;   
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

.footer {
  text-align: center;
  padding: 40px 20px 30px;
  font-size: 0.85rem;
  opacity: 0.45;
  letter-spacing: 2px;
  background: #000;
  text-transform: uppercase;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px 40px;
  margin-top: 80px;
}

.page {
  background:
    radial-gradient(
      circle at top center,
      rgba(255, 0, 0, 0.12),
      rgba(0, 0, 0, 0.95) 60%
    ),
    linear-gradient(
      to bottom,
      rgba(255, 0, 0, 0.08),
      rgba(0, 0, 0, 1) 70%
    );
}

.page {
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 0, 0, 0.06),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 40%,
      rgba(255, 0, 0, 0.05),
      transparent 65%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(255, 0, 0, 0.04),
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      #000 0%,
      #050505 100%
    );

  background-size: 200% 200%;
  animation: bgWaves 32s ease-in-out infinite;
}

@keyframes bgWaves {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.footer {
  position: relative;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 0, 0, 0.05),
      transparent 65%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 0, 0, 0.04),
      transparent 70%
    ),
    linear-gradient(
      to top,
      #000000,
      #050505 100%
    );

  background-size: 200% 200%;
  animation: footerWaves 32s ease-in-out infinite;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #c10000;
  text-shadow: 0 0 6px rgba(193, 0, 0, 0.6);
}