/* Specific styles for the Blog page */

/* Ensure the video section behaves like the homepage */
.sectionOne {
  width: 100%;
  color: #fff;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background-color: #000;
}

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

.sectionOne .intro {
  text-align: center;
  z-index: 1;
}

.sectionOne .intro h1 {
  font-family: "CottorwayPro-Bold", sans-serif;
  font-size: 98px;
  letter-spacing: 2px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .sectionOne .intro h1 {
    font-size: 8vw;
  }
}

@media (max-width: 768px) {
  .sectionOne .intro h1 {
    font-size: 10vw;
  }
}
