/* =====================================================
   GALERIA.CSS — Gallery Page Specific Styles
   ===================================================== */

.gallery-page {
  min-height: 100vh;
}

/* ── Gallery Hero ── */
.gallery-hero {
  padding: 120px 0 40px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 30%, color-mix(in srgb, var(--accent2) 5%, transparent), transparent 70%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  transition: color 0.2s, gap 0.2s;
  font-family: var(--font-display);
}
.back-link:hover { color: var(--accent); gap: 12px; }
.back-link i { font-size: 0.75rem; }

.gallery-hero-text { margin-bottom: 36px; }
.gallery-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(125deg, var(--text) 0%, var(--accent) 55%, var(--accent2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 12px 0 10px;
  line-height: 1.1;
}
.gallery-hero-desc {
  color: var(--text2);
  font-size: 1.05rem;
}

/* Gallery stats row */
.gallery-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gstat { display: flex; flex-direction: column; }
.gstat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 18px color-mix(in srgb, var(--accent) 50%, transparent);
}
.gstat-label { font-size: 0.78rem; color: var(--text2); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.gstat-div { width: 1px; height: 32px; background: var(--border); }

/* ── Full gallery section ── */
.full-gallery-section {
  padding-top: 0;
  background:
    radial-gradient(ellipse 70% 50% at 5% 50%, color-mix(in srgb, var(--accent2) 4%, transparent), transparent 70%),
    radial-gradient(ellipse 50% 60% at 95% 80%, color-mix(in srgb, var(--accent) 3%, transparent), transparent 70%),
    var(--bg2);
}

.filters-full {
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 16px;
}

.gallery-count {
  font-size: 0.82rem;
  color: var(--text2);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  padding-left: 2px;
}
.gallery-count span { color: var(--accent); }

/* Full grid — more columns, tighter */
.full-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.full-grid .gallery-item { border-radius: var(--radius); }
.full-grid .gallery-item img { border-radius: var(--radius); }

/* Banner items span full width in full grid */
.full-grid .gallery-item.banner {
  grid-column: 1 / -1;
}
@media (min-width: 900px) {
  .full-grid .gallery-item.banner {
    grid-column: span 3;
  }
}

@media (max-width: 600px) {
  .full-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .full-grid .gallery-item.banner { grid-column: 1 / -1; }
}
