:root {
  /* COLORS */
  --bg-dark: #111;
  /* deep charcoal/black */
  --accent-1: #e91e63;
  /* neon pink */
  --accent-2: #00e676;
  /* electric lime */
  --text-light: #fafafa;
  /* off-white */
  --text-muted: #ccc;
  /* light gray for subtext */
  /* TYPOGRAPHY */
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Bangers', cursive;
  /* SPACING */
  --sp-small: 0.5rem;
  --sp-medium: 1rem;
  --sp-large: 2rem;
}

/* ----------------------------------------
   RESET & BASE STYLES
   ---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Utility container to constrain width */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-medium) 0;
}

/* Headings use display font, accented color */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--accent-1);
  margin-bottom: var(--sp-small);
  text-transform: uppercase;
  letter-spacing: 1px;
}

p,
ul,
li {
  color: var(--text-muted);
}

/* Links */
a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

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

/* ----------------------------------------
   GRID & UTILITY CLASSES
   ---------------------------------------- */
.grid-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-large);
}

@media (max-width: 768px) {
  .grid-two-columns {
    grid-template-columns: 1fr;
  }
}

.songs-grid,
.merch-grid,
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-medium);
}

/* ----------------------------------------
   HEADER / HERO
   ---------------------------------------- */
   /* ----------------------------------------
      HEADER / HERO (adjusted)
      ---------------------------------------- */
   .header-panel {
     /* If you’d like, you can change or remove this background */
     background: linear-gradient(
       135deg,
       rgba(30, 0, 60, 0.9),
       rgba(0, 0, 0, 0.8)
     );
     height: 80vh;                  /* Keep the header tall */
     display: flex;
     align-items: center;           /* Center vertically */
     justify-content: center;       /* Center horizontally */
     text-align: center;
   }

   /* Enlarge the logo image */
   .logo {
  width: 550px;
  max-width: 90%;
  height: auto;

  /* Keep the pop-in animation on page load (runs once) */
  animation:
    logo-pop 1s ease-out both,
    /* Then start the pulse, 3s duration, ease-in-out, infinite loop */
    logo-pulse 3s ease-in-out 2s infinite;
    /* ↑ the “2s” here is a delay: it waits 2s after pop finishes before pulsing */
}

/* Optional: if you want the pop portion faster or slower, just adjust “logo-pop 1s …” */


   /* You can remove or comment out the band-title and tagline rules if you no longer need them:
   .band-title { display: none; }
   .tagline   { display: none; }
   */

   /* Optionally, if you prefer to entirely disable the pop/fade animation now that there’s no text, override these: */
   @keyframes logo-pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(233, 30, 99, 0)); /* no glow */
  }
  50% {
    transform: scale(1.05);                            /* grow to 105% */
    filter: drop-shadow(0 0 15px rgba(233, 30, 99, 0.6)); /* subtle pink glow */
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(233, 30, 99, 0)); /* back to no glow */
  }
}


/* ----------------------------------------
   BAND MEMBERS SECTION
   ---------------------------------------- */
.members-panel {
  background-color: #1a1a1a;
  /* slightly lighter than pure black */
  padding: var(--sp-large) 0;
}

/* Already have this for the circle crop: */
.member-image-wrapper {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}
.member-image-wrapper:hover {
  transform: scale(1.05);
}
.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Update here: */
.grid-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-large);

  /* Center everything inside each column: */
  justify-items: center;
  align-items: center; /* optional, if you also want vertical centering */
}

/* You may already have something like: */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-medium) 0;
}

.member-info h2 {
  font-size: 2rem;
  color: var(--accent-1);
}

.member-info ul {
  list-style: none;
  margin-top: var(--sp-small);
}

.member-info li {
  margin-bottom: var(--sp-small);
  padding-left: 1rem;
  position: relative;
}

.member-info li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

/* ----------------------------------------
   MUSIC SECTION
   ---------------------------------------- */
.music-panel {
  background: radial-gradient(circle at top left, #2a0d36, #000);
  padding: var(--sp-large) 0;
}

.music-panel h2 {
  text-align: center;
  margin-bottom: var(--sp-large);
}

.bio {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-large);
  font-size: 1.1rem;
  color: var(--text-light);
}

.songs-grid {
  gap: var(--sp-large);
}

.song-card {
  background-color: #222;
  padding: var(--sp-medium);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.song-card:hover {
  transform: translateY(-5px);
  background-color: #2c1a3e;
}

.song-title {
  font-size: 1.25rem;
  color: var(--accent-2);
  margin-bottom: var(--sp-small);
}

.song-card audio {
  width: 100%;
  outline: none;
}

/* Social icon styling */
.social-links {
  text-align: center;
  margin-top: var(--sp-large);
}

.social-icon {
  width: 50px;
  margin: 0 var(--sp-small);
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2) rotate(10deg);
}

/* ----------------------------------------
   TOUR DATES SECTION
   ---------------------------------------- */
.tour-panel {
  background-color: #0f0f0f;
  padding: var(--sp-large) 0;
  text-align: center;
  color: var(--text-light);
}

.ticket-pricing {
  margin-bottom: var(--sp-large);
  font-size: 1.1rem;
}

.price-vip {
  color: var(--accent-1);
  margin-right: var(--sp-medium);
}

.price-ga {
  color: var(--accent-2);
}

.tour-grid {
  display: flex;
  justify-content: center;
  gap: var(--sp-large);
  flex-wrap: wrap;
}

.tour-month-card {
  background-color: #1e1e1e;
  padding: var(--sp-medium);
  border-radius: 8px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.tour-month-card:hover {
  transform: translateY(-5px);
  background-color: #2a2a2a;
}

.tour-month-card h3 {
  margin-bottom: var(--sp-small);
  color: var(--accent-1);
}

.tour-days {
  list-style: none;
  padding: 0;
}

.tour-days li {
  margin-bottom: var(--sp-small);
  padding: var(--sp-small);
  background-color: #111;
  border-radius: 4px;
  color: var(--text-light);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.tour-days li:hover {
  background-color: #2a0d36;
}

.tour-days li.selected {
  background-color: var(--accent-2);
  color: #111;
}

#selected-date-info {
  margin-top: var(--sp-large);
  font-size: 1.1rem;
  color: var(--accent-2);
}

/* ----------------------------------------
   MERCHANDISE SECTION
   ---------------------------------------- */
.merch-panel {
  background: linear-gradient(135deg, #2b0c3c, #000);
  padding: var(--sp-large) 0;
}

.merch-grid {
  gap: var(--sp-large);
}

.merch-card {
  background-color: #111;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.merch-card:hover {
  transform: translateY(-5px);
  background-color: #222;
}

.merch-image-wrapper {
  position: relative;
  overflow: hidden;
}

.merch-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.merch-card:hover .merch-image-wrapper img {
  transform: scale(1.1);
}

.sold-out-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--accent-1);
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: var(--sp-small) var(--sp-medium);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.merch-card.sold-out .sold-out-overlay {
  opacity: 1;
}

.merch-title {
  font-size: 1.2rem;
  color: var(--accent-2);
  text-align: center;
  margin: var(--sp-small) 0;
}

.merch-desc {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: var(--sp-small);
}

.merch-price {
  text-align: center;
  color: var(--text-light);
  margin-bottom: var(--sp-small);
}

/* ----------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------- */
.testimonials-panel {
  background-color: #111;
  padding: var(--sp-large) 0;
  position: relative;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-light);
  text-align: center;
  margin-bottom: var(--sp-small);
}

.testimonial cite {
  display: block;
  text-align: right;
  font-size: 1rem;
  color: var(--accent-2);
}

/* ----------------------------------------
   CONTACT & FOOTER
   ---------------------------------------- */
.contact-panel {
  background-color: #1a0a2a;
  padding: var(--sp-large) 0;
  text-align: center;
  color: var(--text-light);
}

.contact-panel h2 {
  color: var(--accent-1);
  margin-bottom: var(--sp-small);
}

.contact-panel p {
  font-size: 1rem;
  margin-bottom: var(--sp-large);
}

.contact-panel .email a {
  font-weight: 600;
  text-decoration: underline;
  color: var(--accent-2);
}

.footer-poster {
  width: 150px;
  margin: var(--sp-medium) 0;
  opacity: 0.8;
}

footer {
  margin-top: var(--sp-small);
  font-size: 0.9rem;
  color: var(--text-muted);
}
