/* Hero Section Styles  */
.hero-section {
  position: relative;
  height: 100%;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background-image: url('../images/home.webp'); */
  background-size: cover;
  background-position: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f5c3fde;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 80px;
}

.hero-title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  color: #E1D19D;
  margin-bottom: 20px;
  text-align: center;
}

.hero-text {
  font-size: 25px;
  margin-top: 10px;
  text-align: center;
  color: #F5F8F8;
  width: 70%;
  line-height: 1.5;
  font-family: Tenor sans, sans-serif;
  margin: 0 auto;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.hero-btn {
  width: 150px;
}

/* Menu button default style on site load */
.menu-btn {
  background: #e1d19d;
  color: #205c40;
  border: 2px solid #e1d19d;
}

/* When hovering another button area, menu becomes normal green */
.hero-buttons:hover .menu-btn {
  background: #205c40;
  color: #e1d19d;
  border: 2px solid #205c40;
}

/* But when hovering the menu button itself, keep hover color */
.hero-buttons .menu-btn:hover {
  background: #e1d19d;
  color: #205c40;
  border: 2px solid #e1d19d;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-text {
    font-size: 18px;
    width: 90%;
  }

  .hero-btn {
    width: 130px;
    font-size: 16px;
    padding: 10px 20px;
  }

}

/* 2nd section:  Signature Dishes Section ----------------------*/
.signature-dishes-section {
  background: #ffffff;
  padding: 60px 0 70px;
}

.signature-dishes-container {
  width: min(1400px, 92%);
  margin: 0 auto;
}

.signature-dishes-heading {
  text-align: center;
  margin-bottom: 38px;
}

.signature-dishes-title {
  margin: 0;
  color: #1A4A33;
  font-weight: 700;
  line-height: 1.1;
}

.signature-dishes-divider {
  width: 80px;
  height: 2px;
  background: rgba(26, 74, 51, 0.25);
  margin: 16px auto 0;
}

.signature-dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.signature-dishes-card {
  background: #205c40;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.signature-dishes-card-more {}

.signature-dishes-card-top {
  background: #205c40;
  color: #e1d19d;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  padding: 16px 12px;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signature-dishes-card-image {
  height: 200px;
  overflow: hidden;
}

.signature-dishes-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.signature-dishes-card-content {
  padding: 20px 10px;
  display: grid;
  place-content: center;
  place-items: center;
  align-items: center;
  gap: 10px;
}

.card-content-more {
  min-height: 70px;
}

.signature-dishes-card-text {
  margin: 0;
  color: #F5F8F8;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  min-height: 60px;
  display: grid;
  align-items: center;
  font-family: Tenor sans, sans-serif;
}


.signature-dishes-card-image-more {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.signature-dishes-more-overlay {
  position: absolute;
  inset: 0;
  background: rgb(16 28 20 / 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0d7a0;
  font-size: 55px;
  font-weight: 500;
  text-transform: lowercase;
}

@media (max-width: 1199px) {
  .signature-dishes-title {
    font-size: 46px;
  }

  .signature-dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .signature-dishes-section {
    padding: 50px 0 60px;
  }

  .signature-dishes-title {
    font-size: 40px;
  }

  .signature-dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signature-dishes-card-image {
    height: 190px;
  }
}

@media (max-width: 767px) {
  .signature-dishes-section {
    padding: 40px 0 50px;
  }

  .signature-dishes-heading {
    margin-bottom: 28px;
  }

  .signature-dishes-title {
    font-size: 32px;
  }

  .signature-dishes-divider {
    width: 70px;
    margin-top: 12px;
  }

  .signature-dishes-grid {
    display: block;
  }

  .signature-dishes-card {
    margin: 0 9px;
  }

  .signature-dishes-card-top {
    font-size: 17px;
    min-height: auto;
    padding: 14px 10px;
  }

  .signature-dishes-card-image {
    height: 210px;
  }

  .signature-dishes-card-image-more {
    height: 250px;
  }

  /* .signature-dishes-card-text {
    font-size: 14px;
    min-height: auto;
    margin-bottom: 16px;
  } */

  .signature-dishes-more-overlay {
    font-size: 50px;
  }
}


/* 3rd Section : Special Offer  ----------------------*/

.special-offer {
  background: #205c40;
  padding: 180px 20px;
  text-align: center;
}

.special-offer__container {
  max-width: 900px;
  margin: 0 auto;
}

.special-offer__title {
  color: #f0d7a0;
}

.special-offer__text {
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  color: #F5F8F8;
  font-family: Tenor sans, sans-serif;
}

.special-offer__buttons {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* base button */
.offer-green-btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 10px;
  background: #205c40;
  color: #e1d19d;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: "Raleway", sans-serif;
}

/* default (no shadow) */
.special-offer__btn {
  box-shadow: 2px 4px 0 rgba(0, 0, 0, 0.25);
}

/* active state */
.special-offer__btn--active {
  box-shadow: 2px 8px 0 rgba(0, 0, 0, 0.2);
}

/* hover effect */
.special-offer__btn:hover {
  box-shadow: 2px 8px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* press effect (optional - premium feel) */
.special-offer__btn:active {
  transform: translateY(2px);
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.2);
}

/* Tablet */
@media (max-width: 991px) {
  .special-offer {
    padding: 120px 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .special-offer {
    padding: 90px 16px;
  }

  .special-offer__buttons {
    gap: 16px;
  }

}

/* 4th section : Locations Section */
.locations-section {
    background: #ffffff;
    padding: 60px 0;
}

.locations-section__container {
    width: min(1200px, 94%);
    margin: 0 auto;
}

.locations-section__heading {
    margin-bottom: 40px;
}

.locations-section__title {
    color: #1A4A33;
    text-align: left;
}

.locations-section__subtitle {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  color: #1A4A33;
  font-family: "Raleway", sans-serif;
}

/* Desktop: show all 5 cards */
.locations-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.locations-slide {
    min-width: 0;
}

.location-card {
    background: #1f5c3f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    height: 100%;
}

.location-card__top,
.location-card__bottom {
    background: #205c40;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

.location-card__top {
    padding: 16px 8px;
    font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  min-height: 40px;
  color: #e1d19d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
}

.location-card__bottom {
    padding: 13px 8px;
     font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #f5f8f8;
  font-family: Tenor sans, sans-serif;
}

.location-card__image {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.location-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tablet and Mobile Slider */
@media (max-width: 991px) {
    .locations-slider {
        display: block;
    }

    .locations-slide {
        padding: 0 10px;
    }

    .location-card__image {
        height: 220px;
    }

    .locations-section__title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .locations-section {
        padding: 45px 0;
    }

    .location-card__image {
        height: 210px;
    }

    .locations-slide {
        padding: 0 8px;
    }

    .locations-section__title {
        font-size: 26px;
    }
}

/* Slick dots */
.locations-slider .slick-dots {
    bottom: -35px;
}

.locations-slider .slick-dots li button:before {
    color: #1d603d;
    font-size: 10px;
}

.locations-slider .slick-dots li.slick-active button:before {
    color: #1d603d;
}
