/*
  detail.css
  Styles for all project detail pages.
  Loaded alongside style.css.

  ============================================================
  HOW TO ADD A NEW PROJECT
  ============================================================
  1. Duplicate detail-template.html → projects/<category>/<slug>.html
     and replace every [PLACEHOLDER] inside.
  2. Set body class on the new page:
       <body class="detail-page detail-[slug]" id="top">
  3. At the bottom of this file under "PER-PROJECT HERO COLORS",
     add a color block following the pattern below.
     Required selectors:
       body.detail-[slug]                         → body bg
       body.detail-[slug] .detail-hero            → hero bg + text
       body.detail-[slug] .detail-body            → body bg + text
       body.detail-[slug] .detail-nav-back        → back-arrow color
       body.detail-[slug] .detail-nav-back:hover  → back-arrow hover
       body.detail-[slug] .site-footer            → footer text
       body.detail-[slug] .detail-top-btn         → top-btn color
       body.detail-[slug] .detail-top-btn:hover   → top-btn hover
     Optional selectors (only if the page uses these components):
       body.detail-[slug] .detail-btn / :hover    → "Visit project" button
       body.detail-[slug] { --spread-cursor-bg }  → Spread Viewer cursor color
  4. If the page uses the Spread Viewer component, also register the
     viewer ids in script.js under SPREAD_VIEWERS["detail-[slug]"].

  ============================================================
  AVAILABLE COMPONENTS  (reuse these — don't write new ones)
  ============================================================
  ── Layout ──────────────────────────────────────────────────
    .detail-hero / .detail-hero-title / .detail-meta-bar
    .detail-body / .detail-section / .detail-overview
    .detail-text-block / .detail-section-title
    .detail-body-text / .detail-list
    .detail-subsection / .detail-subsection-title

  ── Media ──────────────────────────────────────────────────
    .detail-visual          → single image/video, max ~90rem wide
    .detail-caption         → small caption under media
    .detail-caption--center → centered variant of the above
    .detail-duo             → 2-column grid (responsive)
    .detail-trio            → 3-column grid (responsive)
    .detail-vimeo-wrap      → 16:9 Vimeo embed wrapper

  ── Outcome ────────────────────────────────────────────────
    .detail-outcome-grid    → 3-up snap card grid
    .detail-outcome-card    → individual card inside the grid
    .detail-outcome-img / -label / -desc

  ── Buttons & Navigation ───────────────────────────────────
    .detail-btn             → outlined "Visit project" button
    .detail-view-project    → centered wrapper for .detail-btn
    .detail-project-nav     → bottom back+top nav row
    .detail-nav-back        → back-to-category link with animated arrow
    .detail-top-btn         → circular "Top" button

  ── Carousel Components ────────────────────────────────────
    .spread-section / .spread-carousel-wrap
      .spread-carousel      → mobile horizontal-snap carousel
      .spread-viewer        → desktop click-to-advance viewer
      .spread-controls / .spread-counter / .spread-caption
      (needs JS registration in SPREAD_VIEWERS)

    .walkthrough-section / .walkthrough-wrap
      .walkthrough-carousel → drag-scroll video carousel
      .walkthrough-slide / .walkthrough-caption
      (auto-binds — no JS registration needed)

  ── Interactive ────────────────────────────────────────────
    .video-wrap / .video-replay-btn  → click-to-replay overlay
                                       (auto-injected by JS)
*/






/* ============================================================
   BASE — shared across all detail pages
   ============================================================ */

body.detail-page {
  background: #F2F2F2;
  color: #0D0D0D;
}

body.detail-page .site-footer {
  color: #0D0D0D;
}


body.detail-page .page-main {
  padding-inline: 0;
  --page-inline-padding: 0;
  padding-top: 0;
}

.detail-main {
  display: flex;
  flex-direction: column;
}


/* ============================================================
   HERO
   ============================================================ */

.detail-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.detail-hero-title-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 5vw, 4rem);
  padding-top: calc(var(--header-height) + clamp(2rem, 6vw, 6rem));
}

.detail-hero-title {
  font-size: clamp(2.5rem, 2rem + 4vw, 7rem);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  margin: 0;
}

/* Meta bar — bottom strip inside hero */
.detail-meta-bar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 5vw, 4rem);
}

.detail-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-meta-label {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 400;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail-meta-value {
  font-size: clamp(0.9375rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.3;
}


/* ============================================================
   BODY
   ============================================================ */

.detail-body {
  background: #F2F2F2;  /*default*/
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.detail-section {
  padding-top: clamp(3.5rem, 8vw, 10rem);
  padding-inline: clamp(1.25rem, 5vw, 10rem);
}

.detail-text-block {
  max-width: 48rem;
  margin-inline: auto;
}

.detail-section-title {
  font-size: clamp(1.375rem, 1.05rem + 1vw, 1.625rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem);
}

.detail-section:not(.detail-overview) > .detail-text-block > .detail-section-title:first-child {
  margin-top: clamp(2.25rem, 3.5vw, 3.5rem);
}


.detail-body-text {
  font-size: clamp(1.0625rem, 0.95rem + 0.55vw, 1.25rem);
  font-weight: 350;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem);
}

.detail-body-text:last-child {
  margin-bottom: 0;
}

.detail-overview + .detail-section {
  padding-top: clamp(2rem, 4vw, 4rem);
}


.detail-list {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
}

.detail-list li {
  font-size: clamp(1.0625rem, 0.95rem + 0.55vw, 1.25rem);
  font-weight: 350;
  line-height: 1.6;
  opacity: 0.8;
}

.detail-subsection {
  margin-top: clamp(2.25rem, 3.5vw, 3.5rem);
  margin-bottom: clamp(0.5rem, 0.75vw, 0.75rem);
}

.detail-subsection-title {
  font-size: clamp(1rem, 1.3vw, 1.375rem);
  font-weight: 375;
  font-style: italic;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  opacity: 0.5;
}




/* ============================================================
   SCROLL ANIMATION
   ============================================================ */

.detail-text-block,
.detail-visual,
.detail-outcome-grid,
.detail-view-project {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
            transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.detail-text-block.is-visible,
.detail-visual.is-visible,
.detail-outcome-grid.is-visible,
.detail-view-project.is-visible {
  opacity: 1;
  transform: translateY(0);
}











/* ============================================================
   MEDIA
   ============================================================ */

.detail-visual {
  margin-top: clamp(3rem, 5vw, 6rem);
  max-width: clamp(40rem, 80vw, 90rem);
  margin-inline: auto;
}

.detail-text-block + .detail-visual,
.detail-text-block + .detail-outcome-grid {
  margin-top: clamp(3rem, 4.5vw, 5rem);
}

.detail-visual + .detail-text-block {
  margin-top: clamp(3.5rem, 8vw, 10rem);
}


.detail-visual img,
.detail-visual video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}


.detail-caption {
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  font-weight: 400;
  opacity: 0.5;
  margin: 1.25rem 0 0.5rem;
}

.detail-caption--center {
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0;
}


/* Duo (2-col) */
.detail-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
}

.detail-duo-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Trio (3-col) */
.detail-trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
}

.detail-trio-item img {
  display: block;
  width: 100%;
  height: auto;
}


/* ============================================================
   VIDEO REPLAY BUTTON
   ============================================================ */

.video-wrap {
  position: relative;
  cursor: default;
}

/* show pointer when video is ended (replay button visible) */
.video-wrap.is-ended {
  cursor: pointer;                 /*webm hand*/
}

/* Default - A dark background is masked with light-colored glass */
.video-replay-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(13, 13, 13, 0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  background: rgba(200, 200, 210, 0.35);
  backdrop-filter: blur(28px) brightness(1.1) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) brightness(1.1) saturate(1.8);
}

.video-wrap.is-ended .video-replay-btn {
  opacity: 1;                         /*for replay button, display button*/
  pointer-events: auto;  
}

.video-replay-btn svg {
  width: clamp(3.5rem, 4vw, 5rem);
  height: clamp(3.5rem, 4vw, 5rem);
}

/* When light-colored background items are covered - dark glass masks */
body.detail-lightbg .video-replay-btn {
  background: rgba(13, 13, 13, 0.35);
  backdrop-filter: blur(28px) brightness(0.9) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) brightness(0.9) saturate(1.8);
  color: rgba(242, 242, 242, 0.85);
}






/* ============================================================
   Video embed
   ============================================================ */

/* Vimeo embed — responsive 16:9 */
.detail-vimeo-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.detail-vimeo-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}









/* ============================================================
   OUTCOME GRID
   ============================================================ */

.detail-outcome-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
  padding-inline: clamp(1.25rem, 5vw, 10rem);
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.detail-outcome-grid::-webkit-scrollbar {
  display: none;
}

.detail-outcome-card {
  flex: 0 0 75vw;
  max-width: 280px;
  scroll-snap-align: center;
  margin-inline: 0;
}

.detail-outcome-card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: clamp(12rem, 20vw, 20rem);
  margin-inline: auto;
}

.detail-outcome-img {
  overflow: hidden;
}

.detail-outcome-img img,
.detail-outcome-img video {
  display: block;
  width: 100%;
  height: auto;
}

.detail-outcome-label {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.detail-outcome-desc {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: 375;
  opacity: 0.6;
  margin: 0;
  line-height: 1.5;
}


/* ============================================================
   PROJECT NAVIGATION
   ============================================================ */

.detail-project-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(3rem, 5vw, 6rem);
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.detail-nav-back-sub {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 350;
  margin-right: 0.3em;
}

.detail-nav-back-main {
  font-size: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
  font-weight: 500;
}

.detail-nav-back {
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
}

.detail-nav-back:hover {
  opacity: 1; 
}


.detail-nav-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  color: currentColor;
  overflow: hidden;
  position: relative;
}

.detail-nav-arrow svg {
  display: block;
  width: auto;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.3s ease;
  will-change: transform;
  position: relative;
}

.detail-nav-back:hover .detail-nav-arrow svg {
  animation: flyMaskedLeft 0.5s ease forwards;
}

@keyframes flyMaskedLeft {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-1.25rem); }
  26%  { transform: translateX(1.25rem); }
  100% { transform: translateX(0); }
}



/* ============================================================
   VIEW PROJECT BUTTON
   ============================================================ */

.detail-view-project {
  display: flex;
  justify-content: center;
}

.detail-btn {
  font-size: clamp(0.875rem, 0.82rem + 0.3vw, 1rem);
  border: 1px solid currentColor;
  opacity: 0.7;
  transition: opacity 0.2s ease; 
  text-transform: uppercase;
  color: inherit;
}

.detail-btn:hover {
  opacity: 1;
}









/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */

.detail-top-btn {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  background: transparent;
  color: inherit;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  padding-left: 0.06em;
  text-decoration: none;
  cursor: pointer;

  opacity: 0.85;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.detail-top-btn:hover {
  opacity: 1;
}









/* ============================================================
   TABLET  >= 768px
   ============================================================ */

@media (min-width: 768px) {

  .detail-meta-bar {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1.25rem 2rem;
  }

  .detail-meta-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 0;
  }

  .detail-duo {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-trio {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    max-width: clamp(40rem, 80vw, 90rem);
    margin-inline: auto;
    padding-inline: 0;
    padding-bottom: 0;
  }

  .detail-outcome-card {
    flex: unset;
    margin-inline: 0;
  }

}


/* ============================================================
   DESKTOP SHARED  >= 1024px
   ============================================================ */

@media (min-width: 1024px) {

  .detail-meta-item:not(:first-child) {
    padding-left: 2rem;
  }


  .detail-meta-bar {
    display: flex;
    flex-direction: row;
    gap: 0;
  }

  .detail-meta-item {
    flex: 1;
  }


  .detail-section {
    padding-inline: clamp(5rem, 8vw, 12rem);
  }



  .detail-outcome-img img {
    transition: transform 0.45s ease;
    will-change: transform;
  }

  .detail-outcome-card:hover .detail-outcome-img img {
    transform: scale(1.04);
  }

  .detail-outcome-card {
     margin-inline: auto;
  }

}


/* ============================================================
   DESKTOP  >= 1280px
   ============================================================ */

@media (min-width: 1280px) {

  .detail-section {
    padding-inline: clamp(8rem, 10vw, 16rem);
  }


  .detail-text-block {
    max-width: 52rem;
  }

}























/* ============================================================
   SPREAD VIEWER (unified)
   Used by: zodiac, lookbook, bookie (paths + modules)
   ============================================================ */
.spread-section {
  padding-top: clamp(3rem, 5vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 6rem);
}

.spread-carousel-wrap {
  margin-top: clamp(3rem, 5vw, 6rem);
}
/* mobile carousel */
.spread-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1rem;
  padding: 0 1rem;
}
.spread-carousel::-webkit-scrollbar { display: none; }
.spread-slide {
  flex: 0 0 98%;
  scroll-snap-align: center;
}
.spread-slide img,
.spread-slide video {
  display: block;
  width: 100%;
  height: auto;
}
/* desktop viewer — hidden on mobile */
.spread-viewer {
  display: none;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.spread-viewer-img {
  display: block;
  width: 100%;
  height: auto;
}
/* custom split-half cursor — color set per project via --spread-cursor-bg */
.spread-cursor {
  position: fixed;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--spread-cursor-bg, rgba(13, 13, 13, 0.35));
  backdrop-filter: blur(28px) brightness(1.1) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) brightness(1.1) saturate(1.8);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.spread-cursor.is-visible {
  opacity: 1;
}
.spread-cursor svg {
  width: 2rem;
  height: 2rem;
  color: #F2F2F2;
}
/* counter + caption */
.spread-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
}
.spread-counter,
.spread-caption {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  opacity: 0.5;
  letter-spacing: 0.06em;
}
@media (min-width: 1024px) {
  .spread-carousel { display: none; }
  .spread-viewer   { display: block; }
  .spread-carousel-wrap {
    max-width: clamp(40rem, 80vw, 90rem);
    margin-inline: auto;
  }
}
/* Per-project cursor color */
body.detail-zodiac    { --spread-cursor-bg: rgba(84, 71, 89, 0.35); }   /* #544759 */
body.detail-lookbook  { --spread-cursor-bg: rgba(166, 117, 27, 0.35); } /* #A6751B */
body.detail-bookie    { --spread-cursor-bg: rgba(2, 73, 89, 0.35); }    /* #024959 */








/* ============================================================
   Walkthrough Carousel (unified)
   Reusable drag-scroll video carousel.
   Used by: bookie, t1
   
   Default slide width per breakpoint:
     mobile  → 55%  (1 video centered + next peeking)
     tablet  → 28%  (3 videos + 4th peeking)
     desktop → 28%  (3 videos + 4th peeking)
   
   Per-project tweaks (e.g. T1 only has 3 videos and wants them
   to fill exactly) go at the bottom under their own body class.
   ============================================================ */

.walkthrough-section {
  padding-top: clamp(3rem, 5vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 6rem);
}

.walkthrough-wrap {
  margin-top: clamp(3rem, 5vw, 6rem);
  margin-inline: auto;
}

.walkthrough-carousel {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 clamp(1.5rem, 3vw, 2rem);
  cursor: grab;
  user-select: none;
  scroll-snap-type: x mandatory;
}

.walkthrough-carousel::-webkit-scrollbar { display: none; }

.walkthrough-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.walkthrough-slide {
  flex: 0 0 55%;             /* mobile: 1 video centered + next peeking */
  scroll-snap-align: center;
}

.walkthrough-slide video {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: auto;
  -webkit-user-drag: none;
  user-drag: none;
}

.walkthrough-caption {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0.75rem 0 0;
  pointer-events: none;
}





@media (min-width: 768px) {
  .walkthrough-slide {
    flex: 0 0 28%;           /* tablet: 3 videos + 4th peeking */
  }

  body.detail-t1 .walkthrough-carousel {
    justify-content: center;             /* T1 — only 3 videos */
  }
}





@media (min-width: 1024px) {
  .walkthrough-wrap {
    max-width: clamp(40rem, 80vw, 90rem);
  }
  .walkthrough-carousel {
    scroll-snap-type: none;
  }
  .walkthrough-slide {
    flex: 0 0 28%;
    scroll-snap-align: none;
  }

  body.detail-t1 .walkthrough-carousel {
    gap: clamp(2.5rem, 5vw, 5rem);        /* only for T1 */
  }
}



































































/* ============================================================
   PER-PROJECT HERO COLORS
   Add one line per new project here.
   ============================================================ */


/* T1 TimeStream */
body.detail-t1 { background: #68803E; }
body.detail-t1 .detail-hero { background: #8EA369; color: #2E381D; }
body.detail-t1 .detail-body { background: #68803E; color: #F2F2F2; }
body.detail-t1 .detail-nav-back { color: #C3CCB2; }
body.detail-t1 .detail-nav-back:hover { color: #F2F2F2; }
body.detail-t1 .site-footer { color: #F2F2F2; }



body.detail-t1 .detail-btn {
  color: #F2F2F2;
  border-color: #F2F2F2;
  background: transparent;
  opacity: 0.75;
}

body.detail-t1 .detail-btn:hover { 
  background: #8EA369; 
  color: #2E381D; 
  border-color: #8EA369; 
  opacity: 1; 
}

body.detail-t1 .detail-top-btn {
  color: #F2F2F2;
  border-color: #F2F2F2;
}

body.detail-t1 .detail-top-btn:hover {
  background: #8EA369;
  color: #2E381D;
  border-color: #8EA369;
}









/* Time Runway */
body.detail-timerunway { background: #012626; }
body.detail-timerunway .detail-hero { background: #486773; color: #012626; }
body.detail-timerunway .detail-body { background: #012626; color: #BFAAAE; }
body.detail-timerunway .detail-nav-back { color: #BFAAAE; }
body.detail-timerunway .detail-nav-back:hover { color: #F2E6DF; }
body.detail-timerunway .site-footer { color: #BFAAAE; }

body.detail-timerunway .detail-btn {
  color: #F2E6DF;
  border-color: #F2E6DF;
  background: transparent;
  opacity: 0.75;
}

body.detail-timerunway .detail-btn:hover {
  background: #486773;
  color: #012626;
  border-color: #486773;
  opacity: 1;
}


body.detail-timerunway .detail-top-btn {
  color: #BFAAAE;
  border-color: #BFAAAE;
}

body.detail-timerunway .detail-top-btn:hover {
  background: #486773;
  color: #012626;
  border-color: #486773;
}








/* Before Fireflies */
body.detail-before-fireflies { background: #162D59; }
body.detail-before-fireflies .detail-hero { background: #8C4D16; color: #B9BF04; }
body.detail-before-fireflies .detail-body { background: #162D59; color: #B9BF04; }
body.detail-before-fireflies .detail-nav-back { color: #B9BF04; }
body.detail-before-fireflies .detail-nav-back:hover { color: #F2F2F2; }
body.detail-before-fireflies .site-footer { color: #F2F2F2; }

body.detail-before-fireflies .detail-top-btn {
  color: #B9BF04;
  border-color: #B9BF04;
}

body.detail-before-fireflies .detail-top-btn:hover {
  background: #B9BF04;
  color: #162D59;
  border-color: #B9BF04;
}








/* Chinese Zodiac */
body.detail-zodiac { background: #544759; }
body.detail-zodiac .detail-hero { background: #A9D9C7; color: #544759; }
body.detail-zodiac .detail-body { background: #544759; color: #F2F2F2; }
body.detail-zodiac .detail-nav-back { color: #F2F2F2; }
body.detail-zodiac .detail-nav-back:hover { color: #F2F2F2; }
body.detail-zodiac .site-footer { color: #F2F2F2; }

body.detail-zodiac .detail-top-btn {
  color: #F2F2F2;
  border-color: #F2F2F2;
}

body.detail-zodiac .detail-top-btn:hover {
  background: #F2F2F2;
  color: #544759;
  border-color: #F2F2F2;
}











/* Fashion Lookbook */
body.detail-lookbook { background: #A6751B; }
body.detail-lookbook .detail-hero { background: #242426; color: #A6751B; }
body.detail-lookbook .detail-body { background: #A6751B; color: #F2F2F2; }
body.detail-lookbook .detail-nav-back { color: #242426; }
body.detail-lookbook .detail-nav-back:hover { color: #242426; }
body.detail-lookbook .site-footer { color: #242426; }

body.detail-lookbook .detail-top-btn {
  color: #242426;
  border-color: #242426;
}

body.detail-lookbook .detail-top-btn:hover {
  background: #242426;
  color: #A6751B;
  border-color: #242426;
}











/* Shape Line Form */
body.detail-slf { background: #F2F2F2; }
body.detail-slf .detail-hero { background: #2A8C55; color: #C6D938; }
body.detail-slf .detail-body { background: #F2F2F2; color: #A6497C; }
body.detail-slf .detail-nav-back { color: #A6497C; }
body.detail-slf .detail-nav-back:hover { color: #A6497C; }
body.detail-slf .site-footer { color: #A6497C; }

body.detail-slf .detail-top-btn {
  color: #A6497C;
  border-color: #A6497C;
}

body.detail-slf .detail-top-btn:hover {
  background: #A6497C;
  color: #F2F2F2;
  border-color: #A6497C;
}








/* Green Pastures Farms Logo */
body.detail-green-pastures-logo { background: #2E4D59; }
body.detail-green-pastures-logo .detail-hero { background: #BCBF56; color: #2E4D59; }
body.detail-green-pastures-logo .detail-body { background: #2E4D59; color: #F2A663; }
body.detail-green-pastures-logo .detail-nav-back { color: #F2A663; }
body.detail-green-pastures-logo .detail-nav-back:hover { color: #F2A663; }
body.detail-green-pastures-logo .site-footer { color: #F2F2F2; }

body.detail-green-pastures-logo .detail-top-btn {
  color: #F2A663;
  border-color: #F2A663;
}

body.detail-green-pastures-logo .detail-top-btn:hover {
  background: #F2A663;
  color: #2E4D59;
  border-color: #F2A663;
}








/* Virtual Observers */
body.detail-virtual-observers { background: #222C40; }
body.detail-virtual-observers .detail-hero { background: #A68F8D; color: #56548C; }
body.detail-virtual-observers .detail-body { background: #222C40; color: #548C8C; }
body.detail-virtual-observers .detail-nav-back { color: #548C8C; }
body.detail-virtual-observers .detail-nav-back:hover { color: #F2F2F2; }
body.detail-virtual-observers .site-footer { color: #F2F2F2; }

body.detail-virtual-observers .detail-top-btn {
  color: #548C8C;
  border-color: #548C8C;
}

body.detail-virtual-observers .detail-top-btn:hover {
  background: #548C8C;
  color: #222C40;
  border-color: #548C8C;
}










/* Children's Art Festival */
body.detail-festival { background: #8C5A4F; }
body.detail-festival .detail-hero { background: #7C8C03; color: #D8EBF2; }
body.detail-festival .detail-body { background: #8C5A4F; color: #D8EBF2; }
body.detail-festival .detail-nav-back { color: #D8EBF2; }
body.detail-festival .detail-nav-back:hover { color: #D8EBF2; }
body.detail-festival .site-footer { color: #F2F2F2; }
body.detail-festival .detail-vimeo-wrap { padding-bottom: 80%; }   /*vimeo*/

body.detail-festival .detail-top-btn {
  color: #D8EBF2;
  border-color: #D8EBF2;
}

body.detail-festival .detail-top-btn:hover {
  background: #D8EBF2;
  color: #8C5A4F;
  border-color: #D8EBF2;
}










/* One of Fashion's Thinkers */
body.detail-thinker { background: #A6A498; }
body.detail-thinker .detail-hero { background: #0B0A0D; color: #BF9D5E; }
body.detail-thinker .detail-body { background: #A6A498; color: #0B0A0D; }
body.detail-thinker .detail-nav-back { color: #0B0A0D; }
body.detail-thinker .detail-nav-back:hover { color: #0D0D0D; }
body.detail-thinker .site-footer { color: #0D0D0D; }

body.detail-thinker .detail-top-btn {
  color: #0B0A0D;
  border-color: #0B0A0D;
}

body.detail-thinker .detail-top-btn:hover {
  background: #0B0A0D;
  color: #A6A498;
  border-color: #0B0A0D;
}









/* Mini Motion Garden */
body.detail-garden { background: #1D2326; }
body.detail-garden .detail-hero { background: #5D8C56; color: #1D2326; }
body.detail-garden .detail-body { background: #1D2326; color: #D9CEC7; }
body.detail-garden .detail-nav-back { color: #D9CEC7; }
body.detail-garden .detail-nav-back:hover { color: #F2F2F2; }
body.detail-garden .site-footer { color: #F2F2F2; }

body.detail-garden .detail-top-btn {
  color: #D9CEC7;
  border-color: #D9CEC7;
}

body.detail-garden .detail-top-btn:hover {
  background: #D9CEC7;
  color: #1D2326;
  border-color: #D9CEC7;
}













/* A Reversing Beginner */
body.detail-reversing { background: #D7D8D9; }
body.detail-reversing .detail-hero { background: #325573; color: #D9A23D; }
body.detail-reversing .detail-body { background: #D7D8D9; color: #325573; }
body.detail-reversing .detail-nav-back { color: #325573; }
body.detail-reversing .detail-nav-back:hover { color: #323840; }
body.detail-reversing .site-footer { color: #323840; }

body.detail-reversing .detail-top-btn {
  color: #325573;
  border-color: #325573;
}

body.detail-reversing .detail-top-btn:hover {
  background: #325573;
  color: #D7D8D9;
  border-color: #325573;
}







/* Day & Night Game */
body.detail-day-night-game { background: #192E40; }
body.detail-day-night-game .detail-hero { background: #278C23; color: #192E40; }
body.detail-day-night-game .detail-body { background: #192E40; color: #F2BBC9; }
body.detail-day-night-game .detail-nav-back { color: #F2BBC9; }
body.detail-day-night-game .detail-nav-back:hover { color: #F2F2F2; }
body.detail-day-night-game .site-footer { color: #F2F2F2; }

body.detail-day-night-game .detail-btn {
  color: #F2BBC9;
  border-color: #F2BBC9;
  background: transparent;
  opacity: 0.75;                                     /*visit button*/
}

body.detail-day-night-game .detail-btn:hover {
  background: #F2BBC9;
  color: #192E40;
  border-color: #F2BBC9;
  opacity: 1;                                        /*visit button*/
}

body.detail-day-night-game .detail-top-btn {
  color: #F2BBC9;
  border-color: #F2BBC9;
}

body.detail-day-night-game .detail-top-btn:hover {
  background: #F2BBC9;
  color: #192E40;
  border-color: #F2BBC9;
}










/* Color Mixing Game */
body.detail-color { background: #BF8173; }
body.detail-color .detail-hero { background: #592E3E; color: #F2A25C; }
body.detail-color .detail-body { background: #BF8173; color: #262625; }
body.detail-color .detail-nav-back { color: #262625; }
body.detail-color .detail-nav-back:hover { color: #0D0D0D; }
body.detail-color .site-footer { color: #0D0D0D; }

body.detail-color .detail-btn {
  color: #262625;
  border-color: #262625;
  background: transparent;
  opacity: 0.75;
}

body.detail-color .detail-btn:hover {
  background: #262625;
  color: #BF8173;
  border-color: #262625;
  opacity: 1;
}

body.detail-color .detail-top-btn {
  color: #262625;
  border-color: #262625;
}

body.detail-color .detail-top-btn:hover {
  background: #262625;
  color: #BF8173;
  border-color: #262625;
}















/* Bookie */
body.detail-bookie { background: #024959; }
body.detail-bookie .detail-hero { background: #023440; color: #F2A0CD; }
body.detail-bookie .detail-body { background: #024959; color: #F2A0CD; }
body.detail-bookie .detail-nav-back { color: #F2A0CD; }
body.detail-bookie .detail-nav-back:hover { color: #F2F2F2; }
body.detail-bookie .site-footer { color: #F2F2F2; }

body.detail-bookie .detail-top-btn {
  color: #F2A0CD;
  border-color: #F2A0CD;
}

body.detail-bookie .detail-top-btn:hover {
  background: #F2A0CD;
  color: #024959;
  border-color: #F2A0CD;
}









