.hero {
  height: 50vh;
  background: url('../../assets/img/1.jpg') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 40px;
}

.hero h1 {
  font-family: 'Playfair Display',serif;
  font-size: 3em;
}

.btn:hover {
  transform: translateY(-3px);
  background: #a88b55;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

