.banner-video {
  position: relative;
  height: 100vh; /* full screen */
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Video should always cover the section */
.banner-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* responsive scaling */
  z-index: 0;
}

/* Overlay for dark effect */
.banner-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* semi-transparent black */
  z-index: 1;
}

/* Text content */
.banner-video .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 15px;
  font-family: 'FontAwesome';
  letter-spacing: 5px;
  font-size: 40px !important;
}

.banner-video .content h1 {
  font-size: clamp(2rem, 6vw, 4rem); /* responsive font size */
  font-weight: bold;
  margin-bottom: 1rem;
}

.banner-video .content p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  font-size: 13px;
}

/* For devices with no hover and coarse pointers (mobile) */
@media (pointer: coarse) and (hover: none) {
  .banner-video {
    background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') center center / cover no-repeat;
  }
  .banner-video video {
    display: none;
  }
}

  .page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Change color to match your theme */
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  .page-transition.hide {
    opacity: 0;
    pointer-events: none;
  }
  