/* ============================================================
   DKB Club — Prototype A: "Sunset Coral + Dark Image Bands"
   Override stylesheet — loaded AFTER style.css
   ============================================================ */

/* ─── Warm Accent Color ────────────────────────────────────── */
:root {
  --color-warm: #e8735a;
  --color-warm-dark: #d4604a;
  --color-warm-glow: rgba(232, 115, 90, 0.15);
  --section-pad: 72px;
}

/* ─── Section Header Tighter Spacing ───────────────────────── */
.section-header {
  margin-bottom: 36px;
}

/* ─── Hero Warm-Tinted Gradient ────────────────────────────── */
.hero::before {
  background: linear-gradient(
    to bottom,
    rgba(20, 8, 2, 0.4) 0%,
    rgba(40, 15, 5, 0.15) 40%,
    rgba(10, 10, 10, 0.55) 100%
  );
}

/* ─── About Section → Dark Image Band ──────────────────────── */
.about-band {
  position: relative;
  background: var(--color-bg-dark);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.about-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.about-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: 1;
}

.about-band .container {
  position: relative;
  z-index: 2;
}

.about-band .section-header h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.about-band-tagline {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Stats Row */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 48px;
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-warm);
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* Partner logos in band — white */
.about-band .partner-logos {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.about-band .partner-logos img {
  filter: grayscale(100%) brightness(3);
  opacity: 0.4;
  height: 32px;
}

.about-band .partner-logos img:hover {
  opacity: 0.8;
  filter: grayscale(0%) brightness(1);
}

/* ─── Full-Bleed Image Dividers ────────────────────────────── */
.image-divider {
  position: relative;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-divider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
}

.image-divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 700px;
}

.image-divider-content blockquote {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-style: normal;
}

.image-divider-content cite {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}

/* ─── Coral Accents ────────────────────────────────────────── */
.testimonial-stars {
  color: var(--color-warm);
}

.best-for {
  background: var(--color-warm-glow);
  color: var(--color-warm);
}

.dest-card-body .season {
  color: var(--color-warm);
}

.faq-question:hover {
  color: var(--color-warm);
}

/* ─── WhatsApp Widget Recoloring ───────────────────────────── */
/* FAB stays green (recognizable) */
.wa-popup-header {
  background: var(--color-bg-dark);
}

.wa-send-btn {
  background: var(--color-primary);
}

.wa-send-btn:hover {
  background: var(--color-primary-dark);
}

.wa-badge {
  background: var(--color-warm);
}

/* ─── Responsive Overrides ─────────────────────────────────── */
@media (max-width: 768px) {
  .about-stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .image-divider {
    height: 250px;
  }

}

@media (max-width: 480px) {
  .about-stats {
    gap: 24px;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .image-divider {
    height: 200px;
  }

  .image-divider-content blockquote {
    font-size: 1.125rem;
  }
}
