/* ============================================
   Slut or Nut: Diary of a Rape Trial
   Stylesheet — matches original Wix design
   Colors: pink #eb0089 | teal #00b1b0 | gray #474747
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
  --pink:    #eb0089;
  --teal:    #00b1b0;
  --gray:    #474747;
  --black:   #000000;
  --white:   #ffffff;
  --offwhite: #f2f2f2;
  --nav-h:   42px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ============================================
   NAV
   ============================================ */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}

nav ul a {
  display: block;
  padding: 0 1rem;
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: var(--nav-h);
  transition: color 0.15s;
}

nav ul a:hover { color: var(--pink); }
nav ul a.active { color: var(--pink); }

/* ============================================
   FLOATING SOCIAL ICONS (right side)
   ============================================ */

.social-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.social-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
}

.social-float a:hover { background: rgba(255,255,255,0.18); }

.social-float svg {
  width: 16px;
  height: 16px;
  fill: #a3a3a3;
}

/* ============================================
   MAIN
   ============================================ */

main { padding-top: var(--nav-h); }

/* ============================================
   HOME HERO — full-width pink with video
   ============================================ */

.home-hero {
  background: var(--pink);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.home-hero .video-wrap {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 20px 0;
}

.home-hero iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* ============================================
   WATCH BUTTON SECTION
   ============================================ */

.watch-cta {
  background: var(--black);
  text-align: center;
  padding: 2.5rem 1rem;
}

.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.9rem 3rem;
  transition: opacity 0.2s;
}

.btn-teal:hover { opacity: 0.85; }

/* ============================================
   FILM DESCRIPTION + LAURELS
   ============================================ */

.film-desc {
  background: var(--black);
  text-align: center;
  padding: 2rem 2rem 3rem;
}

.film-desc p {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.9;
}

.laurels {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.laurels img {
  height: 85px;
  width: auto;
}

/* ============================================
   QUOTES SECTION
   ============================================ */

.quotes-section {
  background: var(--gray);
  padding: 3rem 2rem;
  text-align: center;
}

.quotes-section blockquote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1.2rem;
  line-height: 1.8;
}

.quotes-section blockquote:last-child { margin-bottom: 0; }

/* ============================================
   WATCH NOW HOME SECTION
   ============================================ */

.watch-now-home {
  background: var(--pink);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.watch-now-home a {
  display: block;
  width: 300px;
  padding: 1rem 1.5rem;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.watch-now-home a:hover { opacity: 0.75; }

/* ============================================
   FACEBOOK SECTION
   ============================================ */

.fb-section {
  background: var(--black);
  padding: 3rem 2rem;
  text-align: center;
}

.fb-section h2 {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* ============================================
   PODCAST SECTION (HOME)
   ============================================ */

.podcast-home {
  background: var(--black);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid #222;
}

.podcast-home h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--pink);
  margin-bottom: 1.5rem;
}

.podcast-home .listen-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.podcast-home .listen-links a {
  padding: 0.5rem 1.5rem;
  border: 1px solid #555;
  color: var(--white);
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}

.podcast-home .listen-links a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ============================================
   SUBSCRIBE SECTION
   ============================================ */

.subscribe-section {
  background: var(--offwhite);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.subscribe-section h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  color: var(--teal);
  font-style: italic;
  white-space: nowrap;
}

.subscribe-section .sub-label {
  font-size: 13px;
  color: #555;
  margin-bottom: 0.5rem;
}

.subscribe-form {
  display: flex;
  gap: 0;
}

.subscribe-form input[type="email"] {
  padding: 0.6rem 1rem;
  border: 1px solid #ccc;
  border-right: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  width: 240px;
  outline: none;
  color: #333;
}

.subscribe-form button {
  padding: 0.6rem 1.2rem;
  background: #888;
  border: 1px solid #888;
  color: white;
  font-size: 12px;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  transition: background 0.2s;
}

.subscribe-form button:hover { background: #666; }

/* ============================================
   CONTACT SECTION (HOME)
   ============================================ */

.contact-section {
  background: var(--black);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.contact-block {
  text-align: left;
}

.contact-block h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-block p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.9;
}

.contact-block a {
  color: var(--teal);
}

.contact-block .org {
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 0.4rem;
}

.contact-silhouette {
  width: 200px;
  opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--pink);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-watch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  list-style: none;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.footer-watch a {
  display: block;
  width: 240px;
  padding: 0.6rem 1rem;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  transition: opacity 0.2s;
}

.footer-watch a:hover { opacity: 0.8; }

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.footer-cupe {
  margin: 0.8rem auto 0;
  max-height: 30px;
  width: auto;
}

/* ============================================
   PAGE BANNER (all inner pages)
   ============================================ */

.page-banner {
  background: var(--pink);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.page-banner h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.page-banner .sub {
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.page-banner .sub a {
  color: var(--teal);
  text-decoration: underline;
}

/* ============================================
   WATCH PAGE
   ============================================ */

.watch-page {
  background: var(--pink);
  min-height: calc(100vh - var(--nav-h));
  padding: 0 2rem 4rem;
  text-align: center;
}

.watch-platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  max-width: 300px;
  margin: 0 auto;
}

.watch-platforms a {
  display: block;
  width: 240px;
  padding: 0.7rem 1rem;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.2s;
}

.watch-platforms a:hover { opacity: 0.8; }

.watch-page p.desc {
  font-size: 14px;
  color: var(--black);
  max-width: 600px;
  margin: 1.5rem auto;
  line-height: 1.8;
  font-style: italic;
}

/* ============================================
   TAKE ACTION PAGE
   ============================================ */

.take-action-page {
  background: var(--pink);
  min-height: calc(100vh - var(--nav-h));
  padding: 3rem 2rem 4rem;
}

.take-action-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--white);
  padding: 3rem;
}

.take-action-inner h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.take-action-inner p {
  font-size: 13px;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.take-action-inner .divider {
  border: none;
  border-left: 1px solid #ddd;
}

/* ============================================
   PODCAST PAGE
   ============================================ */

.podcast-banner {
  background: var(--pink);
  padding: 3rem 2rem;
  text-align: center;
}

.podcast-banner .eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.podcast-banner h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.podcast-banner .desc {
  font-size: 14px;
  color: var(--black);
  max-width: 600px;
  margin: 0 auto 0.5rem;
  line-height: 1.8;
}

.podcast-banner .warning {
  font-style: italic;
  font-size: 13px;
  color: rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
}

.podcast-banner .sub-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.podcast-banner .sub-btns a {
  padding: 0.5rem 1.5rem;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.podcast-banner .sub-btns a:hover { opacity: 0.75; }

.episodes {
  background: var(--black);
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.episode {
  border-bottom: 1px solid #222;
  padding: 1.5rem 0;
}

.episode:last-child { border-bottom: none; }

.episode h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

.episode h3 a:hover { color: var(--teal); }

.episode .meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #777;
  text-transform: uppercase;
}

.episode p {
  font-size: 13px;
  color: #aaa;
  margin-top: 0.4rem;
  line-height: 1.7;
}

/* ============================================
   EXPLORE PAGE
   ============================================ */

.explore-page {
  background: var(--pink);
  min-height: calc(100vh - var(--nav-h));
  padding: 3rem 2rem 4rem;
}

.explore-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem 3rem;
}

.explore-inner .intro {
  font-size: 13px;
  color: #555;
  margin-bottom: 2rem;
  text-align: center;
}

.explore-inner .intro a { color: var(--teal); }

.explore-item {
  border-bottom: 1px solid #eee;
  padding: 1.2rem 0;
}

.explore-item:last-child { border-bottom: none; }

.explore-item .tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.3rem;
}

.explore-item h3 {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.5;
}

.explore-item h3 a:hover { color: var(--pink); }

/* ============================================
   PRESS PAGE
   ============================================ */

.press-page {
  background: var(--pink);
  min-height: calc(100vh - var(--nav-h));
  padding: 3rem 2rem 4rem;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.press-card {
  background: var(--white);
  display: block;
  transition: transform 0.2s;
}

.press-card:hover { transform: translateY(-3px); }

.press-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.press-card .card-footer {
  padding: 0.8rem;
  text-align: center;
}

.press-card .card-footer span {
  display: inline-block;
  padding: 0.3rem 1rem;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 11px;
  color: #555;
  transition: all 0.2s;
}

.press-card:hover .card-footer span {
  border-color: var(--pink);
  color: var(--pink);
}

.press-more {
  text-align: center;
  background: var(--gray);
  padding: 1.5rem;
}

.press-more a {
  display: inline-block;
  background: var(--teal);
  color: var(--black);
  padding: 0.6rem 2rem;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.2s;
}

.press-more a:hover { opacity: 0.85; }

/* ============================================
   MEET THE TEAM PAGE
   ============================================ */

.team-page {
  background: var(--pink);
  padding: 3rem 2rem 4rem;
}

.team-page .intro {
  text-align: center;
  color: var(--black);
  font-size: 14px;
  max-width: 650px;
  margin: 0 auto 1.5rem;
  font-style: italic;
  font-family: 'Libre Baskerville', serif;
}

.team-card-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .team-card-wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .team-card-wrap { grid-template-columns: 1fr; }
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  margin-bottom: 0.8rem;
}

.team-card .photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: #aaa;
  font-size: 2rem;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: underline;
  margin-bottom: 0.2rem;
}

.team-card h3 a { color: var(--black); }

.team-card .role {
  font-size: 12px;
  color: #444;
  margin-bottom: 0.8rem;
}

.team-card p {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  text-align: left;
}

.artists-section {
  background: var(--pink);
  padding: 3rem 2rem;
}

.artists-section .inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.artists-section .text h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 0;
}

.artists-section .video-wrap {
  background: var(--black);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 13px;
}

/* ============================================
   TAKE ACTION PAGE (updated)
   ============================================ */

.takeaction-page {
  background: var(--pink);
  min-height: calc(100vh - var(--nav-h));
  padding: 0 2rem 4rem;
  text-align: center;
}

.takeaction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  background: var(--white);
  padding: 3rem;
  text-align: left;
}

.takeaction-card h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 0.8rem;
}

.takeaction-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}

.support-orgs {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem 3rem;
  text-align: left;
}

.support-orgs h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 0.8rem;
}

.support-orgs > p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.support-orgs ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.support-orgs ul li {
  margin-bottom: 0.4rem;
  font-size: 13px;
}

.support-orgs ul a {
  color: var(--teal);
  text-decoration: underline;
}

/* ============================================
   PODCAST PAGE (updated)
   ============================================ */

.podcast-page {
  background: var(--pink);
  min-height: calc(100vh - var(--nav-h));
  padding: 0 2rem 4rem;
  text-align: center;
}

.podcast-desc {
  font-size: 14px;
  color: var(--black);
  max-width: 650px;
  margin: 0 auto 0.8rem;
  line-height: 1.8;
}

.podcast-warning {
  font-style: italic;
  font-size: 13px;
  color: rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
}

.podcast-listen {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.podcast-listen a {
  padding: 0.5rem 1.5rem;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.podcast-listen a:hover { opacity: 0.75; }

.episode-list {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem 2.5rem;
  text-align: left;
}

.episode-item {
  border-bottom: 1px solid #eee;
  padding: 1.2rem 0;
}

.episode-item:last-child { border-bottom: none; }

.episode-item h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.episode-item h3 a { color: var(--black); }
.episode-item h3 a:hover { color: var(--pink); }

.episode-date {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.episode-item > p:not(.episode-date) {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* ============================================
   EXPLORE PAGE (updated)
   ============================================ */

.explore-page {
  background: var(--pink);
  min-height: calc(100vh - var(--nav-h));
  padding: 0 2rem 4rem;
  text-align: center;
}

.explore-intro {
  font-size: 14px;
  color: var(--black);
  margin: 0 auto 2rem;
  max-width: 600px;
}

.explore-intro a { color: var(--teal); text-decoration: underline; }

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.explore-card {
  background: var(--white);
  padding: 1.5rem;
}

.explore-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.4rem;
}

.explore-card h3 {
  font-size: 0.9rem;
  color: var(--black);
  line-height: 1.5;
  font-weight: 600;
}

.explore-card h3 a { color: var(--black); }
.explore-card h3 a:hover { color: var(--pink); }

.explore-card > p {
  font-size: 12px;
  color: #777;
  margin-top: 0.4rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  header { justify-content: center; padding: 0 1rem; }
  nav ul { flex-wrap: wrap; justify-content: center; gap: 0; }
  nav ul a { padding: 0 0.5rem; font-size: 11px; }

  .take-action-inner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .subscribe-section { flex-direction: column; gap: 1.5rem; text-align: center; }

  .contact-section { flex-direction: column; text-align: center; }

  .artists-section .inner { grid-template-columns: 1fr; }

  .social-float { display: none; }

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

@media (max-width: 480px) {
  .press-grid { grid-template-columns: 1fr; }
}
