/* GLASS BOX */
.glass-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px;
}

/* NAV PILLS */
.nav-pill {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 14px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.nav-pill:hover,
.nav-pill.active {
  border-color: #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.7);
  color: #d4af37;
}

/* HOTSTAR STYLE ROW */
.gallery-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  max-width: 100%;
  scroll-behavior: smooth;
}

/* IMAGE CARD */
.gallery-card {
  height: 220px;
  min-width: 300px;
  max-width: 300px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* DESKTOP HOVER ONLY (CRITICAL FIX) */
@media (hover: hover) and (pointer: fine) {
  .gallery-card:hover {
    transform: scale(1.12);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
  }
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-card {
    height: 160px;
    min-width: 240px;
    max-width: 240px;
  }
}
