   @font-face {
  font-family: 'Lato-Regular';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato-Regular';
}

/* OFFER STRIP */
.offer-strip {
  width: 100%;
  background: #f5f5f5;
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
}

/* LOGO */
.logo-section {
  width: 100%;
  text-align: center;
  padding: 2vh 0;
}

.logo {
  width: 18vw;
  max-width: 200px;
}

/* MAIN SECTION */
.main-section {
    background: #faf4ee;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vh 5vw;
  gap: 4vw;
  flex-wrap: wrap;
}

/* LEFT TEXT */
.text-box {
  flex: 1 1 40%;
  max-width: 45%;
}

.rating {
  display: flex;
  align-items: center;
  gap: 3px;          /* spacing between stars */
  font-size: 0.8rem;
  margin-bottom: -1rem;
}

.star-icon {
  width: 114px;       /* adjust size */
  height: 114px;
  object-fit: contain;
}

.rating-text {
  margin-left: 6px;  /* space between stars & text */
}

.main-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2em;
}

.sub-text {
      font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-btn {
  padding: 1rem 1.5rem;
  background: black;
  color: white;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 0.4rem;
  margin: 6px;
}

/* RIGHT IMAGE */
.image-box {
  flex: 1 1 40%;
  max-width: 45%;
  display: flex;
  justify-content: center;
}

.promo-img {
  width: 45vw;
  max-width: 650px;
}

.reviews-section {
  width: 100%;
  padding: 4vh 5%;
  background: #ffffff;
}

.review-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 5vh;
  font-weight: 700;
}

.review-wrapper {
  display: flex;
  justify-content: center;
  gap: 2%;
  flex-wrap: wrap;
}

/* CARD */
.review-card {
  width: 30%;
  background: #f7f1ea;
  padding: 2rem;
  border-radius: 1.5rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-bottom {
  margin-top: auto;
  font-size: 0.75rem;
  font-style: italic;
}

.review-name {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.verified {
  color: #555;
}

.stars {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.review-short,
.review-main {
  font-size: 0.8rem;
}

.review-main {
  line-height: 1.4em;
  font-weight: 600;
}

.slider-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* BUTTON STYLE */
.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (min-width: 769px) {
  .slider-buttons {
    display: none;
  }

}
/* SECTION */
.benefit-section {
  width: 100%;
  background: #f7f1ea;
  padding: 8vh 5%;
  text-align: center;
}

/* HEADING */
.benefit-title {
  font-size: 2rem;
  margin-bottom: 5vh;
  font-weight: 700;
}

/* WRAPPER */
.benefit-wrapper {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARD */
.benefit-card {
  width: 23%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  border-radius: 1.2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* DARK GRADIENT OVERLAY */
.benefit-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%);
  border-radius: 1.2rem;
}

/* TEXT */
.benefit-text {
  position: absolute;
  bottom: 2rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.6);
}

.tribe-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 40px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.tribe-text {
  flex: 1 1 450px;
  max-width: 550px;
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tribe-text h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.quote {
  font-style: italic;
  font-size: 0.8rem;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: center;
}

.manifesto {
    font-size: 0.8rem;
  font-weight: 100;
  margin-bottom: 20px;
}

.story-button {
  display: inline-block;
  padding: 12px 30px;
  background: black;
  color: white;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 4px;
}

.tribe-image {
  flex: 1 1 450px;
  max-width: 550px;
}

.tribe-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

 footer {
      background: #000;
      color: #fff;
      text-align: center;
      padding: 15px 0;
      font-size: 18px;
    }

    footer a {
      color: #fff;
      text-decoration: none;
    }

@media (max-width: 900px) {
  
    .benefit-card {
    width: 45%;
    height: 35vh;
  }

  .benefit-title {
    font-size: 2rem;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .main-section {
    flex-direction: column;
    text-align: center;
    padding: 1vh 5vw;
  }
  
  .rating {
    justify-content: center;
        margin-bottom: -1rem;
  }

  .text-box, .image-box {
    max-width: 100%;
  }

  .main-heading {
    font-size: 2.1rem;
  }

  .promo-img {
    width: 70vw;
  }

  .logo {
    width: 50vw;
  }

  /* ---------------------------
     FIXED MOBILE REVIEW SLIDER
     --------------------------- */
  .review-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;

    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;

    justify-content: flex-start !important;
  }

  .review-card {
    width: 85vw;
    min-width: 85vw;
    scroll-snap-align: start;
    flex-shrink: 0;
    margin: 0; /* ensures no extra stray spacing */
    min-height: 37vh;
  }
  
  .review-bottom {
    margin-top: 6vh;
}

  .benefit-section {
    padding: 1vh 5%;
  }
  
  .tribe-section {
    flex-direction: column;
    text-align: center;
    padding: 20px 20px;
  }

  .story-button {
    margin-left: auto;
    margin-right: auto;
  }
  
  .tribe-image {
    max-height: 37vh;
  }

  .tribe-text {
    flex: 1 1 350px;
  }
}



@media (max-width: 600px) {
  
    .benefit-card {
    width: 100%;
    height: 30vh;
    margin-bottom: 15px;
  }

  .benefit-text {
    font-size: 1.2rem;
  }
}
