

/* Uses var from style.css */
/*Header Video Background*/

.video-background {
  position: relative;
  overflow:hidden;
  width: fit-content;
  height: fit-content;
  align-content: center;
}
              
.video-clip {
  position: relative; /* Keep it part of the flow so it defines the parent's size */
  width: 100vw; /* Set your desired width */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Scale video properly */
  max-height: 85vh;
  pointer-events: none; /* Disable interactions */
}

.video-clipLive {
  position: relative; /* Keep it part of the flow so it defines the parent's size */
  width: 100vw; /* Set your desired width */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Scale video properly */
  max-height: 85vh;
  pointer-events: none; /* Disable interactions */
}
.video-header {
  position: absolute; /* Position content over the video */
  top: 65%; /* Center vertically */
  left: 50%; /* Center horizontally */
  background: linear-gradient(
    rgba(0, 0, 0, 0.01) 0%, 
    rgba(0, 0, 0, 0.7) 75%, 
    rgba(0, 0, 0, 0.01) 100%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 85vh;
  padding: 0 3vw 0 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--textContent);
  font-weight: lighter;
  line-height: var(--lineHeight);
  color: white; /* Ensure text is visible */
  z-index: 1; /* Stay above the video */
}

.video-header h1{
  font-size: var(--textHeader);
  line-height: var(--lineHeightHeader);
}


/* Video Section */
.containerVideo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100vw;
  height: fit-content;
  max-height: 85vh;
}

/* Video section */
.sectionVideo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: fit-content;
}

/* Video tag settings */
/* Video Wrapper to Position Elements */
.videoWrapper {
  position: relative;
  display: inline-block;
}



#promoVideo {
  background-color: var(--black);
  width: 100vw;
  max-height: 85vh;
}

#promoVideoLive {
  background-color: var(--black);
  width: 100vw;
  max-height: 85vh;
}


/* Live Video Section */
.containerLiveVideo {
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100vw;
  height: fit-content;
  Padding: 18vw;
  font-size: var(--textHeader);
  color: var(--white);
}

.sectionLiveVideo {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: ridge;
  border-color: #ccc;
  margin: 3vw;
  padding: 0;
  width: auto;
  height: fit-content;
}

.sectionLiveVideo iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  border: none;
}