/* ───────────────────────────────────────
   COLLECTIBLES PAGE — VERSION D RESTORED
──────────────────────────────────────── */

/* COLLECTIBLES PAGE HERO */
.hero-collectibles {
  background-image: url('../img/collecthero.png'); /* update filename */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;

  border-bottom: var(--border-comic);
  box-shadow: var(--glow-teal-gold);
}

.hero-collectibles h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--teal);
  text-shadow: var(--glow-teal-gold);
  text-align: center;
}


/* ───────────────────────────────────────
   CATEGORY CARDS
──────────────────────────────────────── */
.collectible-categories {
  max-width: 1300px;
  margin: 4rem auto;
  padding: 0 1.5rem;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.collectible-card {
  background: var(--panel);
  border: var(--border-comic);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--glow-teal-gold);
  text-align: center;

  transition: transform .35s ease, box-shadow .35s ease;
  transform-style: preserve-3d;
}

.collectible-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  text-shadow: var(--glow-teal-gold);
  margin-bottom: 1rem;
}

.collectible-card ul {
  list-style: none;
  padding: 0;
}

.collectible-card li {
  font-size: 1.2rem;
  color: var(--white);
  margin: .35rem 0;
}

/* HOVER — A2 MEDIUM TILT + POP */
.collectible-card:hover {
  transform: rotateX(6deg) rotateY(-6deg) scale(1.08);
  box-shadow:
    0 0 25px var(--teal-glow),
    0 0 35px var(--gold-glow),
    0 0 50px rgba(255,215,0,.35);
}

/* ───────────────────────────────────────
   GALLERY GRID
──────────────────────────────────────── */
.collectibles-gallery {
  max-width: 1300px;
  margin: 4rem auto 6rem;
  padding: 0 1.5rem;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
  box-shadow: var(--glow-teal-gold);

  transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-item img:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 25px var(--teal-glow),
    0 0 35px var(--gold-glow),
    0 0 50px rgba(255,215,0,.35);
}

/* ───────────────────────────────────────
   MOBILE OPTIMIZATION
──────────────────────────────────────── */
@media (max-width: 1000px) {
  .collectible-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .collectibles-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .collectible-categories {
    grid-template-columns: 1fr;
  }

  .collectibles-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 260px;
  }
}
