.hero-slider {
  width: 100%;
  height: 100vh;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
  position: relative;
}

.slider-img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Text */
.hero-text {
  bottom: 30%;
  z-index: 2;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 700;
  color: #d4c236;
}

.hero-text p {
  font-size: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

.discover-section {
  background: #f3f3f3;
}

/* Title */
.discover-title {
  font-family: "Georgia", serif;
  font-size: 36px;
  font-weight: 400;
  color: #b8a632;
}

/* Card */
.discover-card {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

/* Image */
.discover-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Content Box */
.discover-content {
  background: #fff;
  width: 85%;
  margin: -60px auto 0;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.discover-content h5 {
  font-family: "Georgia", serif;
  font-size: 18px;
  margin-bottom: 20px;
}

/* Button */
.discover-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.discover-btn:hover {
  background: #b8a632;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .discover-title {
    font-size: 26px;
  }

  .discover-img {
    height: 240px;
  }

  .discover-content {
    margin-top: -40px;
  }
}
