/* ============================================
   BANNER.CSS - Hero Banner Section
   ============================================ */

/* ===== Banner Container ===== */
.banner {
  position: relative;
  min-height: 100vh;
  background-image: url('../img/Construction 2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.banner .content {
  position: absolute;
  width: var(--width);
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  display: grid;
  grid-template-rows: 10vh 40vh 20vh auto;
  gap: 2em;
  z-index: 2;
}

.banner .content .item:nth-child(1) {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

.banner .content .item {
  text-align: center;
}

/* ===== Banner Title ===== */
.banner .title {
  text-align: center;
  font-size: 5em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Allenia", sans-serif;
}

.banner .title p {
  margin: 0;
  padding: 0;
}

/* ===== CTA Buttons ===== */
.cta-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
