.gallery-subheader-bg{
  background: linear-gradient(135deg, #000000, #2b1d08, #000000);
}

.gallery-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:18px;
}

.gallery-filter-btn{
  border: 1px solid rgba(255,215,0,.22);
  background: rgba(255,255,255,.03);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:.5px;
  transition: .25s ease;
  user-select:none;
}

.gallery-filter-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,215,0,.38);
}

.gallery-filter-btn.is-active{
  background: linear-gradient(90deg, rgba(175,126,47,.85), rgba(255,215,0,.85));
  color:#000;
  border-color: transparent;
}

.gallery-card{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,215,0,.18);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
  cursor: pointer;
}

.gallery-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,215,0,.30);
  box-shadow: 0 25px 70px rgba(0,0,0,.70);
}

.gallery-thumb{
  aspect-ratio: 4 / 3;
  width:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}

.gallery-card-body{
  padding: 14px 16px 16px;
}

.gallery-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border: 1px solid rgba(255,215,0,.18);
  background: rgba(0,0,0,.35);
  font-size: 12px;
  letter-spacing:.5px;
  opacity:.95;
}

.gallery-badge i{ color:#ffd700; }

.gallery-title{
  margin-top:10px;
  margin-bottom:0;
  font-size: 16px;
  line-height:1.4;
  color:#fff;
}

.gallery-item[hidden]{ display:none !important; }

/* Lightbox */
.gallery-lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 20000;
}

.gallery-lightbox.is-open{ display:flex; }

.gallery-lightbox-dialog{
  width:min(1000px, 100%);
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,215,0,.18);
  background: rgba(10,10,10,.92);
  box-shadow: 0 25px 80px rgba(0,0,0,.8);
}

.gallery-lightbox-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,215,0,.12);
}

.gallery-lightbox-top .cap{
  font-size: 14px;
  opacity:.9;
  margin:0;
}

.gallery-lightbox-close{
  border: 1px solid rgba(255,215,0,.22);
  background: transparent;
  color:#fff;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  transition:.2s ease;
}

.gallery-lightbox-close:hover{
  background: rgba(255,215,0,.12);
}

.gallery-lightbox-img{
  width:100%;
  height: auto;
  display:block;
  max-height: 72vh;
  object-fit: contain;
  background: #000;
}

