/* ------------- START OF THE FILM CARDS SECTION ------------- */

.FilmCardsSection {
  width: 100%;
  height: 100%;
  display: flex;
}

.FilmCardsSection .title,
.FilmCardsSection .subtitle {
  opacity: 1;
}

.FilmCardsSection .card {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.FilmCardsSection .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/Screenshot_2.webp") 50% 50%;
  z-index: 1;
  opacity: 0.3;
}

.FilmCardsSection .card:nth-of-type(2)::before {
  background: url("../img/Screenshot_35.webp") 50% 50%;
}

.FilmCardsSection .title {
  margin-bottom: 24px;
}

.FilmCardsSection .titleWrapper {
  font-size: 18px;
}

.FilmCardsSection .card .titleWrapper:first-of-type .underline {
  background-color: #de4d16;
}

.FilmCardsSection .card .titleWrapper:last-of-type .underline {
  width: 100%;
  left: 0;
}

.FilmCardsSection .card h2 {
  font-size: 2em;
  color: white;
  display: inline-block;
  padding: 4px 8px;
  line-height: 0.55em;
}

.FilmCardsSection .card p {
  font-size: max(12px, 1.4vw);
  line-height: 130%;
  padding-right: 0;
}

@media screen and (max-width: 980px) {
  .FilmCardsSection .card p {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .FilmCardsSection {
    flex-direction: column;
    padding-top: 32px;
  }

  .FilmCardsSection .card {
    padding: 32px;
  }

  .FilmCardsSection .card p {
    font-size: 14px;
  }
}
@media screen and (max-width: 425px) {
  .FilmCardsSection .card h2 {
    font-size: 16px;
  }

  .FilmCardsSection .card p {
    font-size: 12px;
  }
}

/* ------------- END OF THE FILM CARDS SECTION ------------- */

/* ------------- START OF THE TRAILER + BACKSTAGE SECTION ------------- */

.blocTitle {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 40px;
  margin-bottom: 80px;
}

.blocTitle h2 {
  margin: 0;
  padding: 0 8px;
}

.blocTitle .titleWrapper:first-of-type {
  font-size: 24px;
}

.blocTitle .titleWrapper:first-of-type .underline {
  background-color: #de4c16;
  width: 130%;
  left: -15%;
}

.video-gallery {
  display: flex;
  justify-content: center;
  gap: 45px;
  box-sizing: border-box;
}

.video-gallery .gallery-item {
  position: relative;
  width: 100%;
  max-height: 240px;
  max-width: 320px;
  height: 300px;
  background: #000;
  cursor: none;
  overflow: hidden;
}

.video-gallery .gallery-item img {
  position: relative;
  display: block;
  width: 115%;
  height: 300px;
  object-fit: cover;
  opacity: 0.5;
  transition: all 350ms ease-in-out;
  transform: translate3d(-23px, 0, 0);
}

.north-cascades-img {
  object-position: 50% 30%;
}

.video-gallery .gallery-item .gallery-item-caption {
  padding: 32px;
  font-size: 1em;
  color: #fff;
  text-transform: uppercase;
}

.video-gallery .gallery-item .gallery-item-caption,
.video-gallery .gallery-item .gallery-item-caption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-gallery .gallery-item h2 {
  font-size: 20px;
  font-weight: 300;
  overflow: hidden;
  padding: 0 0 12px 0;
}

.video-gallery .gallery-item h2,
.video-gallery .gallery-item p {
  position: relative;
  margin: 0;
  z-index: 1;
  pointer-events: none;
}

.video-gallery .gallery-item p {
  letter-spacing: 1px;
  font-size: 12px;
  padding: 12px 0;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(10%, 0, 0);
}

.video-gallery .gallery-item:hover img {
  opacity: 0.3;
  transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item .gallery-item-caption {
  text-align: left;
}

.video-gallery .gallery-item h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
  height: 1px;
  background: #fff;
  transition: transform 0.3s;
  transform: translate3d(-100%, 0, 0);
}

.video-gallery .gallery-item:hover h2::after {
  transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item:hover p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 768px) {
  .TrailerSection,
  .BackstageSection {
    padding: 40px 24px 0;
  }

  .video-gallery {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 425px) {
  .TrailerSection,
  .BackstageSection {
    padding: 40px 24px 0;
  }
  .blocTitle {
    margin-bottom: 16px;
    font-size: 24px;
    gap: 2px;
  }

  .blocTitle .titleWrapper:first-of-type {
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  .blocTitle {
    font-size: 16px;
  }

  .video-gallery .gallery-item {
    max-height: 200px;
  }
}

/* ------------- END OF THE TRAILER + BACKSTAGE SECTION ------------- */

/* ------- START PROTAGONISTS SECTION ------- */

.TeamSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  height: 100dvh;
  padding-top: 64px;
}

.ProtagonistHeader {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 32px;
  padding: 40px;
  justify-content: space-between;
  align-items: center;
}

.ProtagonistHeader .titleWrapper {
  font-size: 30px;
  padding: 0 8px;
  margin-bottom: 8px;
}

.ProtagonistHeader h2 {
  margin: 0;
}

.paraProta {
  font-size: 0.8em;
  width: 35%;
  height: 100%;
  line-height: 1.1em;
  letter-spacing: 0.1em;
}
.subTitleProta {
  display: inline-block;
  color: black;
  font-size: 1em;
  font-weight: 200;
  position: relative;
  margin-bottom: 0.2em;
}

.TitleProta {
  display: inline-block;
  color: white;
  font-size: 3em;
  font-weight: 700;
  transform: skewX(-5deg);
  position: relative;
}

.blocFade {
  height: 100%;
}

.team-presentation {
  height: 100%;
  display: flex;
  background-color: rgba(11, 43, 15, 1);
  font-size: 16px;
  line-height: 1.75;
}

.tl-item {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 25%;
  height: 100%;
  color: #fff;
  overflow: hidden;
  transition: width 0.5s ease;
}

.tl-item::before,
.tl-item::after {
  transform: translate3d(0, 0, 0);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.tl-item::after {
  background: rgba(11, 43, 15, 0.5);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.tl-item::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 75%
  );
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 0, 0) translateY(50%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tl-item:hover {
  width: 30% !important;
}

.tl-item:hover::after {
  opacity: 0;
}

.tl-item:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) translateY(0);
  transition: opacity 1s ease, transform 1s ease 0.25s;
}

.tl-item:hover .tl-content {
  position: absolute;
  bottom: 10%;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.75s ease 0.5s;
}

.tl-item:hover .tl-bg {
  filter: grayscale(0);
}

.tl-content {
  transform: translate3d(0, 0, 0) translateY(25px);
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 1.618em;
  bottom: 15%;
  opacity: 0;
}
.prodContent {
  bottom: 5% !important;
}

.tl-content h1 {
  text-transform: uppercase;
  color: white;
  font-size: 1.44rem;
  font-weight: 600;
}
.tl-content p {
  padding-left: 3em;
  padding-right: 3em;
  font-size: 0.7vw;
}

@media screen and (max-width: 920px) {
  .ProtagonistHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .ProtagonistHeader .titleWrapper {
    font-size: 24px;
  }

  .ProtagonistHeader p {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .ProtagonistHeader {
    margin-top: 0;
  }

  .team-presentation {
    height: 100%;
    flex-direction: column;
  }

  .tl-item {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .tl-year {
    position: absolute;
    top: 50%;
  }

  .team-presentation:hover .tl-item {
    width: 100% !important;
  }

  .team-presentation .tl-item:hover {
    width: 100% !important;
  }

  .tl-item:hover::after {
    opacity: 1;
  }

  .tl-item:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0) translateY(50%);
  }

  .tl-item:hover .tl-content {
    position: static;
    bottom: 10%;
    opacity: 0;
    transform: translateY(0);
  }

  .tl-item:hover .tl-bg {
    filter: none;
  }
}

@media screen and (max-width: 425px) {
  .ProtagonistsSection .ProtagonistHeader {
    padding: 10px 16px;
    gap: 4px;
  }

  .ProtagonistsSection .ProtagonistHeader .titleWrapper {
    font-size: 12px;
    margin: 0;
  }
}

/* ------- END PROTAGONISTS SECTION ------- */

/* ------- START PRODUCERS SECTION ------- */
.ProducersSection .ProtagonistHeader {
  gap: 40px;
}

.ProducersSection .ProtagonistHeader .titleWrapper:first-of-type .underline {
  background-color: #de4c16;
}

.ProducersSection .ProtagonistHeader h3 {
  font-weight: 100;
  font-size: 1.1rem;
  color: #1d7031;
  margin: 0;
}

@media screen and (max-width: 920px) {
  .ProducersSection .ProtagonistHeader {
    flex-direction: row;
    align-items: center;
  }

  .ProducersSection .ProtagonistHeader .titleWrapper {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .ProducersSection .ProtagonistHeader {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0;
  }

  .ProducersSection .ProtagonistHeader .titleWrapper {
    font-size: 16px;
  }
}

@media screen and (max-width: 425px) {
  .ProducersSection .ProtagonistHeader {
    flex-direction: row;
    padding: 30px 0 24px;
    gap: 12px;
  }

  .ProducersSection h2 {
    font-size: 20px;
  }
}
