/*
  The Original Big Band Showcase
  Modernized theme (2026)
  - jPlayer skin CSS is loaded by playlist-*.php (jplayer.blue.monday.min.css)
*/

/* --- Base / reset --- */
*{box-sizing:border-box}
html,body{height:100%}
img{max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

:root{
  --bg0:#0b1020;
  --bg1:#0f1931;
  --text:#f6f7fb;
  --muted:rgba(246,247,251,.78);
  --card:rgba(20,28,48,.72);
  --card2:rgba(10,14,26,.55);
  --stroke:rgba(255,255,255,.14);
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:20px;
  --max:980px;
}

/* --- Background (uses Denny image with blur) --- */
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.5;
  color:var(--text);
  background:var(--bg0);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(180deg, rgba(11,16,32,.18) 0%, rgba(11,16,32,.64) 60%, rgba(11,16,32,.84) 100%),
    url("../images/denny-showcase.jpg");
  background-size:cover;
  background-position:center;
  filter:blur(5px) saturate(1.05);
  transform:scale(1.08);
  z-index:-2;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(255,255,255,.10), transparent 65%),
    radial-gradient(900px 520px at 50% 90%, rgba(255,255,255,.08), transparent 60%);
  z-index:-1;
}

/* --- Layout --- */
.page{min-height:100%;display:flex;flex-direction:column}
.container{width:100%;max-width:var(--max);margin:0 auto;padding:20px}

.hero{
  position:relative;
  margin:26px auto 12px auto;
  width:100%;
  max-width:var(--max);
  border-radius:calc(var(--radius) + 6px);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--stroke);
  background:linear-gradient(135deg, rgba(20,28,48,.70), rgba(10,14,26,.62));
}

.hero__art{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg, rgba(11,16,32,.14) 0%, rgba(11,16,32,.72) 55%, rgba(11,16,32,.86) 100%),
    url("../images/denny-showcase.jpg");
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.02);
  transform:scale(1.02);
}

.hero__content{
  position:relative;
  padding:28px 24px;
  display:grid;
  grid-template-columns:140px 1fr;
  gap:18px;
  align-items:center;
}

.hero__thumb{
  width:140px;height:110px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:url("../images/denny-showcase.jpg") center/cover no-repeat;
  box-shadow:0 14px 40px rgba(0,0,0,.45);
}

.hero__title{
  margin:0;
  font-size:clamp(22px, 3.2vw, 40px);
  line-height:1.12;
  letter-spacing:.2px;
}

.hero__subtitle{
  margin:10px 0 0 0;
  color:var(--muted);
  font-size:clamp(14px, 1.8vw, 16px);
}

.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.08);
  color:var(--text);
  font-weight:600;
  font-size:13px;
}
.badge--live{
  background:rgba(255, 70, 70, .16);
  border-color:rgba(255, 70, 70, .35);
}
.badge--ondemand{
  background:rgba(90, 200, 140, .14);
  border-color:rgba(90, 200, 140, .28);
}

/* --- Cards --- */
.card{
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:linear-gradient(180deg, var(--card), var(--card2));
  box-shadow:var(--shadow);
  overflow:hidden;
}

.card__hd{
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.card__title{
  margin:0;
  font-size:16px;
  letter-spacing:.2px;
}

.card__bd{padding:16px 18px}

/* Player adjustments */
.jp-audio{width:100%}
.player-wrap{padding:6px 0 2px 0}

/* --- Prose (media-* includes) --- */
.prose p{
  margin:0 0 12px 0;
  color:var(--muted);
  font-size:15px;
}
.prose hr{
  border:0;
  border-top:1px solid rgba(255,255,255,.14);
  margin:14px 0;
}
.prose a{color:#ffffff;text-decoration:underline}

/* --- Footer --- */
.footer{
  margin-top:auto;
  padding:22px 0 28px 0;
}
.footer .container{
  text-align:center;
  color:rgba(246,247,251,.72);
  font-size:13px;
}
.footer a{color:rgba(246,247,251,.86);text-decoration:underline}

/* --- Small screens --- */
@media (max-width: 720px){
  .hero__content{
    grid-template-columns:1fr;
    text-align:center;
    padding:22px 18px;
  }
  .hero__thumb{margin:0 auto}
  .badges{justify-content:center}
  .container{padding:16px}
}
