/* ===== GK Hero Video Block ===== */

.gk-hero-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  overflow: hidden;
  background: #000;
}

/* Video */
.gk-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

/* White Mask */
.gk-hero-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--nectar-white);
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

/* Center Content Container */
.gk-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Center Image */
.gk-hero-center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: min(300px, 25vw);
  max-height: min(300px, 25vh);
  width: auto;
  height: auto;
  display: block;
  transition: opacity 0.3s ease-in-out;
}

/* Page Title - Using hero-text-style from global CSS */
body .container-wrap .gk-hero-title {
  position: relative;
  opacity: 0;
  margin: 0;
  padding: 0 32px;
  color: var(--nectar-white);
  /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
  transition: opacity 0.3s ease-in-out;
  text-align: center;
  white-space: nowrap;
}

/* Description Text */
.gk-hero-description-wrapper {
  opacity: 0;
  margin: -3% 0 0 10%;
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 0 32px;
  max-width: min(640px, 40vw);
  color: var(--nectar-white);
  transition: opacity 0.3s ease-in-out;
  text-align: left;
  pointer-events: auto;

  .gk-hero-description {
    flex: 3;
    * {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 1rem;
    }
    p {
      font-weight: 400;
    }
  }

  /* Hero Button */
  .gk-hero-button {
    color: var(--nectar-white);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
    text-transform: none;
    letter-spacing: normal;

  }

}

/* Signature Image */
.gk-hero-signature {
  position: absolute;
  top: 35%;
  left: 35%;
  max-width: min(350px, 20vw);
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.gk-hero-signature img {
  max-width: min(400px, 30vw);
  width: auto;
  height: auto;
  display: block;
}

/* Skip Button - Consistent with global link/button styles */
.gk-hero-skip {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 5;
  background: var(--nectar-extra-color-1);
  color: var(--nectar-accent-color);
  border: none;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.gk-hero-skip:hover {
  background: var(--nectar-extra-color-2);
  color: var(--nectar-accent-color);
  transform: translateY(-2px);
  box-shadow: 4px 0px 28px 0px rgba(0, 0, 0, 0.5);
}

.gk-hero-skip:active {
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
/* Tablet Responsive */
@media (max-width: 1199px) and (min-width: 1000px) {
  .gk-hero-video {
    height: 100dvh;
  }
  .gk-hero-skip {
    bottom: min(64px, 5vh);
  }
}
/* Mobile Responsive */
@media (max-width: 999px) {
  .gk-hero-content {
    gap: 16px;
  }
  
  .gk-hero-center-image {
    max-width: min(200px, 35vw);
    max-height: min(200px, 30vh);
  }
  
  body .container-wrap .gk-hero-title {
    font-size: min(80px, 15vw);
    padding: 0 20px;
  }
  
  .gk-hero-description-wrapper {
    padding: 0 24px;
    margin: 0;
    max-width: 69vw;
    flex-direction: column;
    gap: 12px;
  }
  
  .gk-hero-description {
    * {
    }
  }
  
  .gk-hero-button {
    padding: 12px 24px;
  }
  
  .gk-hero-signature {
    top: 38%;
    img {
      max-width: min(250px, 40vw);
    }
  }
  
  .gk-hero-skip {
    bottom: min(20px, 5vh);
    right: 20px;
    padding: 10px 20px;
  }
}
