/* ==========================================================================
   ALL STARS ENTERTAINMENT — product/service page theme
   Dark luxury + gold (matches the homepage redesign). Poppins + Inter.
   Re-skins the existing product-page markup (nav / post-hero / post-content /
   post-cta / footer) — content & SEO unchanged.
   ========================================================================== */
:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8941E;
  --gold-grad: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  --bg-dark: #0B0B0D;
  --bg-card: #1A1820;
  --surface: #141318;
  --text-primary: #F5F2EC;
  --text-secondary: rgba(245,242,236,.72);
  --text-muted: rgba(245,242,236,.5);
  --border-subtle: rgba(240,208,96,.14);
  --radius: 16px;
  --radius-pill: 9999px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: var(--gold); color: #0B0B0D; }
img { display: block; }
a { text-decoration: none; }

/* Navigation — dark glass sticky bar */
nav {
  background: rgba(11,11,13,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 14px clamp(1.25rem, 5vw, 2.5rem);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
}
.nav-logo img { height: 44px; width: auto; object-fit: contain; flex: none; }
.nav-links { display: flex; list-style: none; gap: clamp(1rem, 2vw, 1.9rem); align-items: center; }
.nav-links a { color: var(--text-primary); font-family: var(--font-display); font-weight: 500; font-size: .88rem; transition: color .25s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--gold-light); }
.book-now-btn {
  background: var(--gold-grad); color: #0B0B0D !important;
  padding: .6rem 1.25rem; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 600; font-size: .84rem;
  box-shadow: 0 8px 22px -10px rgba(212,175,55,.6);
  transition: transform .25s ease, box-shadow .25s ease;
}
.book-now-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(212,175,55,.7); }
.menu-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.post-hero {
  padding: clamp(4rem, 12vh, 7rem) 1.25rem clamp(2.5rem, 6vh, 4rem);
  text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(212,175,55,.12) 0%, transparent 60%),
    linear-gradient(180deg, #07070a 0%, var(--bg-dark) 100%);
}
.post-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -.02em;
  line-height: 1.08; margin-bottom: 1.1rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.post-meta {
  display: inline-flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  color: var(--text-muted); font-family: var(--font-display); font-size: .8rem;
  letter-spacing: .04em;
}
.post-meta span {
  display: inline-flex; align-items: center; gap: .35rem; margin: 0;
  background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.28);
  color: var(--gold-light); padding: .35rem .9rem; border-radius: var(--radius-pill);
  text-transform: uppercase; font-weight: 600; font-size: .72rem; letter-spacing: .1em;
}

/* Content */
.post-content { max-width: 820px; margin: clamp(2.5rem, 6vh, 4rem) auto; padding: 0 clamp(1.25rem, 5vw, 2.5rem); color: var(--text-secondary); }
.post-content h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.02em;
  margin-top: 2.8rem; margin-bottom: 1.1rem; color: var(--text-primary);
}
.post-content h2 .accent, .post-content h2:first-of-type {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.post-content h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-light); margin-top: 1.8rem; margin-bottom: .8rem; font-weight: 600; }
.post-content p { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.85; margin-bottom: 1.2rem; }
.post-content ul, .post-content ol { list-style: none; margin: 0 0 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
.post-content li { position: relative; padding-left: 1.7rem; color: var(--text-secondary); line-height: 1.7; }
.post-content li::before { content: "✦"; position: absolute; left: 0; top: .1rem; color: var(--gold); font-size: .85rem; }
.post-content li strong { color: var(--text-primary); }
.post-content a { color: var(--gold); font-weight: 600; transition: color .25s ease; }
.post-content a:hover { color: var(--gold-light); }

/* CTA card */
.post-cta {
  max-width: 820px; margin: clamp(3rem, 7vh, 5rem) auto; padding: clamp(2rem, 4vw, 2.8rem);
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 1.5rem; text-align: center;
  box-shadow: 0 0 0 1px rgba(212,175,55,.06), 0 30px 60px -30px rgba(0,0,0,.8);
}
.post-cta h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: .9rem; color: var(--text-primary); }
.post-cta p { margin-bottom: 1.5rem; color: var(--text-secondary); }
.cta-button {
  background: var(--gold-grad); color: #0B0B0D;
  padding: .9rem 2.2rem; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  display: inline-block; box-shadow: 0 12px 28px -12px rgba(212,175,55,.6);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -12px rgba(212,175,55,.75); }
.post-cta a:not(.cta-button) { color: var(--gold-light); }

/* WhatsApp float */
.whatsapp-btn {
  position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 10px 26px -8px rgba(0,0,0,.5);
  transition: transform .25s ease; z-index: 940; color: #fff;
}
.whatsapp-btn:hover { transform: scale(1.08); }

/* Footer */
footer { background: #060608; border-top: 1px solid var(--border-subtle); padding: 4rem clamp(1.25rem, 5vw, 2.5rem) 2rem; margin-top: 4rem; }
.footer-content { max-width: 1200px; margin: 0 auto 2.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.footer-section h4 { font-family: var(--font-display); color: var(--text-primary); margin-bottom: .9rem; font-size: 1rem; font-weight: 600; }
.footer-section p, .footer-section a { color: var(--text-muted); font-size: .9rem; margin-bottom: .6rem; display: block; }
.footer-section a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: .82rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.08); max-width: 1200px; margin: 0 auto; }

@media (max-width: 768px) {
  nav { padding: 12px 18px; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: #0B0B0D; border-bottom: 1px solid var(--border-subtle); padding: 18px; gap: 14px; }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .whatsapp-btn { width: 50px; height: 50px; font-size: 1.5rem; bottom: 86px; right: 18px; }
}
