/* =========================
   PAGE BANNER – GALLERY
========================= */

.page-banner {
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Gallery specific background */
.gallery-banner {
  background-image: url("../images/printing-banner.jpg");
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Content */
.banner-content {
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

.banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner {
    min-height: 280px;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 15px;
  }
}


/* =========================
   GALLERY FILTER SECTION
========================= */

.gallery-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

/* Filter Buttons */
.gallery-filters {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  border: 1px solid #d62828;
  background: transparent;
  color: #d62828;
  padding: 8px 18px;
  margin: 5px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #d62828;
  color: #fff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Gallery Item */
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Hide Items */
.gallery-item.hide {
  display: none;
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-item img {
    height: 180px;
  }
}

/* =========================
   PRINTING CATEGORY SECTION
========================= */

.printing-category-section {
  padding: 60px 20px;
  background: #ffffff;
}

.category-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.category-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.category-seo-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Card */
.category-item {
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.category-item h3 {
  font-size: 16px;
  padding: 15px;
  color: #333;
}

/* Hover */
.category-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 576px) {
  .category-header h2 {
    font-size: 24px;
  }

  .category-item img {
    height: 180px;
  }
}

