/* Container that fills the screen */
.conbanner {
  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) */
.conbanner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  
  /* Replace this with your actual background image file */
  background: url('../../assets/contactbanner.webp') no-repeat center center;
  background-size: cover; /* Fill the area without stretching */

  z-index: 1; /* Sits behind everything else */
}

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

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

.conbanner-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 */
}