/* Video Hero Styles - Using vh- prefix to avoid conflicts */

/* Make sure the page takes up full height */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Video Hero Section */
.vh-section {
  position: relative;
  min-height: 100dvh; /* Dynamic viewport height, excludes browser UI */
  min-height: 100vh; /* Fallback for older browsers */
  min-height: -webkit-fill-available; /* iOS Safari fallback */
  min-height: calc(var(--vh, 1vh) * 100); /* JavaScript-calculated height */
  width: 100%;
  overflow: hidden;
}

/* Video Background */
.vh-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.vh-mobile{
display: none;
}
/* Overlay */
.vh-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Links Container */
.vh-links-wrapper {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  padding: 0 16px;
  box-sizing: border-box;
  z-index: 3;
}

/* Links Wrapper */
.vh-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Individual Link */
.vh-link {
  font-family: Commissioner, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  align-items: center;
  text-shadow: 2px 2px 4px var(--color-blue);
}

/* Tablet */
@media (max-width: 1440px) {
  .vh-links-wrapper {
    max-width: 90.27vw;
  }
  .vh-link {
    font-size: 22px;
  }
}
.vh-disabled:hover{
  color: var(--color-white) !important;
}
/* Mobile */
@media (max-width: 1024px) {
  .vh-links-wrapper {
    bottom: 30px;
    max-width: 359px;
  }
  .vh-links {
    flex-direction: column;
    gap: 8px;
  }
  .vh-mobile{
    display: block;
    }
    .vh-desktop{
      display: none;
      }
  .vh-link {
    font-size: 20px;
    width: 100%;
    height: 48px;
    padding: 0;
    justify-content: space-between;
    border-radius: 4px;
  }
  .vh-arrow {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.vh-link:hover {
  color: var(--secondary-color);
}
.vh-disabled:hover{
  color: var(--text-main);
}
/* Arrow Icon */
.vh-arrow {
  display: none;
  margin-left: 8px;
  stroke: currentColor;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure header is above video */
#header-container {
  position: relative;
  z-index: 10;
}