/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.gallery-header {
  text-align: center;
}

.gallery-header h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.gallery-header p {
  color: #64748b;
  font-size: 14px;
}

/* Filter Buttons */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: #f1f5f9;
}

.filter-btn.active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}


/* Image Card */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
