/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= GLOBAL FONTS ================= */
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #000;
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Funnel Sans", sans-serif;
  font-weight: 500;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  padding: 12vh 5vw 2vh;
  background-color: #001B14;

  background-image: 
    url('../assets/images/logo.png'),
    url('../assets/images/texture.png');

  background-repeat: 
    no-repeat,
    no-repeat;

  background-position: 
    center,
    center;

  background-size: 
    auto,
    cover;

  background-blend-mode: 
    normal,
    screen;

  overflow: hidden;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180%;
  background-image: url('../assets/images/hero-overlay.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.1s linear;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  transform: translateY(0);
}

.hero-content {
  position: relative;
  z-index: 1;
}



/* ================= NAVBAR ================= */
.custom-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 15vh;
  display: flex;
  align-items: center;
  z-index: 999;
  transition: top 0.3s ease-in-out, background-color 0.3s ease;
  transform: translateY(0);
}

.custom-nav.hidden {
  transform: translateY(-100%);
}

.custom-nav.scrolled {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}


.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 6px; 
  margin: 30px 0px 0px 30px;
  cursor: pointer;
}

.menu-text {
  font-size: 0.85rem;
  color: #CCC;
  font-family: "Funnel Sans", sans-serif;
  letter-spacing: 1px;
  user-select: none;
}

.menu-text:hover, .custom-hamburger:hover { 
  color: #FFF;
  height: 15px;
}

/* Hamburger Icon */
.custom-hamburger {
  cursor: pointer;
  width: 32px;
  height: 14px;
}

#hamburgerIcon rect {
  transition: transform 0.4s ease, opacity 0.3s ease;
  transform-origin: center;
}

.custom-hamburger.active #line1 {
  transform: rotate(45deg) translate(4px, 4px);
}

.custom-hamburger.active #line2 {
  transform: rotate(-45deg) translate(4px, -4px);
  width: 32px;
}

/* MENU TEXT */
.menu-text {
  font-size: 0.85rem;
  color: #CCC;
  font-family: "Funnel Sans", sans-serif;
  letter-spacing: 1px;
}

/* ================= SLIDE MENU ================= */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 30%;
  /* max-width: 300px; */
  min-width: 300px;
  height: 100vh;
  /* background-color: rgba(0, 0, 0, 0.4); */
  /* margin-top: 12vh; */
  background-color: #00130E;
  padding: 20vh 30px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 998;
  transition: left 0.4s ease;
  opacity: 0.95;
}

.fullscreen-menu.active {
  left: 0;
}

/* ================= MENU ITEMS ================= */
.menu-items {
  list-style: none;
  padding: 0;
  width: 100%;
  margin-left: 16px;
  margin-bottom: 0px;
}

.menu-items li {
  margin-bottom: 0.25rem;
}

.menu-items a {
  font-family: "Funnel Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  letter-spacing: normal;
  font-size: 4em;
  text-transform: none;
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
  /* padding: 0.1em 0; */
  transition: all 0.3s ease;
}

/* .menu-items a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
} */

.menu-items a:hover {
  color: #ddd;
  letter-spacing: 0.01em;
}

.menu-items a:hover::after {
  width: 40%;
}


/* ================= CLOSE ICON ================= */
.close-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 2.5rem;
  color: #EEE;
  cursor: pointer;
  z-index: 1000;
}

/* ================= FEATURED SECTION ================= */

.featured-section {
  padding: 12vh 5vw;
  background-color: #eee;
  overflow-x: hidden;
}

.film-container {
  display: flex;
  flex-direction: column;
  gap: 10vh;
}

.section-title {
  font-family: "Funnel Sans", serif;
  font-size: 5rem;
  font-weight: 600;
  color: #00130E;
  margin-bottom: 0.8rem;
}

.film {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5vw;
  flex-wrap: wrap;
  position: relative;
}

.film-image {
  max-width: 100%;
  width: 682px;
  height: auto;
  border: 8px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  background: #fff;
  transition: all 1s ease-in-out;
  opacity: 0;
  transform: translateY(50px);
}

.film-description {
  flex: 1;
  max-width: 500px;
  color: #00130E;
  opacity: 0;
  line-height: 1.6;
  letter-spacing: 2;
  text-align: left;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

.film-title {
  font-family: "Funnel Sans", sans-serif;
  font-size: 2rem;
  color: #00130E;
  margin-bottom: 0.8rem;
}

.film-tagline {
  font-family: "Funnel Sans", sans-serif;
  font-size: 1rem;
  color: #00130E;
  margin-bottom: 0.8rem;
}

/* Animation classes when visible */
.show .film-image,
.show .film-description {
  opacity: 1;
  transform: translateY(180);
}

/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 12vh 5vw;
  background-color: #e2e2e2;
  overflow-x: hidden;
}

.about-sub-title {
  color: #00130E;
  font-size: large;
  padding: 1vh 0 5vh;
}

.about-desc {
  color: #00130E;
  font-size: medium;
}

/* ================= FOUNDER'S WORDS SECTION ================= */

.founders-words-section {
  padding: 12vh 5vw;
  background-color: #eee;
  overflow-x: hidden;
}

.founders-words-title, .contact-title {
  font-family: "Funnel Sans", serif;
  font-size: 5rem;
  font-weight: 600;
  color: #00130E;
}

.founder-image {
  max-width: 100%;
  width: 300px;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  margin-top: 20px;
}

.founder-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #00130E;
}


/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 12vh 5vw;
  background-color: #e2e2e2;
  overflow-x: hidden;
}

.contact-sub-title {
  font-size: large;
}

.contact-form {
  min-width: 300px;
  max-width: 500px;
}

.form-label{
  color: #01231F;
}

.form-control{
  background-color: #f5f5f5!important;
}

.btn-dark {
  background-color: #01231F !important;
  color: #ccc;
  font-weight: 500;
  transition: all 0.3s ease;
}

/*.btn-dark:hover {*/
/*  background-color: #01231F !important;*/
/*  color: #eee !important;*/
/*}*/


.mail-to{
  color: #00130E;
}

.mail-to a::after {
  color: #01231F;
}

.mail-to:hover {
  color: #01231F;
  font-style: italic;
}




/* ================= FOOTER SECTION ================= */

.footer-section {
  padding: 12vh 5vw 2vh;
  background-color: #001B14;
  background-image: url('../assets/images/footer-overlay.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; 
  background-blend-mode: overlay;
  overflow-x: hidden;
  text-align: center;
  position: relative;
}


.footer-logo {
  width: 10vw;
  max-width: 140px;
  min-width: 120px;
  padding: 2vh 0;
  display: block;
  margin: 0 auto;
}

.copyrights {
  color: #aaa;
  font-size: 0.7rem;
  padding: 2vh 0;
}

@media screen and (max-width: 768px) {
  .hero {
    background-size: 50%, cover;
    background-position: center, center; 
    padding-top: 20vh;
  }
}
