/* ============================================================
   deals.css — styles specific to deals.html
   ============================================================ */

/* Active nav link */
.nav-active {
  color: var(--teal) !important;
  font-weight: 600 !important;
}

/* ── Page hero ──────────────────────────────────────────────── */
.deals-hero {
  padding: 80px 0 80px;
  background: linear-gradient(160deg, var(--teal-light) 0%, var(--pink-light) 60%, var(--white) 100%);
  text-align: center;
}
.deals-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.deals-hero-sub {
  font-size: 18px;
  color: var(--mid);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.72;
}
.ig-main-cta {
  font-size: 16px;
  padding: 16px 36px;
  gap: 10px;
}

/* ── Instagram callout banner ───────────────────────────────── */
.ig-callout {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
}
.ig-callout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ig-callout-text h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(24px, 3.5vw, 38px);
}
.ig-callout-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}
.ig-callout-text strong { color: var(--pink); }
.ig-callout-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.ig-callout-btns .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.ig-callout-btns .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Phone mockup */
.ig-callout-visual {
  display: flex;
  justify-content: center;
}
.ig-phone-frame {
  width: 220px;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 0 0 6px #2a2a2a, 0 24px 48px rgba(0,0,0,0.5);
}
.ig-phone-header {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}
.ig-phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}
.ig-phone-screen {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  padding: 14px;
}
.ig-profile-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ig-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  flex-shrink: 0;
}
.ig-handle {
  font-size: 10px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.ig-tagline {
  font-size: 9px;
  color: var(--mid);
}
.ig-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.ig-post {
  aspect-ratio: 1;
  border-radius: 4px;
}
.ig-post--teal  { background: linear-gradient(135deg, var(--teal), #5aabb3); }
.ig-post--pink  { background: linear-gradient(135deg, var(--pink), #f0c5c6); }
.ig-post--beige { background: linear-gradient(135deg, var(--beige), #ccc5bb); }

/* ── Featured deals ─────────────────────────────────────────── */
.featured-deals {
  padding: 80px 0;
  background: var(--beige);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.deal-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.deal-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 1;
}
.deal-badge--pink { background: var(--pink); color: var(--dark); }
.deal-badge--dark { background: var(--dark); }

.deal-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.deal-img--1 {
  background-image: url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=600&q=80&auto=format&fit=crop');
}
.deal-img--2 {
  background-image: url('https://images.unsplash.com/photo-1512100356356-de1b84283e18?w=600&q=80&auto=format&fit=crop');
}
.deal-img--3 {
  background-image: url('https://images.unsplash.com/photo-1514282401047-d79a71a590e8?w=600&q=80&auto=format&fit=crop');
}

.deal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.deal-dest {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.deal-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.deal-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.deal-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.deal-enquire {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition);
}
.deal-enquire:hover { opacity: 0.7; }

/* More deals row */
.deals-more {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.deals-more p {
  font-size: 15px;
  color: var(--mid);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 820px) {
  .ig-callout-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .ig-callout-btns { justify-content: center; }
  .ig-callout-visual { order: -1; }
}

@media (max-width: 560px) {
  .deals-hero { padding: 120px 0 60px; }
  .deal-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
}
