@font-face {
  font-family: 'AbrilFatface';
  src: url('../fonts/AbrilFatface-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NunitoSans';
  src: url('../fonts/NunitoSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'AbrilFatface';
  color: #fff;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
  height: 97vh;
  width: 100vw;
  background: url('../../assets/images/230829-Gage-Exterior-Building-Sign-001-scaled.webp') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* overlay layer */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 0.5 = 50% darkness */
  z-index: 1;
}

/* make sure text appears above overlay */
.hero .overlay {
        margin-top: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0);
  padding: 2rem;
  border-radius: 1rem;
}

.heading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading-line {
  width: 160px;
  height: 4px;
  background-color: #AD842D; /* gold color */
  margin-bottom: 8px;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2rem;
      letter-spacing: 3px;
}

.btn {
    font-family: 'NunitoSans';
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  border: 0.2rem solid #d4af37;
  transition: all 0.3s ease;
}

.btn:hover {
 border: 0.2rem solid #fff;
}

/* ------------------------------
   FOOTER
------------------------------ */
footer {
  text-align: center;
  padding: 1rem 0;
  background: #000;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

footer a:hover {
  text-decoration: underline;
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------ */
@media (max-width: 768px) {
  .hero {
    background: url('../../assets/images/230829-Gage-Exterior-Building-Sign-001-scaled.webp') no-repeat center center/cover;
  }
  
  .hero .overlay {
    margin-top: 125px;
  }

  h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }
}
