/* Container that fills the screen */
.pressbanner {
  overflow: hidden;
  height: 100vh; /* Full viewport height */
  font-family: 'Courier Prime', monospace; /* UNIT VII brand font */
  position: relative;
  background-color: #000; /* Fallback color */
  /* Flexbox logic for centering */
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  text-align: center;
}

/* 1. THE BACKGROUND (Example using a CSS Image) */
.pressbanner #video-bg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

/* 2. THE TEXT CONTENT (Centered) */
.pressbanner-content {
  position: absolute;
  z-index: 10; /* Sits above the background/crowd/logo */
  width: 80%; /* Responsive width */
  margin: 0 auto;
}

.pressbanner-title {
  color: white;
  font-size: 64px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.pressbanner-text {
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}

/* 3. THE BOTTOM SCROLL-DOWN LINK */
.btn-down {
  position: absolute;
  bottom: 40px; /* Anchored to the bottom */
  left: 50%;
  transform: translateX(-50%); /* Keeps it centered */
  z-index: 20; /* Sits on top of the black fade */
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-down img {
  width: 50px; /* Adjust size of your down arrow logo */
  height: auto;
}

/* Simple hover animation */
.btn-down:hover {
  transform: translate(-50%, 10px); /* Moves down slightly on hover */
}
@media screen and (max-width: 768px) {
  .pressbanner-title { font-size: 48px; }
}
@media screen and (max-width: 576px) {
  .pressbanner-title { font-size: 36px; 
    line-height: 1.2;
    letter-spacing: 0 !important;
  }
}