/*
Theme Name: Witches, Bitches, and Sluts
Theme URI: https://wbspodcast.com
Author: Xtina Rose
Description: Custom WordPress theme for the Witches, Bitches, and Sluts podcast.
Version: 1.0.6
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: wbs-podcast
*/

:root {
  --black: #000;
  --pink: #dd0555;
  --red: #e31b23;
  --gold: #d9a34f;
  --purple: #54205d;
  --cream: #faf0de;
  --panel: #19191c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: #fffaf3;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 74px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid #d9a34f40;
  background: #000000f0;
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-family: Georgia, serif;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}
nav {
  display: flex;
  gap: 1.35rem;
}
nav a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero,
.section,
footer {
  width: min(calc(100% - 2rem), 1180px);
  margin-inline: auto;
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: 4rem 0 6rem;
}
.logoStage img {
  width: min(100%, 540px);
  margin: auto;
}
.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}
h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}
h1 em {
  color: var(--gold);
  font-weight: 500;
}
.heroCopy > p:not(.eyebrow) {
  max-width: 640px;
  color: #d8d0c5;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}
.actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  align-items: center;
  border: 1px solid var(--pink);
  border-radius: 999px;
  background: var(--pink);
  font-weight: 850;
  text-decoration: none;
}
.button.secondary {
  border-color: #d9a34fb3;
  background: transparent;
  color: var(--cream);
}
.section {
  padding: 7rem 0;
  border-top: 1px solid #d9a34f24;
}
.sectionTitle {
  margin-bottom: 2.25rem;
}
.sectionTitle h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}
.episodeGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem;
}
.episodeCard {
  position: relative;
  min-height: 330px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d9a34f42;
  border-radius: 22px;
  background: linear-gradient(145deg, #232326, #141416);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}
.episodeCard:hover { transform: translateY(-3px); border-color: #d9a34f85; }
.episodeCard:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }
.episodeCard:after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -75px;
  bottom: -80px;
  border-radius: 50%;
  background: var(--card);
  opacity: 0.18;
}
.episodeCard.red {
  --card: var(--red);
}
.episodeCard.pink {
  --card: var(--pink);
}
.episodeCard.gold {
  --card: var(--gold);
}
.episodeCard > span {
  color: var(--card);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.episodeCard > b {
  position: absolute;
  right: 1.45rem;
  top: 1.45rem;
  color: var(--gold);
}
.episodeCard h3 {
  margin: auto 0 1.2rem;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  font-weight: 500;
}
.episodeCard small {
  color: #aaa39a;
}
.episodeCard {
  min-height: 0;
  padding: 0;
  display: block;
}
.episodeCard:after {
  display: none;
}
.episodeArt {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.episodeBody {
  position: relative;
  min-height: 235px;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
}
.episodeBody > span {
  color: var(--card);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.episodeBody > b {
  position: absolute;
  right: 1.45rem;
  top: 1.25rem;
  color: var(--gold);
}
.episodeListen {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: .72rem 1rem;
  border: 1px solid #d9a34f85;
  border-radius: 999px;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}
.episodeListen:hover { background: var(--card); color: #111; }
.episodeListen:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
.episodeCard h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}
.formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid #d9a34f40;
  border-radius: 28px;
  background: #18181a;
}
.formats article {
  position: relative;
  min-height: 430px;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.formats article > :not(.formatIcon) {
  position: relative;
  z-index: 1;
}
.formatIcon {
  position: absolute;
  top: 2.35rem;
  right: 2.5rem;
  width: clamp(130px, 17vw, 210px);
  height: clamp(130px, 17vw, 210px);
  color: currentColor;
  opacity: 0.18;
  pointer-events: none;
}
.cameoIcon {
  color: var(--red);
  fill: currentColor;
  stroke: none;
}
.gearIcon {
  color: #a373aa;
  fill: currentColor;
  stroke: none;
}
.formats article:first-child {
  border-right: 1px solid #d9a34f40;
  background: linear-gradient(150deg, #e31b232b, transparent 58%);
}
.formats article:last-child {
  background: linear-gradient(150deg, #54205d73, transparent 62%);
}
.formats strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 4rem;
  opacity: 0.7;
}
.formats h3 {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 500;
}
.formats p {
  max-width: 440px;
  margin: 0;
  color: #bbb3a9;
}
.coming {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d9a34f3b;
  border-radius: 24px;
  background: #d9a34f3b;
}
.coming article {
  min-height: 225px;
  padding: 1.75rem;
  background: var(--panel);
}
.coming article:nth-child(2) {
  background: linear-gradient(145deg, #54205d70, var(--panel) 74%);
}
.coming time {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.coming h3 {
  margin: 2.7rem 0 0.6rem;
  font-size: 1.75rem;
  font-weight: 500;
}
.coming p {
  color: #aaa39a;
}
.comingFeature {
  overflow: hidden;
  border: 1px solid #d9a34f3b;
  border-radius: 24px;
}
.comingFeature > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.comingFeature .coming {
  border: 0;
  border-radius: 0;
}
.support {
  padding: clamp(2.2rem, 7vw, 5.5rem);
  border-radius: 28px;
  border: 1px solid #d9a34f38;
  background: linear-gradient(125deg, #54205d, #3d1745 54%, #000000);
}
.support h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.025em;
}
.support > p:not(.eyebrow) {
  max-width: 700px;
  color: #f8e7e1;
}
.support .button {
  margin-top: 1.15rem;
}
footer {
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  border-top: 1px solid #d9a34f33;
}
footer img {
  width: 90px;
  border-radius: 50%;
}
footer strong,
footer small {
  display: block;
}
footer strong {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
}
footer small,
footer p {
  color: #8f8983;
}
.footerSocial {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.footerSocial a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #d9a34f52;
  border-radius: 50%;
  color: #f8e7e1;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.footerSocial a:hover {
  color: #111;
  border-color: var(--pink);
  background: var(--pink);
  transform: translateY(-2px);
}
.footerSocial a:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
.footerSocial svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footerSocial .filled { fill: currentColor; stroke: none; }
.pageShell {
  width: min(calc(100% - 2rem), 1180px);
  margin-inline: auto;
}
.pageHero {
  padding: clamp(5rem, 10vw, 8rem) 0 4rem;
  border-bottom: 1px solid #d9a34f2b;
  background: linear-gradient(135deg, #54205d2e, transparent 48%);
}
.pageHero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}
.pageIntro, .innerContent p, .contactGrid p {
  max-width: 760px;
  color: #d4ccc1;
  font-size: 1.08rem;
}
.pageIntro { margin-top: 1.5rem; }
.innerContent { max-width: 900px; padding-block: 4.5rem 7rem; }
.innerContent .lead { color: var(--cream); font-family: Georgia, serif; font-size: 1.45rem; }
.innerFeature { margin-top: 3.5rem; padding: 2.2rem; border: 1px solid #d9a34f38; border-radius: 22px; }
.innerFeature h2, .contactGrid h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
.redFeature { background: linear-gradient(145deg, #e31b2326, transparent 70%); }
.purpleFeature { background: linear-gradient(145deg, #54205d70, transparent 72%); }
.hostFeature { position: relative; isolation: isolate; overflow: hidden; margin-top: 4rem; display: grid; grid-template-columns: minmax(330px, .95fr) 1.05fr; align-items: stretch; border-radius: 30px; background: linear-gradient(115deg, #140c18 0%, #211025 52%, #19191c 100%); box-shadow: 0 32px 90px #00000052; }
.hostFeature::after { content: ""; position: absolute; z-index: -1; inset: auto -8rem -11rem auto; width: 25rem; aspect-ratio: 1; border-radius: 50%; background: #6d267a45; filter: blur(55px); }
.hostPortrait { position: relative; min-height: 580px; overflow: hidden; background: #120d15; }
.hostPortrait::after { content: ""; position: absolute; inset: 0 -1px 0 auto; width: 28%; background: linear-gradient(90deg, transparent, #1d1021); pointer-events: none; }
.hostPortrait img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hostCopy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 6vw, 5.25rem); }
.hostCopy::before { content: "“"; position: absolute; top: 1.2rem; right: 2.2rem; color: #d9a34f24; font-family: Georgia, serif; font-size: 10rem; line-height: 1; }
.hostFeature h2 { margin: .1rem 0 1.2rem; font-size: clamp(2.7rem, 5vw, 4.8rem); font-weight: 500; }
.hostFeature p:not(.eyebrow) { color: #d4ccc1; }
.innerSection { padding-block: 5rem 7rem; }
.archiveList { padding-block: 3rem 7rem; }
.archiveRow { display: grid; grid-template-columns: 170px 1fr auto; gap: 2rem; align-items: center; padding: 1.8rem 0; border-bottom: 1px solid #d9a34f33; text-decoration: none; }
.archiveRow time { color: var(--pink); font-weight: 800; }
.archiveRow h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 500; }
.archiveRow span { color: var(--gold); }
.contactGrid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); }
.contactGrid h2:not(:first-child) { margin-top: 3.5rem; }
.contactCard { padding: 2rem; border: 1px solid #d9a34f38; border-radius: 22px; background: linear-gradient(145deg, #54205d47, #19191c 58%); }
.contactCard label { display: block; margin-bottom: 1rem; color: var(--cream); font-weight: 800; }
.contactCard input, .contactCard textarea, .contactCard select { width: 100%; margin-top: .4rem; padding: .85rem 1rem; border: 1px solid #5f5854; border-radius: 10px; background: #111113; color: white; font: inherit; }
.contactCard textarea { min-height: 150px; resize: vertical; }
.formNote { display: block; margin-top: 1rem; color: #9e958c; }
@media (max-width: 860px) {
  nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .logoStage img {
    max-width: 390px;
  }
  .actions {
    justify-content: center;
  }
  .episodeGrid,
  .coming,
  .formats {
    grid-template-columns: 1fr;
  }
  .formats article:first-child {
    border-right: 0;
    border-bottom: 1px solid #d9a34f40;
  }
  .brand span {
    display: none;
  }
  footer {
    grid-template-columns: auto 1fr;
  }
  .footerSocial,
  footer > p {
    grid-column: 1/-1;
  }
  .contactGrid { grid-template-columns: 1fr; }
  .hostFeature { grid-template-columns: 1fr; }
  .hostPortrait { min-height: 0; aspect-ratio: .82; }
  .hostPortrait::after { inset: auto 0 -1px; width: 100%; height: 24%; background: linear-gradient(180deg, transparent, #1d1021); }
  .hostCopy { padding: 2.2rem 1.5rem 2.7rem; }
  .hostCopy::before { top: .4rem; right: 1rem; font-size: 7rem; }
  .archiveRow { grid-template-columns: 1fr auto; gap: .5rem 1rem; }
  .archiveRow time { grid-column: 1/-1; }
}
