html {
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.6em;
  font-weight: 300;
  font-kerning: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--black);
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
  font-family: 'Rubik Mono One', monospace;
  color: #838383;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 15px;
}
p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.42857143;
  color: #838383;
  padding-bottom: 2rem;
}
h1 {
  font-family: 'Rubik Mono One', monospace;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
  color: inherit;
  letter-spacing: 0.8px;
  font-size: 1.4rem;
}
h2 {
  font-family: inherit;
  font-weight: 400;
  line-height: 1.1;
  color: inherit;
  font-size: 1.2rem;

  color: #838383;
}
h3 {
  font-family: inherit;
  font-weight: 600;
  line-height: 1.1;
  color: inherit;
  font-size: 1.2rem;

  color: #838383;
}
ul {
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 1rem;
  padding: 0 15px;
  margin-left: 0;
  color: #838383;
}
li {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 0.5rem;
}
.audio-on {
  width: 30px; /* equal width + height */
  height: 30px;
  fill: currentColor;
  stroke: currentColor;
  display: block;
  align-items: center;
  justify-content: center;
}

.audio-off {
  width: 30px; /* equal width + height */
  height: 30px;
  fill: currentColor;
  stroke: currentColor;
  display: block;
}

/* HOME LINK FOR FILM AND ARROW BUTTON*/
.home-link-film {
  text-transform: uppercase;
  /*text-shadow: 3px 3px 3px #a33636;*/
  color: #555;
  font-family: 'Rubik Mono One', monospace;
  font-weight: 900;
  font-style: bold;
  word-spacing: 0.5em;
  letter-spacing: 2px;
  display: inline-block;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.home-link-film:hover {
  color: #cc0001;
  transform: translateY(-2px);
}
p .home-link-film :hover {
  color: #cc0001;
  transform: translateY(-2px);
}
.circle-icon-film {
  fill: #505050;
  width: 40px; /* equal width + height */
  height: 40px;
  padding: 8px; /* equal padding keeps the circle shape */
  background-color: #000000;
  border-radius: 50%; /* perfect circle */
  border: 4px solid #505050;
  box-sizing: border-box;
}
.circle-icon-film:hover {
  fill: #cc0001;
  width: 40px; /* equal width + height */
  height: 40px;
  padding: 5px;
  background-color: #ffffff;
  border-radius: 50px;
  border: 8px solid #000000;
  box-sizing: border-box;
}
/* HOME LINK FOR HTML5 ANIMATION AND ARROW BUTTON*/
.home-link-interactive {
  text-transform: uppercase;
  /*text-shadow: 3px 3px 3px #a33636;*/
  color: #cc0001;
  font-family: 'Rubik Mono One', monospace;
  font-style: bolder;
  word-spacing: 0.5em;
  letter-spacing: 2px;
  display: inline-block;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.home-link-interactive :hover {
  color: #b5f0f8;
}
.circle-icon-interactive {
  fill: #505050;
  width: 40px; /* equal width + height */
  height: 40px;
  padding: 8px; /* equal padding keeps the circle shape */
  background-color: #fff;
  border-radius: 50%; /* perfect circle */
  border: 4px solid #505050;
  box-sizing: border-box;
}

.circle-icon-interactive:hover {
  fill: #cc0001;
  width: 40px; /* equal width + height */
  height: 40px;
  padding: 5px;
  background-color: #ffffff;
  border-radius: 50px;
  border: 8px solid #000000;
  box-sizing: border-box;
}

.nav-captions {
  display: flex;
  flex-direction: column;
  margin: auto;
}

/* Flex container for the top row */
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin: auto;
}

/* Left side (Helen Judge) */
.header-left a {
  font-size: 1.2rem;
  text-decoration: none;
  padding: 50px 15px;
}

/* Right side (back arrow) */
.header-right a {
  text-decoration: none;
  padding: 50px 15px;
}

.content-block p {
  color: #838383;
  margin: 0;
  padding: 1em;
}
.content-block a:link,
.content-block a:visited {
  color: #908f8f;
  text-decoration: none;
  font-weight: 700;
}

.content-block a:hover {
  color: #cc0001;
  text-decoration: underline;
  font-weight: 700;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

#project-title {
  font-weight: bold;
  padding: 15px 15px;
  text-align: left;
  color: #838383;
}
.title-row {
  color: #434343;
}
button {
  background-color: transparent;
  border: none;
  color: grey;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.page-flow {
  flex: 1; /* this pushes #contact to the bottom */
  display: flex;
  flex-direction: column;
}

/* Hide the checkbox */
.read-more-check {
  display: none;
}

/* Hide extra content by default */
.extra-content {
  display: none;
  margin-top: 10px;
}

/* Style the button/label */
.read-more-label {
  display: inline-block;
  color: #888; /* Subtle grey for minimalism */
  cursor: pointer;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  padding-left: 15px;
}

.read-more-label:hover {
  color: #fff;
}

/* State changes when clicked */
.read-more-check:checked ~ .extra-content {
  display: block;
}

/* Change button text using content: "" */
.read-more-label::before {
  content: 'Read More +';
}

.read-more-check:checked ~ .read-more-label::before {
  content: 'Show Less -';
}
@media (max-width: 769px) {
  .audio-off,
  .audio-on {
    width: 25px; /* equal width + height */
    height: 25px;
  }
  button#sndOn.btn,
  button#sndOff.btn {
    padding: 0 !important;
  }
  .nav-captions {
    padding: 0 5px;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  .video-wrapper {
    height: 95vh; /* fill the screen height */
    width: auto; /* preserve aspect ratio */
    max-width: 100%; /* don’t overflow your 80% wrapper */
    object-fit: contain;
    margin-top: 0; /* align to top of wrapper */
  }
  .nav-captions {
    max-width: 80%;
  }
  .header-row {
    max-width: 80%;
  }
}
