body {
  font-family: 'Poppins', sans-serif;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* slider */
.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-swiper img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* content */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: white;
}

/* title */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 64px);
  /* responsive */
  font-weight: 900;
  line-height: 1.1;
  background: #FAEC9B;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* tagline */
.hero-tagline {
  margin-top: 15px;
  font-style: italic;
  color: #fff;
  font-size: clamp(14px, 2.5vw, 18px);
}

/* buttons */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  padding: 14px 35px;
  border-radius: 40px;
  border: none;
  background: #FAEC9B;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}
