/* =========================================================
   Baby Fred Update — 2026-04-11 06:42 Eastern
   Surrounded By Pitchforks / Album Page Template
   Page ID: 1163

   Notes:
   - This file is intended to be cloned for future album pages.
   - Update ONLY the page ID selector when reusing.
   - Now Playing styling is tied to:
       figure.wp-block-audio.bf-now-playing
     because that is the class/state your JS is applying.
========================================================= */

/* =========================================================
   1) Page breathing room / transport clearance
========================================================= */

body.page-id-1163 {
  padding-bottom: 120px;
}

/* =========================================================
   2) Play Album button
========================================================= */

body.page-id-1163 #bf-playall {
  display: block;
  margin: 20px auto 16px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;

  background: #eef2f5;
  border: 1px solid #c9d3df;
  border-radius: 6px;
}

body.page-id-1163 #bf-playall:hover {
  background: #e4ebf2;
}

/* =========================================================
   3) Optional Play All bar layout helpers
   Kept for pages that use the wrapper/column structure
========================================================= */

body.page-id-1163 .bf-playall-wrapper {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

body.page-id-1163 .bf-playall-bar {
  width: 760px;
  display: flex;
  gap: 32px;
}

body.page-id-1163 .bf-playall-col {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

body.page-id-1163 .bf-playall-btn {
  padding: 8px 14px;
  line-height: 1.1;
  font-weight: 600;
  cursor: pointer;

  background: #eef2f5;
  border: 1px solid #bfc8d2;
  border-radius: 6px;

  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.05s ease;
}

body.page-id-1163 .bf-playall-btn:hover {
  background: #e2e8ee;
}

body.page-id-1163 .bf-playall-btn:active {
  transform: translateY(1px);
}

body.page-id-1163 .bf-playall-btn.bf-active {
  background: #dbe7f2;
  border-color: #9fb4c8;
  box-shadow: 0 0 0 2px rgba(120, 160, 200, 0.15);
}


/* =========================================================
   4) Now Playing highlight
   Ghost Town look, with teal tab OUTSIDE left edge
========================================================= */

body.page-id-1163 figure.wp-block-audio {
  position: relative;
  overflow: visible;
  border-radius: 8px;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Active player panel */
body.page-id-1163 figure.wp-block-audio.bf-now-playing {
  background: #e6f4f3;
  border-radius: 8px;
  padding-left: 0;

  box-shadow:
    0 0 0 2px rgba(0, 140, 140, 0.35),
    0 4px 14px rgba(0, 120, 120, 0.10);
}

/* Teal accent strip OUTSIDE the panel */
body.page-id-1163 figure.wp-block-audio.bf-now-playing::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: #0aa3a3;
  border-radius: 2px;
}

/* =========================================================
   5) Legacy album-track / track-col helpers
   Safe to keep for cloned pages that still use older markup
========================================================= */

body.page-id-1163 .bf-album-track {
  position: relative;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

body.page-id-1163 .bf-track-col {
  position: relative;
  transition:
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* =========================================================
   6) Bottom transport — Ghost Town standard
========================================================= */

body.page-id-1163 #bf-global-player {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  width: min(900px, 92vw);
  padding: 12px 16px;

  background: #eef2f5;
  border: 1px solid #c9d3df;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  gap: 12px;
  align-items: center;
}

body.page-id-1163 #bf-global-player button {
  font-size: 16px;
  padding: 6px 10px;
  cursor: pointer;

  background: #e8edf2;
  border: 1px solid #c9d3df;
  border-radius: 6px;
}

body.page-id-1163 #bf-global-player button:hover {
  background: #dde6ee;
}

body.page-id-1163 #bf-seek {
  width: 100%;
}

body.page-id-1163 #bf-now-playing {
  max-width: 320px;
  font-size: 14px;
  font-weight: 600;
  color: #2a3a46;

  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================================
   7) Responsive
========================================================= */

@media (max-width: 1100px) {
  body.page-id-1163 .bf-album-track {
    grid-template-columns: 1fr;
  }

  body.page-id-1163 .bf-track-columns {
    flex-wrap: wrap;
  }

  body.page-id-1163 .bf-track-col {
    flex: 1 1 420px;
  }

  body.page-id-1163 .bf-playall-bar {
    width: 100%;
  }
}