/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;

  /* DESKTOP IMAGE */
  background: url('images/Desktop - 1.png') no-repeat center center/cover;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 15%);
}

/* CONTENT */
.content {
  position: relative;
  text-align: center;
  color: #d4af37;
}

.content h1 {
  font-size: 80px;
  letter-spacing: 2px;
}

.content p {
  margin-top: 15px;
  font-size: 20px;
  letter-spacing: 4px;
  color: #e6c76b;
}

/* 🔥 MOBILE IMAGE CHANGE */
@media (max-width: 768px) {
  .hero {
    background: url('images/mobile banner.png') no-repeat center center/cover;
  }

  .content h1 {
    font-size: 40px;
  }

  .content p {
    font-size: 16px;
  }
}