/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HERO WRAPPER */
.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* SWIPER */
.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}

/* SLIDE BACKGROUND */
.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* SOFT OVERLAY FOR READABILITY */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.15) 70%,
    rgba(255,255,255,0) 100%
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-left: 7%;
  padding-top: 18vh;
  color: #4b2c2c;
}

/* HEADLINE */
.hero-content h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  font-weight: 700;
}

/* DESCRIPTION */
.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #6b4a4a;
  margin-bottom: 18px;
}

/* SUB TEXT */
.hero-sub {
  font-size: 16px;
  color: #7a5a5a;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #e7866a;
  color: #fff;
}

.btn.primary:hover {
  background-color: #d67155;
}

.btn.secondary {
  background-color: #5a3a3a;
  color: #fff;
}

.btn.secondary:hover {
  background-color: #472c2c;
}

/* NAVIGATION ARROWS */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  opacity: 0.6;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 14vh;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}
