/* ===== Page Title ===== */
.page-title {
  padding: 60px 0;
  text-align: center;
  background: #f7f7f7;
}
.page-title h1 {
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: 10px;
}
.page-title .breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}
.page-title .breadcrumb span {
  margin: 0 5px;
  color: var(--color-dark);
}

/* ===== Gallery Section ===== */
.gallery-section {
  padding: 60px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 1000;
}
