/* gallery.css */

.gallery-filter-section {
  background: var(--white); border-bottom: 1px solid var(--light-grey);
  padding: 16px 36px; position: sticky; top: 64px; z-index: 10;
}
.gallery-filter-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.gfilter-btn {
  padding: 7px 18px; border: 1.5px solid var(--light-grey); border-radius: var(--radius-sm);
  background: transparent; color: var(--slate-light);
  font-family: var(--font-body); font-size: 0.79rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.gfilter-btn:hover  { border-color: var(--amber); color: var(--amber); background: var(--amber-glow); }
.gfilter-btn.active { background: var(--amber); border-color: var(--amber); color: var(--navy); }

.gallery-section { padding: 46px 36px; background: var(--off-white); }
.gallery-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 18px; margin-bottom: 44px;
}
.gallery-card {
  background: var(--white); border: 1px solid var(--light-grey);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-amber); }
/*.gallery-card-img {
  height: 210px; background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
*/
.gallery-card-img {
  height: 240px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.gallery-card-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.42s var(--ease);
}
.gallery-card:hover .gallery-card-img img { transform: scale(1.05); }
.gallery-card-overlay {
  position: absolute; inset: 0; background: rgba(6,13,31,0.48);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-zoom { color: var(--amber); font-size: 1.4rem; }

.gallery-card.coming .gallery-card-img.placeholder {
  background: var(--navy-mid); flex-direction: column; gap: 7px;
  color: var(--amber); font-size: 1.8rem; cursor: default;
}
.gallery-card.coming .gallery-card-img.placeholder::after {
  content: 'Coming Soon';
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  color: var(--amber); letter-spacing: 1px; text-transform: uppercase;
}
.gallery-card.coming:hover { transform: none; box-shadow: none; cursor: default; }
.gallery-card-caption { padding: 12px 16px; font-size: 0.80rem; font-weight: 600; color: var(--navy); border-top: 1px solid var(--light-grey); }

.coming-soon-banner { background: var(--navy); border-radius: var(--radius); padding: 42px 28px; text-align: center; max-width: 1200px; margin: 0 auto; }
.csb-inner { max-width: 480px; margin: 0 auto; }
.coming-soon-banner i  { font-size: 2rem; color: var(--amber); display: block; margin-bottom: 14px; }
.coming-soon-banner h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 9px; }
.coming-soon-banner p  { color: var(--muted); font-size: 0.83rem; line-height: 1.68; margin-bottom: 20px; }

.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(6,13,31,0.95);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px); animation: lbFadeIn 0.28s var(--ease);
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-img-wrap { max-width: 88vw; max-height: 82vh; }
.lb-img-wrap img { max-width: 100%; max-height: 82vh; border-radius: var(--radius-sm); object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
  position: fixed; background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13); color: var(--white);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.92rem; transition: var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--amber); border-color: var(--amber); color: var(--navy); }
.lb-close { top: 18px; right: 18px; }
.lb-prev  { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-caption { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.65); font-size: 0.80rem; }

@media (max-width: 768px) {
  .gallery-filter-section { padding: 14px 20px; }
  .gallery-section { padding: 36px 20px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-card-img { height: 150px; }
}

.brochure-section{
padding:80px 20px;
display:flex;
justify-content:center;
}

.brochure-card{
background:var(--navy);
color:white;
padding:60px 40px;
border-radius:20px;
text-align:center;
max-width:700px;
width:100%;
box-shadow:var(--shadow-lg);
}

.brochure-icon{
font-size:42px;
color:var(--amber);
margin-bottom:20px;
}

.brochure-card h2{
font-family:var(--font-display);
margin-bottom:12px;
}

.brochure-card p{
color:var(--muted);
margin-bottom:30px;
}

/* Brochure buttons mobile fix */

@media (max-width:768px){

.brochure-card .btn-primary,
.brochure-card .btn-outline{
display:block;
width:100%;
margin-top:12px;
text-align:center;
}

}

/* ── GALLERY DETAIL HINT ───────────────────────── */
.gallery-card { cursor: pointer; }
.gallery-detail-hint {
  display: block;
  font-size: 0.70rem;
  color: var(--amber);
  font-weight: 600;
  margin-top: 3px;
}
.gallery-card-caption {
  display: flex;
  flex-direction: column;
}

/* Group label inside grid */
.gallery-group-label-inline {
  grid-column: 1 / -1;
  font-size: 0.72rem; font-weight: 700;
  color: var(--slate-light); text-transform: uppercase;
  letter-spacing: 1.5px; padding: 24px 0 8px;
  display: flex; align-items: center; gap: 7px;
  border-top: 1px solid var(--light-grey); margin-top: 12px;
}
.gallery-group-label-inline i { color: var(--amber); }

.gallery-container { max-width: 1200px; margin: 0 auto; padding: 0 36px; }