html {
  --background: #181818;
  --text: #e0e2e5;
  --secondary-text: #00c200;
  --secondary-background: #1c2126;
  background-color: #181818;
  font-family: "Quicksand", sans-serif;
  color: var(--text);
  text-align: center;
}

body {
  margin: 0;
}

a {
  color: white;
  text-decoration: none;
}

button {
  z-index: 2;
  position: relative;
}

header {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
}

header img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  animation: carousel 20s infinite;
  opacity: 0;
  z-index: -1;
  object-fit: cover;
  object-position: center;
}

@keyframes carousel {
  0% {
    opacity: 1;
    z-index: -1;
  }
  25% {
    opacity: 1;
    z-index: 0;
  }
  30% {
    opacity: 0;
    z-index: 0;
  }
}

#lenny {
  animation-delay: 0s;
}

#two-tribes {
  animation-delay: 5s;
}

#rhl {
  animation-delay: 10s;
}

#itwgin {
  animation-delay: 15s;
}

h1 {
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  margin: 0;
  width: 100%;
  text-align: center;
  color: var(--text);
  line-height: 1.1em;
}

#grey {
  font-size: 40vw;
  line-height: 40vw;
}

#castle {
  font-size: 32vw;
}

#productions {
  font-size: 17vw;
}

#slogan {
  font-size: 5.2vw;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding: 10px 0px;
  background-color: #15364b61;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  width: 100%;
}

section {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50%;
}

#menu-button {
  background-image: url(./assets/menu.svg);
  background-size: cover;
  height: 50px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  position: fixed;
  right: 0px;
  top: 0px;
  width: 50px;
  cursor: pointer;
}

#menu {
  width: 100%;
  display: flex;
  z-index: 1;
  position: fixed;
  top: 0px;
  background-color: #15364b61;
  font-family: "Quicksand";
  flex-direction: column;
  color: white;
  padding: 37px 0px 0px 0px;
  align-items: center;
  backdrop-filter: blur(2px);
}

#menu.invisible {
  display: none;
}

h2 {
  font-family: "Quicksand", sans-serif;
  color: white;
  background: none;
  font-weight: normal;
}

h3 {
  margin-right: 10px;
  font-weight: normal;
  padding: 0px;
}

#menu h3 {
  font-weight: bold;
  font-size: 25px;
}

#menu .menu-item {
  margin: 20px 10px 10px 0px;
  font-weight: bold;
  font-size: 25px;
  padding: 0px;
}

#logo {
  width: 100%;
}

#logo-link {
  width: 50%;
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 2;
}

footer {
  margin: 20px 5% 0px;
  border-top: 1px solid var(--text);
  padding: 5px 0px;
}

footer p {
  padding: 0px;
  font-size: 12px;
}

/* about page */

p {
  margin: 0px;
  padding: 30px;
  font-family: "Quicksand", sans-serif;
  color: #e0e2e5;
  background-color: #181818;
  text-align: center;
}

.bold {
  font-weight: bold;
}

.about {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

#awards {
  background-color: #e0e2e5;
  color: #181818;
  font-family: "Quicksand", sans-serif;
  padding: 30px;
}

#awards h3 {
  margin: 0px;
  font-size: 30px;
  text-align: center;
}

#awards h4 {
  margin: 0px;
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: center;
}

ul {
  margin: 0px;
  list-style-type: square;
}

#call-to-action {
  border: 1px solid #e0e2e5;
  padding: 10px;
}

/* Contact Page */

#contact {
  background-color: #181818;
  min-height: 100%;
}

#contact h2 {
  text-align: center;
}

#contact input,
#contact button {
  display: block;
}

#submit {
  background: none;
  border: 1px solid #e0e2e5;
  padding: 10px;
  font-size: 16px;
  font-family: "Quicksand", sans-serif;
  color: #e0e2e5;
  cursor: pointer;
  width: fit-content;
}

form {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

input,
textarea {
  width: 80%;
  margin-bottom: 20px;
  padding: 10px;
  font-family: "Quicksand", sans-serif;
}

#contact footer {
  position: absolute;
  bottom: 0px;
  width: 90%;
}

/* Projects Page */

#projects h2 {
  text-align: center;
}

#projects h4 {
  text-align: center;
  color: var(--text);
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
}

.project-container {
  margin: 40px 5%;
  padding: 10px;
  border: solid 1px var(--text);
  display: flex;
  flex-direction: column;
}

.project-container img {
  aspect-ratio: 1;
  object-fit: cover;
}

.project-container p {
  margin-bottom: 0px;
  padding: 0px;
}

.project-title {
  font-size: 30px;
  font-weight: bold;
  margin: 0px;
}

.project-container h3 {
  margin: 0px;
  margin-top: 10px;
}

/* Project Page  */

#show-title {
  margin-top: 40px;
  color: #e0e2e5;
  margin-bottom: 20px;
}

#logline {
  color: #e0e2e5;
  font-family: "Quicksand", sans-serif;
  text-align: center;
  margin: 40px;
}

.copy {
  font-style: italic;
}

.review-container {
  margin: 100px 5% 40px 5%;
  border: 1px solid var(--text);
  padding-top: 40px;
  text-align: left;
}

.review-container:before {
  content: "“";
  color: var(--text);
  background-color: var(--background);
  font-size: 200px;
  font-family: serif;
  position: absolute;
  margin-top: -115px;
  margin-left: 30px;
  padding: -0px 20px;
  height: 100px;
}

.stars {
  font-size: 40px;
  padding: 0px;
  margin: 0% 10%;
  text-align: left;
}

.review {
  text-align: left;
  padding: 0px;
  padding-bottom: 10px;
  margin: 0% 10%;
}

.divider {
  background-color: var(--text);
  height: 1px;
  display: block;
  margin-left: 10%;
  width: 30%;
}

.reviewer {
  text-align: left;
  margin-left: 10%;
  padding: 0px 0px 10px;
  font-size: 14px;
}

iframe {
  aspect-ratio: 16 / 9;
  margin: 20px 0px;
}

#project-page h2 {
  text-align: center;
  margin: 60px 0px;
}

.cast-container {
  border: solid 1px var(--text);
  padding: 20px;
  margin: 20px 5%;
  display: flex;
  flex-direction: column;
}

#project-page h3 {
  margin: 10px 5%;
}

#project-page .cast-container h3 {
  margin-bottom: 0px;
}

.role {
  font-style: italic;
}
