/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #d72127;
  --secondary-color: #004e89;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --overlay-dark: rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

section[id],
div[id] {
  scroll-margin-top: 72px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.navbar-brand {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

.navbar-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-controls .control-btn {
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.navbar-controls .control-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.navbar-controls .play-btn {
  background: #d72127;
  width: 36px;
  height: 36px;
  padding: 0;
}

.navbar-controls .play-btn:hover {
  background: #b51d1f;
}

.navbar-controls .volume-btn {
  cursor: ns-resize;
  user-select: none;
  -webkit-user-select: none;
}

.navbar-controls .volume-btn.muted {
  color: #666;
}

.navbar-menu {
  flex: 1;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.navbar-menu a:hover {
  color: #fff;
}


.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.4rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar-toggle .icon-close { display: none; }
.navbar.open .navbar-toggle .icon-menu { display: none; }
.navbar.open .navbar-toggle .icon-close { display: block; }

@media (max-width: 900px) {
  .navbar {
    padding: 0 1rem;
  }

  .navbar-brand {
    flex: 0;
    font-size: 0.85rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    display: none;
    flex: unset;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.25rem 0 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar.open .navbar-menu {
    display: flex;
  }

  .navbar-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-menu li:last-child {
    border-bottom: none;
  }

  .navbar-menu a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Full-Screen Hero Section */
.hero-section {
  width: 100vw;
  min-height: 100vh;
  background-image: url('/img/title-screen.webp');
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Content Sections */
.content-section {
  padding: 6rem 2rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about {
  background-color: #ffffff;
}

#about .container {
  max-width: 1400px;
}

#about p {
  max-width: 100%;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

/* Parallax Pull Quote Section */
.parallax-quote {
  background-image: url('/img/mtp-map.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.quote-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding: 3rem;
  text-align: center;
}

.parallax-quote blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

.parallax-quote blockquote p {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
}

.parallax-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: normal;
  font-weight: 400;
  color: var(--text-dark);
  text-align: right;
}

.parallax-quote.zapata-quote {
  background-image: url('/img/dc-riots-1968.webp');
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.content-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.content-section p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* Media & Text Section */
.media-text-section {
  display: flex;
  width: 100%;
  height: 100vh;
}

.media-column {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.media-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--text-light);
  padding: 1rem 1.5rem;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.4;
  text-align: left;
}

.image-caption a {
  color: var(--text-light);
  text-decoration: underline;
}

.text-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background-color: #f5f5f5;
}

.text-column h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.text-column h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #222222;
}

.text-column p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* 50/50 Text & Image Section */
.text-image-section {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.text-column-wide {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background-color: #f5f5f5;
}

.text-column-wide h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.text-column-wide h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #222222;
}

.text-column-wide p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.outlaws-section {
  display: flex;
  justify-content: center;
  background-color: #f5f5f5;
}

.outlaws-section .text-column-wide {
  flex: 0 1 70%;
  max-width: 70%;
}

.image-column-narrow {
  flex: 1;
  overflow: hidden;
  padding: 4rem;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-column-narrow img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.image-wrapper {
  position: relative;
  width: 100%;
}

.poster-heading {
  background-color: #000;
  text-align: center;
  padding: 5rem 3rem 1rem;
}

.poster-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.poster-feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background-color: #000;
  padding: 1rem 3rem 1.5rem;
}

.poster-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.poster-feature-item {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  will-change: transform;
}

.poster-feature-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.32s ease;
}

.poster-feature-copy {
  background-color: transparent;
  color: #fff;
  padding: 2.25rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.poster-feature-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.poster-feature-copy p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.65;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.poster-feature-copy p + p {
  margin-top: 1rem;
}

.poster-spotlight-row {
  background-color: #000;
  padding: 1.5rem 3rem 4.5rem;
}

.poster-spotlight-inner {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  width: min(100%, 1400px);
  margin: 0 auto;
  align-items: center;
}

.poster-spotlight-image {
  width: clamp(380px, 100%, 540px);
  justify-self: center;
  margin: 0.5rem auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  will-change: transform;
}

.poster-spotlight-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: filter 0.32s ease;
}

.poster-spotlight-copy {
  color: #fff;
  display: flex;
  align-items: center;
}

.poster-spotlight-copy p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.7;
  max-width: 60ch;
}

/* Poster CTA */
.poster-cta-section {
  background-color: #000;
  padding: 4rem 2rem 8rem;
  text-align: center;
}

.poster-cta-section h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin: 0 0 1rem;
}

.poster-cta-section p {
  color: #aaa;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 55ch;
  margin: 0 auto 2rem;
}

.poster-cta-section a:not(.btn-purchase) {
  color: #2ecc71;
}

.poster-feature-item:hover,
.poster-spotlight-image:hover,
.poster-feature-item:focus-within,
.poster-spotlight-image:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(215, 33, 39, 0.45);
}

.poster-feature-item:hover img,
.poster-spotlight-image:hover img,
.poster-feature-item:focus-within img,
.poster-spotlight-image:focus-within img {
  filter: saturate(1.06) contrast(1.03);
}


.player-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 24px;
}

.btn-listen-start {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.5rem 1.25rem;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #2ecc71;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  font-family: inherit;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-listen-start:hover {
  background-color: rgba(46, 204, 113, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.2);
}

/* Purchase Button */
.btn-purchase {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 1.25rem;
  background-color: #2ecc71;
  color: #222222;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-purchase:hover {
  background-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

/* Listen Section */
.listen-section {
  width: 100%;
  padding: 6rem 2rem;
  background-image: url('/img/studio-board.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.listen-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 26, 26, 0.85);
  z-index: 0;
}

.listen-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.listen-section p {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Full Width Image Section */
.full-width-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.full-width-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Poster Modal */
.poster-trigger {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: zoom-in;
}

.poster-trigger img {
  display: block;
  width: 100%;
}

.poster-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.poster-modal[hidden] {
  display: none;
}

.poster-modal-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.8);
}

.poster-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.poster-modal-close:hover {
  opacity: 1;
}

/* Email Signup */
.footer-signup {
  padding-bottom: 2rem;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
}

.footer-signup h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.footer-signup p {
  color: #aaa;
  font-size: 1rem;
  margin: 0 0 2rem;
}

.signup-form {
  display: flex;
  justify-content: center;
}

.signup-fields {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 420px;
}

.signup-fields input[type="email"] {
  flex: 1;
  padding: 0.55rem 1rem;
  background-color: #222;
  border: 1px solid #444;
  border-radius: 4px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.signup-fields input[type="email"]:focus {
  border-color: #2ecc71;
}

.signup-fields button {
  padding: 0.55rem 1.25rem;
  background-color: #2ecc71;
  color: #222;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.signup-fields button:hover {
  background-color: #27ae60;
}

.signup-success {
  color: #fff;
  font-size: 1.1rem;
}

.signup-error {
  color: #e55;
  font-size: 1.1rem;
}

/* Credits */
.credits-section {
  background-color: #f5f5f5;
  padding: 5rem 2rem;
}

.credits-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.credits-acknowledgments h2,
.credits-sources h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.credits-acknowledgments p {
  margin-bottom: 1.25rem;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
}

.credits-sources ul {
  padding-left: 1.25rem;
  line-height: 2;
}

.credits-sources ul li {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* Footer */
.footer {
  background-color: #000;
  color: var(--text-light);
  padding: 3rem 2rem;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-site-logo {
  display: block;
  width: 75px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.footer a {
  color: var(--text-light);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--primary-color);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
  transition: text-decoration-color 0.3s ease;
}

.footer a:hover {
  color: var(--text-light);
  text-decoration-color: #ff6b6f;
}

/* Responsive Design */
/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .media-text-section {
    flex-direction: column;
    height: auto;
  }

  .media-column {
    width: 100%;
    height: 50vw;
    max-height: 500px;
  }

  .media-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .text-column {
    padding: 3rem 2rem;
  }

  .text-image-section {
    flex-direction: column;
  }

  .text-column-wide {
    padding: 3rem 2rem;
  }

  .outlaws-section .text-column-wide {
    flex-basis: 100%;
    max-width: 100%;
  }

  .image-column-narrow {
    padding: 0;
    min-height: unset;
  }

  .image-wrapper {
    height: auto;
  }

  .image-column-narrow img {
    min-height: unset;
    object-fit: cover;
    width: 100%;
  }

  .poster-feature-row {
    padding: 1rem 2rem 1.5rem;
  }

  .poster-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster-spotlight-row {
    padding: 0.5rem 2rem 1.5rem;
  }

  .poster-spotlight-inner {
    grid-template-columns: 1fr;
  }

  .poster-spotlight-image {
    width: min(100%, 420px);
  }

}

/* Mobile screens */
@media (max-width: 768px) {
  .hero-section {
    min-height: unset;
    aspect-ratio: 16 / 9;
  }

  .content-section {
    padding: 2.5rem 1.5rem;
    min-height: 0;
  }

  .footer .container {
    gap: 1rem;
  }

  .media-text-section {
    flex-direction: column;
    height: auto;
  }

  .media-column {
    width: 100%;
    height: auto;
  }

  .media-column img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  .text-column {
    padding: 2.5rem 1.5rem;
  }

  .text-image-section {
    flex-direction: column;
  }

  .text-column-wide {
    padding: 2.5rem 1.5rem;
  }

  .outlaws-section .text-column-wide {
    flex-basis: 100%;
    max-width: 100%;
  }

  .image-column-narrow {
    padding: 0;
    min-height: unset;
    margin-top: 2rem;
  }

  .image-column-narrow img {
    min-height: unset;
    object-fit: cover;
    width: 100%;
  }

  .full-width-image {
    margin-top: 2rem;
  }

  .text-image-section--reversed {
    flex-direction: column-reverse;
  }

  .credits-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-section {
    background-attachment: scroll;
  }

  .parallax-quote {
    background-attachment: scroll;
  }

  .listen-section {
    background-attachment: scroll;
  }

  .poster-feature-row {
    padding: 1rem 1.5rem 1.25rem;
    gap: 1rem;
  }

  .poster-feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .poster-spotlight-row {
    padding: 0.5rem 1.5rem 1.25rem;
    gap: 1rem;
  }

  .poster-spotlight-image {
    width: 100%;
  }

  .poster-feature-copy p {
    font-size: clamp(1.05rem, 4vw, 1.25rem);
  }

}


