* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

a {
  color: #3c8fa1;
}
.logo-nav {
  width: 150px;
  height: auto;
}

@media (max-width: 768px) {
  .logo-nav {
    width: 120px;
  }
}

/* Fixed nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 10000;
  align-items: center;
}

@media (max-width: 768px) {
  nav {
    padding: 1em 0;
  }
}
nav a {
  color: #fff;
  margin: 0.5rem 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #f9c74f;
}

/* Spacer to push content below fixed nav */
.nav-spacer {
  height: 90px; /* match nav height */
}

section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
  pointer-events: none;
  opacity: 0.3;
}

.project-container {
  /* background-color: #111; */
  color: #8b8b8b;
  padding: 15px;
}
@media (min-width: 900px) {
  .project-container {
    padding: 75px;
  }
}

.project-section-header {
  margin-top: 75px;
  margin-bottom: 75px;
  max-width: 500px;
}

h1,
h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  line-height: 1.5;
}

#contact {
  background: #111;
}

/* Responsive */
@media (max-width: 768px) {
  h1,
  h2 {
    font-size: 2rem;
  }

  nav {
    justify-content: center;
  }

  nav a {
    margin: 0.5rem;
    font-size: 0.8rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .nav-spacer {
    height: 150px;
  }
}

#primary-cta {
  font-size: 1.5em;
  border-radius: 8px;
  padding: 0.8em;
  border: none;
  cursor: pointer;
  background-color: #ffb300;
  text-decoration: none;
  margin: 25px auto;
  color: #000;
  box-shadow: 0 0 20px #000000;
}
#primary-cta:hover {
  background-color: #f9c74f;
  color: #000;
  box-shadow: 0 0 10px #ffe97c;
  transition: all 0.3s ease;
}
/* FILMS SECTION */
.films {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}
.film-container {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.film-thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.film-info {
  padding: 1.5rem;
}

.film-title {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.film-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.film-asset {
  width: 100%;
  height: auto;
}

@media (min-width: 1365px) {
  .films {
    flex-direction: row;
  }

  .film-container {
    width: 49%;
  }

  .film-thumbnail {
    width: 40%;
    height: auto;
  }

  .film-info {
    /* width: 60%; */
    padding: 2rem;
  }

  .film-description {
    width: 60%;
  }
}

@media (min-width: 1900px) {
  .film-container {
    width: 32.2%;
  }

  /* .film-thumbnail {
    width: 100%;
    height: auto;
  }

  .film-info {
    padding: 2rem;
  } */
}
/* BIO SECTION */

.bio-container {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  max-width: 800px;
  margin: 2rem auto;
  background: #ddd;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bio-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.bio-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.5rem 0;
  color: #000;
}

.bio-title {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.bio-body {
  /* display: none; */
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.bio-body-active {
  display: block;
  max-height: 900px;
  overflow: visible;
}
.bio-toggle {
  color: #3c8fa1;
  /* color: #fff; */
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.bio-description {
  font-size: 1rem;
  line-height: 1.6;
  /* text-align: center; */
  padding: 0 1rem;
  color: #444;
}

@media (min-width: 600px) {
  .bio-container {
    flex-direction: row;
    text-align: left;
    padding: 2rem;
  }

  .bio-photo {
    margin: 0 2rem 0 0;
  }

  .bio-text {
    flex: 1;
  }
}

/* Contact Form Styles */
#contact {
  background: #474747;
  color: #fff;
}

#contact p {
  max-width: 100%;
}

form {
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  background-color: #353535;
  text-align: left;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #3c8fa1;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

form button:hover {
  background-color: #49b1c7;
}

.contact-container {
  width: 100%;
  text-align: left;
}

@media (min-width: 768px) {
  .contact-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
    /* width: 100%; */
    gap: 20px;
    /* text-align: left; */
    max-width: 900px;
  }
  #contact-info-wrapper {
    width: 30%;
  }
  #contact-info-wrapper p {
    font-size: 1em;
  }
  #contact-form-wrapper {
    width: 70%;
  }
}

#services {
  text-align: left;
}

footer {
  text-align: center;
  padding: 75px;
  background: #111;
}

footer nav {
  position: relative;
  background: none;
  font-size: 1.2em;
}

footer p,
footer ul {
  color: #8b8b8b;
  font-size: 0.8em;
}

footer .logo {
  width: 100%;
  max-width: 100%;
}
/* VIDEO PLAYER */
/* #videoPlayer {
    position: fixed;
    position: fixed;
    top: 0;
    z-index: 20000;
    width: 100%;
    background: #000;
    height: 100vh;
    transform: translate(100vw, 0);
    border: 5px red;
    transition: transform 0.4s;
    display: flex;
    flex-direction: column;
  }
  /* transform: translate(0, 0);*/
/* .videoPlayerActive {
    height: 100vh;
    overflow: hidden;
  }  */

.hidden {
  display: none;
}
