/* ===============================
   OFFERS PAGE STYLES
   =============================== */

/* ---------- HERO ---------- */
.offers-hero {
  background:
    linear-gradient(rgba(255, 242, 241, 0.85), rgba(255, 242, 241, 0.85)),
   url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?q=80&w=1200&auto=format&fit=crop") center/cover no-repeat;
  /* 👆 you can replace the Unsplash URL with your spa image */
  text-align: center;
  padding: 160px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.offers-hero h1 {
  font-size: 3rem;
  color: var(--text, #222);
  margin-bottom: 1rem;
}

.offers-hero .subtitle {
  font-size: 1.25rem;
  color: var(--muted, #444);
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- OFFERS GRID ---------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--line, #f0e8e7);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.offer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.offer-info {
  padding: 1.5rem;
  text-align: left;
}

.offer-tag {
  display: inline-block;
  background: var(--primary, #ff6b6b);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.offer-info h3 {
  font-size: 1.3rem;
  color: var(--text, #222);
  margin-bottom: 0.5rem;
}

.offer-info p {
  color: var(--muted, #555);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ---------- CTA ---------- */
.offers-cta {
  background: #fff2f1;
  padding: 80px 0;
  text-align: center;
}

.offers-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.offers-cta h2 {
  font-size: 2rem;
  color: var(--text, #222);
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .offers-hero {
    padding: 120px 20px;
    min-height: 60vh;
  }

  .offers-hero h1 {
    font-size: 2.2rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offers-cta h2 {
    font-size: 1.6rem;
  }
}
