@font-face {
  font-family: "Bookman";
  src: url("./FONTS/bookman-old-style/Bookman\ old\ style.ttf")
    format("truetype");
}

@font-face {
  font-family: "DMSans";
  src: url("./FONTS/DMSans-VariableFont_opsz\,wght.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: #000;
  color: #fff;
  /* cursor: none; */
}

html,
body {
  height: 100%;
  overflow: auto; /* keep scroll functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and old Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
#loader {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

#loader video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arrow-container {
  width: 60px;
  height: 260px;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 91%;
  transform: translate(-50%, -50%);

  svg {
    width: 40px;
    height: 100%;
    z-index: 999999999999999999999999999999999999999999999999999999999;
  }

  svg .shaft {
    transition: d 0.5s ease;
  }

  svg .head {
    transition: transform 0.5s ease;
    transform-origin: center top;
  }
}

/* On hover: extend the line slightly and move head a bit */
.arrow-container:hover svg .shaft {
  d: path("M12 2V130"); /* shorter extension */
}

.arrow-container:hover svg .head {
  transform: translateY(30px); /* move arrowhead down in sync */
}

.arrow-container2 {
  width: 60px;
  height: 260px;
  cursor: pointer;
  position: absolute;
  left: 50.5%;
  top: 100vh;
  transform: translate(-50%, -65%);
  scale: 1.15;
  transform-origin: top center;
  z-index: 999999999999999999999999999999999999999999999999999999999;

  svg {
    width: 40px;
    height: 100%;
  }

  svg .shaft {
    transition: d 0.5s ease;
  }

  svg .head {
    transition: transform 0.5s ease;
    transform-origin: center top;
  }
}

/* On hover: extend the line slightly and move head a bit */
.arrow-container2:hover svg .shaft {
  d: path("M12 2V130"); /* shorter extension */
}

.arrow-container2:hover svg .head {
  transform: translateY(30px); /* move arrowhead down in sync */
}

#textSvg {
  position: relative;
  left: 50%;
  top: 96%;
  transform: translate(-50%, -50%);
}

/* Make overlay responsive relative to video frame */
/* #overlayImage {
  position: absolute;
  
  width: 20.83%;  
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
} */

/* main */
.main {
  position: relative;
  /* opacity: 0; */
}

/* #home {
  width: 100%;
  height: 100vh;
  padding: 0.1px;
  overflow: hidden;
  position: relative;
}



#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

#home {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Fullscreen slider container */
#home {
  width: 100%;
  height: 100vh;
  position: relative;
  /* overflow-x: hidden; */
}

.video-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#overlayText {
  position: absolute;
  top: 60%;
  left: 5%;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

#overlayText h1 {
  font-family: "Bookman";
  font-size: 4vw;
  font-weight: 500;
}

#overlayText p {
  font-family: "DMSans";
  font-size: 2vw;
  font-weight: 300;
}

#watchHere {
  position: absolute;
  bottom: 5%;
  right: 5%;
  color: #967f44;
  font-family: "Bookman";
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: color 0.4s ease;
}

#watchHere svg {
  width: 60px;
  height: 60px;
  transition: transform 0.4s ease;
}

#watchHere circle {
  transition: stroke 0.4s ease, filter 0.4s ease;
}

#watchHere .play-triangle {
  transition: fill 0.4s ease;
}

/* Hover Effects */
#watchHere:hover {
  color: #bca86c;
  /* cursor: pointer; */
}

#watchHere:hover .play-triangle {
  fill: #998657;
}

#watchHere:hover circle {
  stroke: #bca86c;
  filter: drop-shadow(0 0 6px rgba(153, 134, 87, 0.6));
}

#watchHere:hover svg {
  transform: scale(1.08);
}
#watchHere:hover .play-triangle {
  fill: #998657;
  stroke: #998657;
}

#progressCircle {
  transition: stroke-dashoffset 0.2s linear;
}

#nav {
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 5vw;
  background-color: #00000067;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav #links {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  cursor: pointer;
  /* z-index: 100000000000000; */
}

/* Common underline effect for h3 and img */
#nav #links h3,
#nav #links img {
  position: relative;
  display: inline-block;
  font-weight: 400;
}

#nav #links h3::after,
#nav #links img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* adjust distance for underline */
  width: 0%;
  height: 2px;
  background: white;
  transition: width 0.3s ease-in-out;
}

#nav #links h3:hover::after,
#nav #links img:hover::after {
  width: 100%;
}

#nav #links img {
  height: 5.3vw;
  width: auto;
}

.glass-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
  border-radius: 20px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(65, 64, 64, 0.2);
  border: 1px solid white;
}

.glass-btn img {
  width: 18px;
  height: 18px;
}

.glass-btn:hover {
  /* background: rgba(255, 255, 255, 0.25); */
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.glass-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

#links {
  align-items: center;
  height: 5vw;
  display: flex;
  position: relative;

  /* gap: 5vw; */
  #left {
    display: flex;
    width: 40%;
    gap: 2.5vw;
    justify-content: flex-end;
    align-items: center;
    /* background-color: pink; */
  }
  #center {
    width: 0%;
    /* display: none; */
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -134%;
    /* top: 10%; */
    left: 21.5%;
    img {
      /* transform: translate(-20%); */
      width: 60vw;
      /* width: 200px;  */
      height: auto;
      /* top: -1%; */
      transform: translate(0, -0.25%);
      opacity: 0;
      cursor: pointer;
    }
  }
  #right {
    display: flex;
    width: 40%;
    gap: 2.5vw;
    align-items: center;
    /* background-color: pink; */
  }
}
#nav2 {
  position: fixed;
  z-index: 2;
  width: 100%;
  padding: 2vw;
  height: 5vw;
  display: none;

  .hamburger {
    width: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    z-index: 1001; /* above background */
    position: relative;
    margin: 10px;
  }
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #998657;
    border-radius: 3px;
    transition: 0.3s;
  }

  /* Transform to X when active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* Panel for background + animation */
  .menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #000000b3;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    z-index: 1000;
    padding-top: 50px; /* space for hamburger */
  }

  /* Show animation */
  .menu-panel.show {
    max-height: 500px; /* enough for all links */
    opacity: 1;
  }

  /* Nav links inside */
  .nav-links2 {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .nav-links2 li a {
    text-decoration: none;
    color: #998657;
    font-size: 18px;
    font-weight: 600;
  }
}

#homeMarquee {
  width: 100vw;
  height: 25vh;
  position: relative;
  margin-top: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-content {
  display: flex;
  gap: 4vw;
  animation: scroll-marquee 65s linear infinite;
  list-style: none;
  padding: 0;
  margin: 0;

  white-space: nowrap;
}

.marquee-content li {
  font-size: 9.5vw;
  color: white;
  font-family: "luminence";
  font-weight: 400;
}

@keyframes scroll-marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-48%);
  }
}

#marquee-bottom {
  padding-top: 1vw;
  width: 92%;
  margin-left: 4%;
  height: 10%;
  position: relative;
  margin-top: 1vw;
  border-top: 1px solid white;
  display: flex;
  align-items: start;
  justify-content: space-between;
  div {
    width: 20vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 1.2vw;
    transform: translate(20%, 0);
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
      "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    font-weight: 400;
  }
  h3 {
    color: #fff;
    font-size: 1.3vw;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
      "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    font-weight: 400;
  }
}

/* page 1 */

.page1 {
  width: 100%;
  height: 100vh;
  padding: 0.1px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.box1 {
  padding: 6vw 6vw 4vw 6vw;
  height: 20vh;
  width: 100%;
  color: #998657;

  div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    font-family: "Bookman";
    font-weight: 600;
    .line {
      height: 1px;
      background-color: #998657;
      width: 80%;
    }
  }
}

.bottom1 {
  width: 100%;
  height: 80vh;
  display: flex;
  /* background-color: gray; */
  .left {
    width: 60%;
    height: 100%;
    padding-left: 10vw;
    font-size: 1.5vw;
    text-align: justify;
    font-family: "DMSans";

    h1 {
      text-align: center;
      font-size: 3vw;
      color: #998657;
      font-weight: 500;
      font-family: "Bookman";
      /* font-style: italic; */
      #normalText {
        font-family: none;
        font-style: italic;
        font-size: 3.2vw;
      }
    }
  }
  .right {
    width: 45%;
    height: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: right;
    /* background-color: pink; */

    h2 {
      text-align: center;
      margin-top: 1vw;
      font-family: "DMSans";
      color: #fff;
      text-decoration: none;
    }
  }
}

.btndiv {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -7vw;
}

.learn-btn {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  /* cursor: none; */
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(0px);
  margin-top: 3vw;
}

.learn-btn:hover {
  background: rgba(255, 255, 255, 0.1); /* light water/glass effect */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

/* page2  */

.page2 {
  width: 100%;
  height: 100vh;
  padding: 0.1px;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  p {
    color: white;
    text-align: center;
    margin-top: 2.9vw;
    font-size: 1.4vw;
    font-family: "Bookman";
  }

  /* .services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5vw;
    margin-top: 8vw;
  }

  .box {
    background: #111;
    border-radius: 50px;
    text-align: center;
    transition: all 0.4s ease;
    height: 260px;
    border: 4px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .box .expanded-content {
    display: none;
    color: #fff;
    padding: 20px;
  }
  .box .default-content p {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
  }

  
  .services:hover .box:not(:hover) {
    opacity: 0;
    pointer-events: none;
  }

  
  .services .box:hover {
    grid-column: 1 / -1;
    opacity: 1;
    pointer-events: auto;
    height: 400px;
    background: #1a1a1a;
  }

  
  .services .box:hover .default-content {
    display: none;
  }
  .services .box:hover .expanded-content {
    display: block;
  } */

  .container {
    display: flex;
    width: 100%;
    /* max-width: 1200px; */
    height: 400px;
    gap: 2vw;
    transition: all 0.3s ease;

    .box {
      flex: 1;
      background: #000000;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
      height: 300px;
      border: 2px solid;
      font-family: "DMSans";
    }

    .box:nth-child(2) {
      background: #000;
    }
    .box:nth-child(3) {
      background: #000;
    }
    .box:nth-child(4) {
      background: #000;
    }

    /* default label (Box 1, Box 2, etc.) */
    .box-label {
      transition: opacity 0.3s ease;
      z-index: 1;
      display: flex;
      flex-direction: column;
      img {
        width: 200px;
        height: auto;
      }
      p {
        margin-top: -3vw;
      }
    }

    /* hidden content by default */
    .box-content {
      position: absolute;
      inset: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.4s ease;
      text-align: center;
      background-color: #000000cc;

      .fullBox {
        width: 100%;
        height: 100%;
        /* background-color: #000; */
        display: flex;

        #left {
          width: 30%;
          height: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          img {
            width: 200px;
          }
          p {
            margin-top: -3vw;
            color: #998657;
            font-weight: 600;
          }
        }
        #right {
          width: 70%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          /* margin-left: -5vw; */
          p {
            font-size: 1.3vw;
            color: #998657;
            /* font-weight: 600; */
          }
        }
      }
    }

    .box.active {
      flex: 10;
      border-radius: 16px;
    }

    .box.active .box-label {
      opacity: 0; /* hide only the label */
    }

    .box.active .box-content {
      opacity: 1; /* show content */
    }
  }
  .container.collapsed .box:not(.active) {
    flex: 0;
    opacity: 0;
    pointer-events: none;
  }
}

#filmmaking,
#immersive,
#workshops,
#journalistic {
  width: 100%;
  height: 100%;
  display: flex;
  /* background-color: #1a1a1a; */
  /* border-radius: 20px; */

  .left {
    width: 25%;
    height: 100%;
    /* background-color: gray; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    p {
      font-size: 2vw;
      font-weight: 500;
      margin-top: -3vw;
      text-align: center;
    }

    img {
      width: 240px;
      height: auto;
    }
  }
  .right {
    width: 70%;
    height: 100%;
    padding: 2vw;
    padding-right: 3vw;
    font-size: 2.7vw;
    text-align: center;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
  }
}
.page3 {
  width: 100%;
  height: 100vh;
  padding: 0.1px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: -8vw;

  .box1 {
    padding: 6vw 6vw 4vw 6vw;
    height: 20vh;
    width: 100%;
    color: #998657;
    div {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2vw;
      .line {
        height: 1px;
        background-color: #998657;
        width: 80%;
      }
    }
  }

  .text {
    padding-left: 8vw;
    margin-top: 3vw;

    p {
      font-size: 1.3vw;
      font-family: "DMSans";
    }
    h2 {
      font-size: 2.1vw;
      margin-top: 0.5vw;
      color: #998657;
      text-decoration: underline;
      font-family: "DMSans";
      transition: text-shadow 0.3s ease, transform 0.3s ease;
    }

    h2:hover {
      text-shadow: 0 0 1px #998657, 0 0 2px #635737;
    }
  }
}

#logoMarquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 5vw;
}

.clients-logos {
  display: flex;
  align-items: center;
  gap: 60px; /* space between logos */
  animation: scroll-marquee 40s linear infinite;
}

.clients-logos img,
.circle-logo {
  max-height: 120px;
  flex-shrink: 0;
}

/* Smooth infinite scroll */
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-350%);
  }
}

.page5 {
  margin-top: 3vw;
  width: 100%;
  height: 100vh;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 10%;
  gap: 50px;
}

/* Left side */
.contact-text {
  flex: 1;
}

.contact-text h2 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ccc;
  text-align: justify;
  font-family: "DMSans";
}

.contact-text p em {
  color: #998657; /* gold text */
  font-style: normal;
  font-weight: bold;
}

.contact-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 14px 27px;
  border-radius: 50px;
  font-size: 1.1vw;
  /* font-weight: bold; */
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 1vw;
  /* cursor: none; */
}

.contact-btn:hover {
  background: #998657;
  color: #000;
  cursor: pointer;
}

/* Right side (form) */
.contact-form {
  flex: 1;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  background: #2a2a2a;
  color: #fff;
  font-size: 1rem;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  /* cursor: none; */
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #998657;
  cursor: pointer;
}

/* #playImg{
  opacity: 0;
} */

.prev,
.next {
  opacity: 0;
}

.container {
  .box {
    border: 4px solid transparent;
    border-image: linear-gradient(to right, #fff, #ccc) 1;
    padding: 16px;
  }
}

.footer {
  width: 100%;
  height: 5vh;
  /* background-color: gray; */
  display: flex;
  align-items: center;
  justify-content: center;
  p {
    font-family: "DMSans";
    color: gray;
  }
}
