@font-face {
  font-family: "Krona One";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/KronaOne-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Jaldi";
  font-style: bold;
  font-weight: 700;
  src: url(../fonts/Jaldi-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Jaldi";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Jaldi-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Jaldi";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Jaldi-Regular.ttf) format("truetype");
}
:root {
  --main-red: #f0532a;
  --main-orange: #f68525;
  --main-grey: #47494c;
  --dark-grey: #231f20;
  --head-font: "Tilt Warp", sans-serif;
  --body-font: "Jaldi", sans-serif;
}
html {
  scroll-behavior: smooth;
}

.frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(
      to bottom,
      rgba(20, 20, 20, 0.8),
      rgba(20, 20, 20, 0.8)
    ),
    url(../images/background.png);
  background-size: 10px;
}
.boob {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.boob img {
  width: 50vw;
  max-width: 300px;
  margin-bottom: 50px;
}
.boob h1 {
  color: white;
  font-family: var(--head-font);
  text-transform: uppercase;
}

* {
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--dark-grey);
}
img {
  max-width: 100%;
}
.wrapper {
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.container {
  max-width: 1200px;
  width: 100vw;
  padding: 0 20px;
  box-sizing: border-box;
}
.flex-centre {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hide {
  display: none;
}
.hero-reel {
  min-height: 100%;
}
/* Shaddows */
.top-shadow {
  height: 80px;
  width: 100vw;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0)
  );
}
.bottom-shadow {
  height: 80px;
  width: 100vw;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0)
  );
}

/* lightbox */
.lightbox {
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  z-index: 500;
}
.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.lightbox-close:hover {
  scale: 1.1;
}

.lightbox-video {
  position: relative;
  width: 78%;
  box-shadow: 0 0 150px rgba(246, 133, 37, 0.4);
}
.vid-hide {
  animation: fade-out 0.5s ease-in-out forwards;
}
.vid-show {
  animation: fade-in 0.5s ease-in-out forwards;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Slide-menu */
.slide-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--head-font);
  gap: 80px;
  right: 0;
  z-index: 500;
  width: 100vw;
  max-width: 500px;
  height: 100vh;
  background-color: rgba(35, 31, 32, 0.6);
  background-image: radial-gradient(
    circle at top,
    rgba(246, 133, 37, 0.3),
    rgba(246, 133, 37, 0)
  );
  box-shadow: -4px 0 16px 0 rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(40px);
  transition: all 0.25s ease-in-out;
}
.closed {
  transform: translateX(100%);
}
.slide-menu li {
  text-align: center;
  margin: 1.5rem 0 1.5rem 0;
  list-style: none;
  text-transform: uppercase;
}
.slide-menu a {
  color: white;
  text-decoration: none;
  text-align: center;
}
.slide-menu a:hover {
  color: var(--main-red);
}
.close-btn {
  cursor: pointer;
  fill: var(--main-red);
  transition: all 0.25s ease-in-out;
}
.close-btn:hover {
  scale: 1.1;
}

/* Navbar */
nav {
  position: fixed;
  width: 100vw;
  height: 100px;
  display: flex;
  z-index: 100;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 40px 0 30px;
  box-sizing: border-box;
}
.sayerlogo {
  background-image: url(../images/gs_logo.svg);
  background-repeat: none;
  background-size: cover;
  width: 80px;
  height: 80px;
}
.menu-btn {
  background-image: url(../images/nav/menu-btn.png);
  background-repeat: none;
  background-size: cover;
  width: 30px;
  height: 26px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.menu-btn:hover {
  scale: 1.15;
}
@media screen and (max-width: 800px) {
  .sayerlogo {
    width: 60px;
    height: 60px;
  }
}

/* Header */
header {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 100lvh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.628);
  box-sizing: border-box;
  z-index: 5;
}
.vid-container {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 100lvh;
  min-width: 100vw;
  overflow: hidden;
}
.vid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
}
.hero-reel {
  width: 100vw;
  height: 100lvh;
  object-fit: cover;
}
.home-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -5;
  transform: translate(-50%, -50%);
}
.title-box {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--head-font);
  /* background-color: rgba(0, 0, 0, 0.4); */
  text-transform: uppercase;
  width: 100vw;
  height: 100lvh;
  color: white;
  opacity: 1;
}
.title-box h1 {
  position: relative;
  display: inline-block;
  font-size: 5rem;
  padding: 5px 0px 5px 20px;
  transform: translateY(-10lvh);
}
.title-box span {
  bottom: -65px;
  background-image: linear-gradient(45deg, var(--main-red), var(--main-orange));
  font-size: 5rem;
  padding: 3px 26px 2px 20px;
  color: white;
  box-shadow: -8px 8px rgb(0, 0, 0);
}
.title-box img {
  width: 30%;
  min-width: 300px;
}
.about {
  position: absolute;
  bottom: -25px;
  width: 100vw;
  height: 250px;
  overflow: hidden;
}
.orangebox {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-family: var(--head-font);
  text-transform: uppercase;
  color: white;
  font-size: clamp(1.2rem, 2vw, 2.1rem);
  line-height: 120%;
  text-shadow: 3px 3px var(--dark-grey);
  padding: 4% 1% 5% 5%;
  bottom: 500;
  left: 0px;
  background-image: linear-gradient(
    to left,
    var(--main-orange) 20%,
    var(--main-red)
  );
  width: 45%;
  height: 100%;
  box-sizing: border-box;
  z-index: 5;
}
.orangebox::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -20px;
  width: 150px;
  height: 150%;
  background: var(--main-orange);
  transform: rotate(-12deg);
  z-index: -1;
}
.greybox {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  position: absolute;
  bottom: 25px;
  right: 0;
  padding: 2.5% 3% 3% 180px;
  font-family: var(--body-font);
  font-weight: normal;
  text-wrap: pretty;
  color: white;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.4;
  background-image: linear-gradient(to right, black, var(--dark-grey) 15%);
  width: calc(50% + 100px);
  height: 220px;
  box-sizing: border-box;
  overflow: hidden;
}
.callout {
  color: var(--main-orange);
  font-weight: bold;
}
@media screen and (max-width: 1050px) {
  header {
    height: auto;
  }
  .title-box {
    position: static;
    height: 100lvh;
    font-size: 1rem;
  }
  .about {
    position: static;
    bottom: 0;
    height: auto;
    overflow: hidden;
  }
  .orangebox {
    position: static;
    padding: 100px 20px 100px 20px;
    width: 100%;
  }
  .orangebox::after {
    display: none;
  }
  .greybox {
    position: static;
    padding: 100px 20px 100px 20px;
    width: 100%;
    height: auto;
    background-image: linear-gradient(
      to right,
      var(--dark-grey),
      var(--dark-grey) 20%
    );
  }
  .title-box h1 {
    position: relative;
    transform: translateX(-7px);
    font-size: 2.2rem;
    padding: 5px 0px 5px 20px;
  }
  .title-box span {
    font-size: 2.2rem;
    padding: 3px 10px 2px 10px;
    box-shadow: -4px 4px rgb(0, 0, 0);
  }
}

/* reels */
.reels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  background-color: aqua;
  z-index: 0;
}
.one-by-one {
  aspect-ratio: 1/1;
}
.reel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: blue;
  font-family: var(--head-font);
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.reel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  filter: brightness(0.6);
  transition: all 0.5s ease-in-out;
}

.reel-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.reel-logo {
  width: 250px;
  margin-bottom: 30px;
}
.lg-logo {
  width: 350px;
}
.reel-title h2 {
  display: block;
  text-align: center;
}
.reel button {
  padding: 15px 20px;
  margin-top: 20px;
  background: var(--main-red);
  border: none;
  border-radius: 50px;
  color: white;
  font-family: var(--head-font);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.span-2 {
  grid-column: 1 / 3;
}
.reacher-img {
  z-index: -1;
  position: absolute;
  object-fit: cover;
}
.span-2-title {
  font-size: 1.75rem !important;
  text-wrap: balance;
}
.span-2-heading {
  font-size: 1.75rem !important;
  text-wrap: balance;
}
.span-2-title span {
  color: var(--main-red);
}
.span-2-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  filter: brightness(0.6);
  transition: all 0.5s ease-in-out;
}

.reel-btn-hov {
  color: black;
  background-color: white;
}

.reel:hover .reel-bg {
  scale: 1.1;
  filter: brightness(0.8);
}
.reel:hover button {
  color: black;
  background-color: white;
}
.span-2:hover .span-2-bg {
  scale: 1.1;
  filter: brightness(0.8);
}

.coming-soon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 40px 20px;
  z-index: 5;
  font-size: 1.5rem;
  text-shadow: 3px 3px var(--dark-grey);
}
.coming-soon::after {
  position: absolute;
  top: 0;
  right: -250px;
  content: "";
  width: 500px;
  height: 500px;
  transform: rotate(45deg);
  background-image: linear-gradient(
      to bottom,
      rgba(240, 83, 42, 0.95),
      rgba(246, 133, 37, 0.95) 50%
    ),
    url(../images/featured/pattern.webp);
  background-size: cover;
  box-shadow: -30px -30px 16px rgb(20, 20, 20, 0.5);
  z-index: -1;
}
@media screen and (max-width: 500px) {
  .reels {
    grid-template-columns: 1fr;
    width: 100vw;
  }
  .reel-logo {
    width: 150px;
  }
  .coming-soon {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 40px 20px;
    z-index: 5;
    font-size: 0.85rem;
    text-shadow: 2px 2px var(--dark-grey);
  }
  .span-2 {
    grid-column: 1 / 2;
    aspect-ratio: 1/1;
  }
  .reacher-img {
    position: absolute;
    z-index: 3;
    max-width: 500px;
    margin-left: 0;
  }
  .span-2-title h2 {
    font-size: 2.5rem;
    padding: 0 20px;
    line-height: 140%;
  }
  .coming-soon::after {
    position: absolute;
    top: 0;
    right: -175px;
    content: "";
    width: 350px;
    height: 350px;
    transform: rotate(45deg);
    background-image: linear-gradient(
        to bottom,
        rgba(240, 83, 42, 0.95),
        rgba(246, 133, 37, 0.95) 50%
      ),
      url(../images/featured/pattern.webp);
    background-size: cover;
    box-shadow: -30px -30px 16px rgb(20, 20, 20, 0.5);
    z-index: -1;
  }
}

/* Featured Work */
.featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  background-image: linear-gradient(
      to bottom,
      rgba(20, 20, 20, 0.8),
      rgba(20, 20, 20, 0.8)
    ),
    url(../images/background.png);
  background-size: 8px;
}
.featured-work {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 65vw;
}
.featured h2 {
  text-align: center;
  font-family: var(--head-font);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 300;
  margin-top: 40px;
}
.divider {
  width: 50%;
  max-width: 150px;
  height: 4px;
  background-color: var(--main-red);
  margin: 20px auto 60px auto;
}
.work-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.work-item {
  position: relative;
  overflow: hidden;
  color: white;
}
.work-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.work-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background-image: linear-gradient(
    to top,
    rgba(240, 83, 22, 0.5),
    rgba(240, 83, 22, 0)
  );
  transition: all 0.5s ease-in-out;
  box-sizing: border-box;
}
.work-item h3 {
  display: block;
  padding: 10px;
  font-family: var(--head-font);
  font-weight: 400;
  text-shadow: 2px 2px var(--dark-grey);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4rem;
  background-image: linear-gradient(
      to right,
      rgba(240, 83, 42, 0.95),
      rgba(246, 133, 37, 0.95)
    ),
    url(../images/featured/pattern.webp);
  background-size: cover;
  box-sizing: border-box;
}
@media screen and (max-width: 500px) {
  .featured-work {
    width: 85vw;
  }
  .work-items {
    grid-template-columns: 1fr;
  }
  .work-overlay {
    transform: translateY(0%);
  }
  .work-overlay h3 {
    font-size: 0.9rem;
  }
}

/* Accolades */
#accolades-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1; /* Behind your content */
}
.accolades {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden;
}
.accolade-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.accolades h2 {
  color: #fff;
  font-family: "Tilt Warp";
  font-size: clamp(1.5rem, 4vw, 5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3rem;
}
.accolades span {
  color: var(--main-orange);
  font-weight: bold;
}
.accolade-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem 7rem;
}
.accolade-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: var(--head-font);
}
.accolade-item a {
  color: var(--main-red);
  cursor: pointer;
}
.accolade-item h4 {
  font-size: 0.8rem;
  color: var(--main-red);
  margin-bottom: 0.3rem;
  z-index: 10;
}
.accolade-item h3 {
  font-family: "Tilt Warp";
  font-size: 2rem;
  width: 100%;
  margin-bottom: 0.2rem;
  /* max-width: 33rem; */
}
.cat {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-wrap: balance;
}
.credit {
  font-size: 0.75rem;
  color: var(--main-orange);
  text-wrap: balance;
}
@media screen and (max-width: 1550px) {
  .accolade-item h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1300px) {
  .accolade-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 3rem 4rem;
  }
  .accolade-item {
    width: 45%;
    text-align: center;
  }
}
@media screen and (max-width: 748px) {
  .accolade-item {
    width: 100%;
  }
  .accolade-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .accolade-item h4 {
    font-size: 0.8rem;
  }
  .cat {
    font-size: 0.7rem;
  }
  .credit {
    font-size: 0.6rem;
  }
}
/* Services */
.services h2 {
  text-align: center;
  text-transform: uppercase;
}
.service-items {
  display: grid;
  font-size: 0.95rem;
  letter-spacing: 0.7px;
  grid-template-columns: 1fr 1fr;
  font-family: var(--head-font);
  font-weight: 400;
  gap: 30px;
  margin: 40px 0;
  width: 100%;
}
.service-item {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-red);
}
@media screen and (max-width: 500px) {
  .service-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/*  Filmography  */
.filmographpy {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-image: linear-gradient(
    to top,
    var(--main-red),
    var(--main-orange)
  );
}
.filmographpy h2 {
  display: block;
  text-align: center;
  font-family: var(--head-font);
  text-transform: uppercase;
  color: #f0532a;
  margin-bottom: 60px;
  z-index: 10;
}
.filmography-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.filmography-item {
  position: relative;
}
.work-img a {
  aspect-ratio: 2/3;
}
.m-img {
  aspect-ratio: 2/3;
  box-shadow: 0 0 4px 4px rgb(0 0 0 / 20%);
  cursor: pointer;
  filter: saturate(0.6);
  transition: all 0.25s ease-in-out;
}
.filmography-items img:hover {
  filter: saturate(1);
  scale: 1.01;
}
.see-more {
  padding: 15px 20px;
  margin-top: 40px;
  background: black;
  border: none;
  border-radius: 50px;
  color: white;
  font-family: var(--head-font);
  text-transform: uppercase;
  margin-bottom: 80px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.see-more:hover {
  color: black;
  background-color: white;
}
.white-angle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: white;
}
.white-angle::after {
  content: "";
  position: absolute;
  left: -30%;
  bottom: -100px;
  width: 150vw;
  height: 200px;
  background: white;
  transform: rotate(-5deg);
}
@media screen and (max-width: 500px) {
  .filmography-items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* Footer */
footer {
  display: flex;
  justify-content: center;
  padding: 60px 0 160px 0;
  background-image: linear-gradient(
      to bottom,
      rgba(20, 20, 20, 0.8),
      rgba(20, 20, 20, 0.8)
    ),
    url(../images/background.png);
  background-size: 8px;
  color: white;
  font-family: var(--head-font);
}
.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  min-height: 200px;
}
.foot-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.foot-logo img {
  width: 60px;
}
.foot-logo p {
  text-transform: uppercase;
  font-size: 1.6rem;
}
.foot-menu {
  padding-left: 20px;
  border-left: solid 1px white;
}
.foot-menu li {
  list-style: none;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.foot-menu a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
.foot-menu a:hover {
  color: var(--main-red);
}
.foot-contact {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: solid 1px white;
  font-size: 0.8rem;
}
.foot-contact a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
.contact {
  font-size: 0.8rem;
  line-height: 2;
  margin-top: 20px;
}
.social {
  margin-top: auto;
}
i {
  margin-right: 10px;
  cursor: pointer;
}
i:hover {
  color: var(--main-red);
}

@media screen and (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .foot-logo {
    justify-content: space-between;
    align-items: center;
    align-items: center;
  }
  .foot-menu {
    margin-top: 80px;
    margin-bottom: 80px;
    padding-left: 0px;
    border-left: none;
  }
  .foot-menu li {
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
  }
  .foot-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-left: 0px;
    padding-top: 40px;
    /* border-top: solid 1px white; */
    border-left: none;
    font-size: 0.8rem;
  }
  .contact {
    text-align: center;
  }
  .social {
    margin-top: 30px;
  }
}
