
/* Ladylike Podcast — styles.css */
:root {
  --rose: #d998a0;
  --slate: #3f5c6a;
  --gold: #e7b25b;
  --clay: #d08d60;
  --ink: #1b1f22;
  --paper: #fdf2e0;
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; background: var(--paper); color: var(--ink); font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif; }
a { color: var(--slate); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* Header */
header {
  background: linear-gradient(135deg, var(--slate), var(--rose));
  color: white;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 14px 0; }
.nav a.brand { display:flex; align-items:center; gap:10px; font-weight:800; color:white; }
.nav img { width: 42px; height: 42px; }

.menu { display: flex; gap: 1rem; flex-wrap: wrap; }
.menu a { color: white; font-weight: 600; padding: 6px 10px; border-radius: 8px; text-decoration: none; }
.menu a:hover { background: rgba(255,255,255,0.12); text-decoration:none; }

/* Hero */
.hero { padding: 48px 0 56px; }
.hero h1 { font-size: clamp(28px, 5vw, 54px); line-height: 1.05; margin: 0 0 10px; color: white; }
.hero p.kicker { margin:0; color: #f0f5f5; font-weight:600; letter-spacing: 0.3px; }
.hero p.sub { font-size: clamp(16px, 3vw, 20px); color: #f2f2f2; max-width: 720px; margin-top: 10px; }
.cta-row { display:flex; gap:12px; margin-top:18px; flex-wrap: wrap; }
.button { display:inline-block; padding: 12px 16px; border-radius: 12px; background: var(--gold); color: var(--ink); font-weight:800; }
.button.secondary { background: white; color: var(--slate); }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid #ebe9e6; display:flex; flex-direction: column; }
.card .pad { padding: 14px; }
.card h3 { margin: 6px 0 8px; font-size: 18px; }
.meta { color:#5a646b; font-size: 14px; }

/* Footer */
footer { margin-top: 40px; background: #0f1418; color: #cfd6dc; }
footer a { color: #cfd6dc; }
.footer-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; padding: 28px 0; }
small.copy { display:block; padding: 14px 0 24px; color:#9aa6b2; }

.section { padding: 28px 0; }
.section h2 { font-size: 26px; margin: 0 0 12px; }

/* Episode page */
.prose p { line-height: 1.6; color:#2a2f34; }

.badge { display:inline-block; padding: 4px 10px; background: var(--rose); color: white; border-radius: 999px; font-size: 12px; font-weight:700; letter-spacing:0.3px; }
.subscribe-icons a { display:inline-block; padding:8px 12px; background:white; border-radius:10px; border:1px solid #e8e5e2; }
.subtle { color:#5a646b; }

/* Newsletter */
form.news { display:flex; gap:10px; flex-wrap: wrap; }
form.news input[type=email] { padding:12px 12px; border-radius:10px; border:1px solid #d7d2cc; flex:1; min-width:220px; }
form.news button { padding:12px 16px; border-radius:10px; border:0; background: var(--clay); color:white; font-weight:800; }


/* Brand voice tweaks */
body { line-height: 1.7; font-size: 18px; }
.hero h1 { letter-spacing: 0.2px; }
.section { padding: 36px 0; }
.card img { border-radius: 12px; }
.card { border: 1px solid rgba(0,0,0,0.05); background: #fff9f1; }
header { background: linear-gradient(135deg, var(--slate), var(--rose)); }
.button { border-radius: 999px; }
.badge { background: var(--slate); }


/* Guest page enhancements */
.hero-soft {
  background: linear-gradient(120deg, var(--paper), #fffaf0);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hero-soft .wrap {
  padding: 40px 0;
}
.quote-card {
  background: #fffdf7;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius);
  padding: 18px;
  margin: 14px 0 24px;
  font-style: italic;
}
.callout {
  background: #fff6ea;
  border: 1px dashed rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 16px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.step {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 16px;
}
.step h4 { margin: 0 0 8px; }

/* --- Sticky Header --- */
header { position: static; }

/* Shrink on scroll */
header.shrink {
  padding: 0.4rem 0;
}

/* Active Tab Highlight */
nav a.active {
  border-bottom: 2px solid #d998a0;
  color: #d998a0;
}


/* --- Sticky header + active tab + shrink-on-scroll --- */
header { position: static; }
header .nav { transition: padding 180ms ease, background-color 180ms ease, box-shadow 180ms ease; }


.menu a { transition: color 120ms ease, background-color 120ms ease; }
.menu a.active { background: rgba(217, 152, 160, 0.22); color: #1b1f22; border-radius: 10px; }
@media (max-width: 760px) {
  .menu a.active { background: rgba(217, 152, 160, 0.18); }
}

/* Guests grid normalization */
.grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) {
  .grid { grid-template-columns: 1fr 1fr; }
}

/* Ensure Shop nav link matches others */
.menu a[href*='fourthwall.com'] { color: white !important; }

.menu a:visited { color: white; }


/* Normalize top nav tabs including external Shop link */
header .menu a,
header .menu a:link,
header .menu a:visited {
  color: white !important;
  text-decoration: none !important;
  padding: 6px 10px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  display: inline-block !important;
}

header .menu a:hover,
header .menu a:focus {
  background: rgba(255,255,255,0.12) !important;
  text-decoration: none !important;
  outline: none !important;
}

/* Explicitly ensure the Fourthwall Shop link matches */
header .menu a[href*="fourthwall.com"],
header .menu a[href*="fourthwall.com"]:link,
header .menu a[href*="fourthwall.com"]:visited {
  color: white !important;
}



/* Normalize nav tab backgrounds */
header .menu a,
header .menu a:link,
header .menu a:visited {
  background: transparent !important;
}



/* Prevent active background highlight for Shop nav link */
header .menu a[href*="fourthwall.com"].active {
  background: transparent !important;
  color: white !important;
}



/* Remove active underline and tint for external Shop tab */
header nav a[href*="fourthwall.com"].active,
header .menu a[href*="fourthwall.com"].active {
  border-bottom: none !important;
  background: transparent !important;
  color: white !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

