/* ---------------------------------------------------
   SINGH LOGISTICS – GALLERY (PINK THEME)
   Matches Services pink gradients & glassmorphism
--------------------------------------------------- */

.gallery-page {
  padding-bottom: 3rem;
}

/* -------------------------------
   HERO SECTION 
------------------------------- */
.gallery-hero {
  padding: 6rem 1rem 4.5rem;
  text-align: center;
  position: relative;
  color: #fff;
  background:
     linear-gradient(135deg, rgba(212, 118, 68, 0.9), rgba(253, 129, 57, 0.9)),
    url("https://source.unsplash.com/1600x600/?logistics,truck,transport") center/cover no-repeat;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, #fa7a2a, transparent 55%),
    radial-gradient(circle at bottom right, #fa7a2a, transparent 60%);
  pointer-events: none;
}

.gallery-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.gallery-subtitle {
  max-width: 650px;
  margin: 0.25rem auto 0;
  font-size: 1rem;
  opacity: 0.95;
}

/* -------------------------------
   PAGE WRAPPER 
------------------------------- */
.gallery-shell {
  margin-top: -25px;
  padding: 2.8rem 1.2rem 3.5rem;

  background:
    radial-gradient(circle at top, #ffffff, transparent 999%),
    rgba(236, 215, 233, 0.95);
  
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -20px 50px rgba(255, 254, 255, 0.65);
}

/* -------------------------------
   FILTER BUTTONS 
------------------------------- */
.gallery-filters .btn {
  margin: 0 0.25rem;
  border-radius: 999px;
  font-size: 0.80rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(225,140,209,0.45);
  color: #4c1d46;
  backdrop-filter: blur(10px);
}

.gallery-filters .btn.active {
  color: #fff;
  background: linear-gradient(135deg, #fa7a2a, #fa7a2a);
  border-color: transparent;
}

.filter-count {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* -------------------------------
   FULLSCREEN CTA BUTTON 
------------------------------- */
.btn-cta-fullscreen {
  border-radius: 999px;
  border: 1px solid rgba(225,140,209,0.7);
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: #e6713f;
  padding: 0.55rem 1.35rem;
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.btn-cta-fullscreen:hover {
  background: linear-gradient(135deg, #e6713f, #e6713f);
  color: #fff;
  border-color: transparent;
}

/* -------------------------------
   GRID IMAGE CARDS 
------------------------------- */
.gallery-img {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;

  background: #fdf2f8;
  border: 1px solid rgba(225,140,209,0.45);

  box-shadow: 0 10px 35px rgba(225,140,209,0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(225,140,209,0.85);
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-img:hover img {
  transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(76,29,46,0.85),
    transparent
  );
  opacity: 0;
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.25s ease;
}

.gallery-img:hover .gallery-overlay {
  opacity: 1;
}

/* Category Badge */
.badge-cat {
  background: #05a0fa;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  color: #ffffff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Filter visibility */
.filter-item {
  display: none;
}
.filter-item.show {
  display: block;
}

/* -------------------------------
   LOAD MORE BUTTON 
------------------------------- */
.btn-load-more {
  margin-top: 1.8rem;
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  font-size: 0.92rem;
  color: #fff;
  border: none;

  background: linear-gradient(135deg,#fa7a2a, #fa7a2a);
  box-shadow: 0 12px 35px rgba(247, 247, 247, 0.8);
  transition: box-shadow .25s ease;
}

.btn-load-more:hover {
  box-shadow: 0 18px 55px #eaeced;
}

/* -------------------------------
   RESPONSIVE 
------------------------------- */
@media (max-width: 768px) {
  .gallery-shell {
    padding-inline: 0.75rem;
  }

  .btn-cta-fullscreen {
    width: 100%;
  }

  .gallery-filters {
    justify-content: center;
  }
}
