/*
  gallery-page.css — Full-viewport gallery layout
  Applies only when body has .gallery-page class.
*/

/* ── Full-viewport layout ──────────────────────────────────────── */

body[data-site-page="home"].gallery-page {
  overflow: hidden;
  height: 100dvh;
}

body[data-site-page="home"].gallery-page .home-v2-main {
  height: calc(100dvh - var(--gp-header-h, 64px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body[data-site-page="home"].gallery-page .home-v2-gallery-section {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  background: transparent !important;
}

body[data-site-page="home"].gallery-page .home-v2-gallery-section > .home-v2-container {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding-top: 1.75rem;
  padding-bottom: 0.5rem;
}

/* ── Compact page header text ───────────────────────────────────── */

body[data-site-page="home"].gallery-page .home-v2-section-heading {
  flex-shrink: 0;
  margin-bottom: 0;
  padding-bottom: 1.25rem;
}

body[data-site-page="home"].gallery-page .home-v2-section-heading h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  line-height: 1;
}

body[data-site-page="home"].gallery-page .home-v2-section-heading p {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Strip the decorative pill box ─────────────────────────────── */

body[data-site-page="home"].gallery-page .home-v2-gallery-surface {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

body[data-site-page="home"].gallery-page .home-v2-gallery-surface-glow,
body[data-site-page="home"].gallery-page .home-v2-gallery-shadow,
body[data-site-page="home"].gallery-page .home-v2-gallery-edge {
  display: none !important;
}

/* ── Gallery shell → surface → viewport → stage fill chain ─────── */

body[data-site-page="home"].gallery-page .home-v2-gallery-shell {
  flex: 1;
  min-height: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

body[data-site-page="home"].gallery-page .home-v2-gallery-surface {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

body[data-site-page="home"].gallery-page .home-v2-gallery-viewport {
  flex: 1;
  min-height: 0;
  padding-block: 0.75rem 1rem;
}

body[data-site-page="home"].gallery-page .home-v2-gallery-stage {
  height: 100%;
  min-height: 20rem;
}

/* ── Cards: sized by stage height, not vw ───────────────────────── */

body[data-site-page="home"].gallery-page .home-v2-gallery-card {
  height: clamp(20rem, 74%, 50rem);
  width: auto;
  /* Slower, more cinematic transition than homepage */
  transition: transform 550ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 400ms ease !important;
}

/* ── Controls & hint: tighter spacing for full-page ─────────────── */

body[data-site-page="home"].gallery-page .home-v2-gallery-controls {
  margin-top: 1rem;
}

body[data-site-page="home"].gallery-page .home-v2-gallery-hint {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
