@font-face {
  font-family: "Bebas Neue";
  font-style: NORMAL_OR_ITALIC;
  font-weight: NUMERIC_WEIGHT_VALUE;
  src: url(../fonts/bebas-neue/BebasNeue-Regular.ttf) format("woff2");
}
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 20px;
  background-color: #1a1f22;
  color: #f4f7f6;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Bebas Neue, sans-serif;
  color: #e67e22;
  border-bottom: 2px solid #e67e22;
  letter-spacing: 1.5px;
}

.top-bar {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 5px;
  align-items: center;
  height: 45px;
  background-color: #8a1518;
}
.top-bar .logo-nav {
  display: flex;
  flex-direction: column-reverse;
  background-color: #e1e8eb;
  justify-content: space-between;
  background-color: #8a1518;
}
.top-bar .logo-nav .logo-container {
  text-align: center;
}
.top-bar .logo-nav .logo-container .site-logo {
  display: none;
  width: 100%;
  max-width: 300px;
}
.top-bar .logo-nav .nav-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  background-color: #8a1518;
  padding: 10px;
  column-gap: 20px;
}
.top-bar .logo-nav .nav-container .menu-toggle-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
}
.top-bar .logo-nav .nav-container .menu-toggle-container span {
  display: block;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.top-bar .logo-nav .nav-container #site-navigation {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: calc(100vw - 50px);
  background-color: #3a474d;
  z-index: 999;
  margin-left: -100vw;
}
.top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container #primary-menu {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container #primary-menu .menu-item {
  text-align: center;
  margin: 10px 0;
  font-size: 24px;
  color: #f4f7f6;
  list-style-type: none;
}
.top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container #primary-menu .menu-item a {
  font-family: Bebas Neue, sans-serif;
  font-size: 35px;
  color: #f4f7f6;
  text-decoration: none;
}
.top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container #primary-menu .menu-item a:hover {
  color: #ffd700;
}
.top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container #primary-menu .menu-item.current-menu-item a {
  color: #ffd700;
}
.top-bar .logo-nav .nav-container.open #site-navigation {
  animation-name: openMenu;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.top-bar .logo-nav .nav-container.open .menu-toggle-container span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.top-bar .logo-nav .nav-container.open .menu-toggle-container span:nth-child(2) {
  opacity: 0;
}
.top-bar .logo-nav .nav-container.open .menu-toggle-container span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.top-bar .logo-nav .nav-container.closed #site-navigation {
  animation-name: closeMenu;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.top-bar .logo-nav .nav-container.closed .menu-toggle-container span:nth-child(1) {
  transform: rotate(0) translate(0, 0);
}
.top-bar .logo-nav .nav-container.closed .menu-toggle-container span:nth-child(2) {
  opacity: 1;
}
.top-bar .logo-nav .nav-container.closed .menu-toggle-container span:nth-child(3) {
  transform: rotate(0) translate(0, 0);
}
.top-bar .logo-nav .nav-container .signin a {
  color: #e1e8eb;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: Bebas Neue, sans-serif;
}
.top-bar .logo-nav .nav-container .signin a:hover {
  color: #ffd700;
}
.top-bar .search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 100%;
  background-color: purple;
}
.top-bar .search-container .search-icon {
  width: 25px;
  height: 25px;
}

#home-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 230px;
  background-color: #3a474d;
  background-size: cover;
  background-position: center;
}
#home-banner .title-search {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#home-banner .title-search .site-title {
  font-size: 48px;
  color: #f4f7f6;
  margin-top: 0;
  margin-bottom: 7px;
  letter-spacing: 2px;
}
#home-banner .title-search .search-form .input-fields {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
#home-banner .title-search .search-form .input-fields .search-input {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  outline: none;
  box-sizing: border-box;
  box-shadow: 2px 2px 5px 0px #000;
}
#home-banner .title-search .search-form .input-fields .search-button {
  background-color: #8a1518;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  color: #fff;
  box-shadow: 2px 2px 5px 0px #000;
}
#home-banner .title-search .search-form .input-fields .search-button:hover {
  background-color: #e67e22;
  cursor: pointer;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

#main {
  background-color: #3a474d;
}

.section-row {
  display: flex;
  flex-direction: row;
  padding: 20px;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
}
.section-row .section-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  width: 100%;
  max-width: 1200px;
  column-gap: 20px;
  box-sizing: border-box;
}
.section-row .section-inner > div {
  width: 100%;
}

.show-list-container {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 25px 10px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.show-list-container::-webkit-scrollbar {
  display: none;
}
.show-list-container .show-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-shrink: 0;
  max-width: 115px;
  scroll-snap-align: start;
}
.show-list-container .show-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  border-radius: 5px;
}
.show-list-container .show-item .show-title, .show-list-container .show-item .cast-name {
  font-family: Bebas Neue, sans-serif;
  font-size: 14px;
  color: #fff;
  border-bottom: none;
  margin: 0;
  letter-spacing: 1.3px;
}

.page-template-page-show .show-backdrop {
  position: relative;
  height: 230px;
  background-size: cover;
  background-position: top center;
}
.page-template-page-show .tagline {
  text-align: center;
  color: #f4f7f6;
  font-size: 26px;
  font-family: bebas neue;
  font-style: italic;
  margin-top: 10px;
  position: relative;
}
.page-template-page-show .tagline.in-backdrop {
  display: none;
  text-align: left;
}
.page-template-page-show .tagline.in-backdrop::after {
  display: block;
  content: "";
  width: 35%;
  height: 11px;
  background-color: #e67e22;
}
.page-template-page-show .show-details-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -75px;
  padding: 0 20px;
}
.page-template-page-show .show-details-container .section-inner {
  flex-direction: column;
}
.page-template-page-show .show-details-container .section-inner .img-container {
  position: relative;
  flex: unset;
  width: 250px;
  margin: auto;
  border-radius: 10px;
  background-color: #3a474d;
  z-index: 1;
}
.page-template-page-show .show-details-container .section-inner .img-container .show-poster {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 2px 2px 20px 5px #1a1f22;
  overflow: hidden;
}
.page-template-page-show .show-details-container .section-inner .img-container .rating-container {
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  font-family: "Bebas Neue";
  width: 60px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0 5px 0;
}
.page-template-page-show .show-details-container .section-inner .show-details .watch-provider-logos {
  display: none;
  text-align: left;
  margin-top: 20px;
}
.page-template-page-show .show-details-container .section-inner .show-details .detail {
  margin: 5px 0 0 0;
}
.page-template-page-show .show-details-container .section-inner .show-details .detail span {
  font-weight: bold;
  color: #e67e22;
}
.page-template-page-show .show-details-container .section-inner .show-details .show-title {
  font-size: 55px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px;
}
.page-template-page-show .show-details-container .section-inner .show-details .show-title .airdate {
  display: block;
  font-size: 20px;
  color: #e1e8eb;
}
.page-template-page-show .show-details-container .section-inner .show-details .show-overview {
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
.page-template-page-show .show-details-container .watch-provider-logos {
  margin-top: 5px;
  text-align: center;
}
.page-template-page-show .show-details-container .watch-provider-logos .watch-provider-logo {
  width: 45px;
  height: auto;
  margin: 0 2px;
  border-radius: 10%;
}

.search-overlay-container {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  z-index: 99999;
  padding: 20px;
}
.search-overlay-container.open {
  display: flex;
}
.search-overlay-container .search-overlay-container-inner {
  width: 100%;
  max-width: 500px;
  padding: 20px;
}
.search-overlay-container .search-overlay-container-inner h2 {
  border: none;
  margin: 0 0 20px 0;
}
.search-overlay-container .search-overlay-container-inner .search-form .search-input {
  width: 100%;
  height: 30px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 19px;
  font-family: "Open Sans", sans-serif;
}
.search-overlay-container .search-overlay-close-button {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 45px;
  height: 45px;
  background-color: #8a1518;
  border-radius: 50%;
  transform: translateX(-50%);
}
.search-overlay-container .search-overlay-close-button:hover {
  cursor: pointer;
  background-color: #e67e22;
}
.search-overlay-container .search-overlay-close-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transform-origin: center;
}
.search-overlay-container .search-overlay-close-button span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.search-overlay-container .search-overlay-close-button span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-footer .site-info .footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #e1e8eb;
  padding: 0 20px;
}
.site-footer .site-info .footer-bottom p {
  color: #3a474d;
}

@media (min-width: 768px) {
  .logo-nav {
    flex-direction: row;
    justify-content: flex-start;
  }
  .logo-nav .logo-container {
    display: flex;
    flex: 1;
  }
  #home-banner {
    height: auto;
    aspect-ratio: 100/33;
  }
  #home-banner .title-search {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }
  .page-template-page-show .show-backdrop {
    height: 400px;
  }
  .page-template-page-show .show-backdrop .overlay {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .page-template-page-show .tagline.in-backdrop {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
  }
  .page-template-page-show .tagline.in-content {
    display: none;
  }
  .page-template-page-show .show-details-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    margin-top: -95px;
  }
  .page-template-page-show .show-details-container .section-inner {
    flex-direction: row;
  }
  .page-template-page-show .show-details-container .section-inner .img-container {
    margin-top: -80px;
  }
  .page-template-page-show .show-details-container .section-inner .img-container .show-poster {
    min-width: 250px;
    height: auto;
  }
  .page-template-page-show .show-details-container .section-inner .img-container .watch-provider-logos {
    display: none;
  }
  .page-template-page-show .show-details-container .section-inner .show-details {
    z-index: 1;
    flex: 1;
  }
  .page-template-page-show .show-details-container .section-inner .show-details .watch-provider-logos {
    display: block;
  }
  .page-template-page-show .show-details-container .section-inner .show-details .show-title {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
  }
  .page-template-page-show .show-details-container .section-inner .show-details .show-title .airdate {
    display: inline;
    font-size: 22px;
  }
  .show-list-container .show-item {
    max-width: 160px;
  }
  .search-overlay-container .search-overlay-container-inner h2 {
    font-size: 45px;
  }
  .search-overlay-container .search-overlay-container-inner .search-form .search-input {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    background-color: transparent;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
    flex-direction: row;
    justify-content: flex-end;
  }
  .top-bar .logo-nav {
    display: block;
    width: max-content;
    height: 45px;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    z-index: 1;
  }
  .top-bar .logo-nav .logo-container {
    display: flex;
    flex: 1;
  }
  .top-bar .logo-nav .nav-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    background-color: transparent;
    padding: 0;
  }
  .top-bar .logo-nav .nav-container .menu-toggle-container {
    display: none;
  }
  .top-bar .logo-nav .nav-container #site-navigation {
    flex: 1;
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    z-index: auto;
    margin-left: 0;
  }
  .top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container {
    justify-content: flex-end;
  }
  .top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container #primary-menu {
    flex-direction: row;
    margin: 5px;
  }
  .top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container #primary-menu .menu-item {
    margin: 0 15px;
  }
  .top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container #primary-menu .menu-item a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container #primary-menu .menu-item a:hover {
    color: #ffd700;
  }
  .top-bar .logo-nav .nav-container #site-navigation .menu-primary-navigation-container #primary-menu .menu-item.current-menu-item a {
    color: #ffd700;
  }
  .top-bar .logo-nav .nav-container .signin a {
    color: #fff;
  }
  .top-bar .logo-nav .nav-container .signin a:hover {
    color: #ffd700;
  }
  .top-bar .search-container {
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
  }
  .top-bar .search-container:hover {
    cursor: pointer;
    background-color: #ffd700;
  }
  .show-list-container .show-item {
    max-width: 175px;
  }
  .page-template-page-show .show-backdrop {
    height: 500px;
  }
}
@media (min-width: 1440px) {
  .page-template-page-show .show-backdrop {
    height: 700px;
  }
  .show-list-container .show-item {
    max-width: 175px;
  }
}
@keyframes openMenu {
  from {
    margin-left: -100vw;
  }
  to {
    margin-left: 0;
  }
}
@keyframes closeMenu {
  from {
    margin-left: 0;
  }
  to {
    margin-left: -100vw;
  }
}

/*# sourceMappingURL=style.css.map */
