body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #0f0f0f;
  color: #fff;
}

/* HERO */

.offers-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('images/offers-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin: 0;
}

.hero-content p {
  margin-top: 15px;
  color: #d4af37;
  letter-spacing: 2px;
}

/* OFFERS SECTION */

.offers-section {
  display: flex;
  justify-content: center;
  padding: 100px 20px;
}

.offers-card {
  max-width: 800px;
  text-align: center;
  background: #111;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.offers-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.gold-divider {
  width: 70px;
  height: 2px;
  background: #d4af37;
  margin: 20px auto 30px;
}

.offers-card p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* BUTTONS */

.offers-actions {
  margin-top: 40px;
}

.primary-btn,
.secondary-btn {
  display: inline-block;
  padding: 14px 36px;
  margin: 10px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.primary-btn {
  background: #d4af37;
  color: #111;
}

.primary-btn:hover {
  opacity: 0.9;
}

.secondary-btn {
  border: 1px solid #d4af37;
  color: #d4af37;
}

.secondary-btn:hover {
  background: #d4af37;
  color: #111;
}

/* COMING SOON */

.coming-soon {
  text-align: center;
  padding: 80px 20px;
  background: #111;
}

.coming-soon h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
}

.coming-soon p {
  color: #aaa;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .offers-card {
    padding: 40px 25px;
  }
}