/* HERO WITH TEXTURE IMAGE */
.offers-hero {
  padding: 0 0px; /* breathing space left & right */
  margin-top: 40px; /* small space below header */
}

.offers-hero .inner-hero {
  height: 50vh;
  background-image: url("https://ik.imagekit.io/elt7ikgh7/textured1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* HERO TEXT */
.offers-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: #2a2a2a;
  margin-bottom: 25px;
}

.offers-hero p {
  font-family: 'Inter', sans-serif;
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #5c5c5c;
}

/* OFFERS SECTION */

.offers-list {
  width: 80%;
  max-width: 1100px;
  margin: 80px auto;
}

.offer-item {
  display: grid;
  grid-template-columns: 340px 1fr; /* smaller image column */
  gap: 110px; /* more elegant spacing */
  padding: 110px 0;
  border-bottom: 1px solid #dcd7cb;
}

/* Smaller image */
.offer-image img {
  width: 100%;
  height: 440px;  /* reduced from 520 */
  object-fit: cover;
}

/* Typography refinement */
.offer-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; /* slightly smaller */
  margin-bottom: 22px;
  color: #1a1a1a;
}

.offer-content p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 28px;
}

.offer-valid {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a07c52;
  margin-bottom: 25px;
}

.offer-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #c8c2b6;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.offer-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .offer-item {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .offer-image img {
    height: 380px;
  }
}
/* DIVIDER BELOW HERO */
.offers-divider {
  width: 100%;
  padding: 180px 0 0;
}

.offers-divider-inner {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #cfc9bb;
}
/* ================= MOBILE REFINEMENT ================= */
@media (max-width: 768px) {

  /* ================= MOBILE SPACING REFINED ================= */

.offers-list {
  width: 92%;
  margin: -20px auto;   /* reduced from 70–80px */
}

.offer-item {
  display: block;
  padding: 45px 0;   /* reduced from 70px */
}

.offer-image {
  width: 94%;
  margin: 0 auto 20px;   /* reduced bottom spacing */
}

.offer-content h3 {
  margin-bottom: 12px;   /* tighter title spacing */
}

.offer-content p {
  margin-bottom: 16px;   /* tighter paragraph spacing */
}

.offer-valid {
  margin-top: 10px;
  margin-bottom: 14px;
}

  .offer-btn {
    display: inline-block;
    padding: 14px 24px;
    font-size: 12px;
  }

  .offer-item {
    border-bottom: 1px solid #dcd7cb;
  }
}
/* ================= HERO MOBILE ================= */
@media (max-width: 768px) {

  .offers-hero {
    padding: 0 20px; /* reduce side padding */
    margin-top: 20px;
  }

  .offers-hero .inner-hero {
    height: 50vh; /* not full 100vh on mobile */
    padding: 0 20px;
    text-align: center;
  }

  .offers-hero h1 {
    font-size: 32px; /* reduced from 60px */
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .offers-hero p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 90%;
  }

}
/* Reduce space between hero and divider */
.offers-divider {
  padding-top: 40px;  /* was 40px */
}
/* FILTER SECTION */
.offers-filter {
  width: 85%;
  max-width: 1200px;
  margin: 60px auto 0;
}

.offers-filter-inner {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c5c5c;
}

.offers-filter select {
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #1a1a1a;
  outline: none;
  cursor: pointer;
}
.hidden-offer {
  display: none !important;
}
/* Remove extra top space from first offer */
.offers-list .offer-item:first-child {
  padding-top: 0px;  /* instead of 110px */
}
/* ================= EMPTY STATE ================= */

/* ================= EMPTY STATE ================= */

.offers-empty {
  display: none;
  text-align: center;
  padding: 120px 0;
}

.offers-empty h3 {
  font-size: 32px;   /* same size as offer titles */
  margin-bottom: 20px;
  color: #1a1a1a;
}

.offers-empty p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  color: #5c5c5c;
}
.offers-list {
  margin: -30px auto 10px;  /* tighter */
}
.offer-item {
  padding: 70px 0;   /* elegant but not huge */
}
