/*
-----------------------------
OUR PROJECTS PAGE STYLES
-----------------------------
*/

.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 5%, rgba(0,0,0,0) 25%); */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 10;
}

.video-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 2;
    pointer-events: none;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.over-video-section {
    position: relative;
    z-index: 10;
    height: 100%;
    text-align: center;
}

.nav-section {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 10px;
}

.navbar-wrap {
    text-align: right;
}

.secondary-menu-navbar {
    display: inline-flex;
    flex-wrap: wrap;
}

.secondary-menu-link-navbar {
    padding: 2px 15px;
}

.secondary-menu-link-navbar a {
    color: var(--first-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.secondary-menu-link-navbar a:hover {
    font-weight: 800;
}

.primary-menu-navbar {
    display: inline-flex;
    flex-wrap: wrap;
}

.primary-menu-link-navbar {
    padding: 5px 15px;
}

.primary-menu-link-navbar a {
    font-size: 1.6rem;
    color: var(--third-color);
    font-weight: 500;
}

.primary-menu-link-navbar a:hover {
    color: var(--first-color);
}

.on-projects a{
    color: var(--first-color);
    font-weight: 900;
}

.hero-section-wrap {
    margin-top: 12vh;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-section-text {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.hero-section-text h1{
    color: var(--first-color);
    margin-bottom: 18px;
    line-height: 1.1;
}

.hero-section-text p{
    color: #ffffff;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.5;
}

.hero-section-buttons .btn-black {
    margin-right: 16px;
}

@media (max-width: 1023px) {
  .video-hero {
    height: 80vh;
  }
  
  .hero-section-wrap {
    margin-top: 7vh;
    min-height: 50vh;
    justify-content: center;
    padding-top: 4vh;
  }
  .hero-section-text {
    max-width: 90vw;
  }
  .hero-section-text h1 {
    font-size: 2.1rem;
  }
  .hero-section-text p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .video-hero {
    height: 70vh;
  }
  
  .hero-section-wrap {
    margin-top: 4vh;
    min-height: 40vh;
    padding-top: 2vh;
  }
  .hero-section-text {
    max-width: 95vw;
  }
  .hero-section-text h1 {
    font-size: 3rem;
  }
  .hero-section-text p {
    font-size: var(--font-size-s);
  }

  .logo-header-navbar img {
    width: 150px !important;
  }
}



header .honeycomb-section {
  display: none;
}

/* .logo-header-navbar img {
    width: 180px !important;
    max-width: 40vw;
    height: auto;
    display: block;
} */

/* Our Work Section */
.our-work {
  padding: 12vh 0 8vh 0;
  min-height: 100vh;
  background-color: #000;
  position: relative;
  /* background: radial-gradient(
      circle at top right,
      rgba(255, 165, 0, 0.4) 0%,
      rgba(255, 165, 0, 0.3) 8%,
      rgba(255, 165, 0, 0.2) 15%,
      rgba(255, 165, 0, 0.15) 22%,
      rgba(255, 165, 0, 0.1) 28%,
      rgba(255, 165, 0, 0.05) 35%,
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 165, 0, 0.4) 0%,
      rgba(255, 165, 0, 0.3) 8%,
      rgba(255, 165, 0, 0.2) 15%,
      rgba(255, 165, 0, 0.15) 22%,
      rgba(255, 165, 0, 0.1) 28%,
      rgba(255, 165, 0, 0.05) 35%,
      transparent 40%
    ),
    #000; */
}

.our-work-title {
  text-align: center;
  color: var(--first-color);
  font-weight: 900;
  margin-bottom: 8vh;
  position: relative;
  /* z-index: 10; */
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3%;
  row-gap: 5vh;
  align-items: stretch;
  position: relative;
  /* z-index: 1; */
  padding-bottom: 4vh;
}

.project-card {
  display: grid;
  grid-template-columns: 35% 1fr;
  column-gap: 5%;
  align-items: center;
  border: 1px solid rgba(144, 144, 144, 0.12);
  border-radius: 16px;
  padding: 2vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 5;
  min-height: 300px;
  height: 100%;
}

/* Hex Image Styling */
.project-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Project Content */
.project-content h4 {
  color: var(--first-color);
  font-weight: 900;
  margin-bottom: 1rem;
}

.project-content p {
  color: var(--third-color);
  margin-bottom: 4rem;
  line-height: 1.6;
}

.project-content .btn-yellow {
    padding: 5px 20px;
    font-size: var(--font-size-xs);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: 1fr;
    row-gap: 6vh;
  }
  
  .project-card {
    grid-template-columns: 32% 1fr;
  }
}

@media (max-width: 700px) {
  .our-work {
    padding: 8vh 0;
  }
  
  .our-work-title {
    margin-bottom: 6vh;
    font-size: 3rem;
  }

  
  .projects-grid {
    row-gap: 5vh;
  }
  
  .project-content p {
    font-size: var(--font-size-s);
  }

  .project-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4vh;
  }
  
  .project-media {
    max-width: 70%;
    margin: 0 auto 2vh auto;
  }
}
