@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Montserrat:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

/* ══════════════════════════════════════════════════════════
   BOVIBES ENTERTAINMENT — HYBRID BRAND SYSTEM
   Aesthetic: Jet Black × Royal Gold × Nigerian Hype Energy
   Typography: Playfair Display (editorial) + Montserrat (body) + Bebas Neue (display)
   ══════════════════════════════════════════════════════════ */

:root {
  --gold:         #C9A84C;
  --gold-bright:  #F0C84A;
  --gold-dim:     rgba(201,168,76,0.12);
  --gold-border:  rgba(201,168,76,0.22);
  --gold-glow:    rgba(201,168,76,0.35);
  --black:        #080808;
  --black-1:      #0F0F0F;
  --black-2:      #161616;
  --black-3:      #1E1E1E;
  --black-4:      #272727;
  --cream:        #F5EDD8;
  --text:         #D4CCBC;
  --muted:        #6B6456;
  --white:        #FFFFFF;
  --green-wa:     #25D366;
  --nav-h:        76px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black-1); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── SCROLL PROGRESS ─── */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.1s linear;
}

/* ─── NAVIGATION ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  transition: background 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--gold-border);
}
.nav-logo-wrap { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  width: 46px; height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.45));
}
.nav-logo-text .brand {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-logo-text .sub {
  display: block;
  font-size: 8.5px;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex; gap: 28px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-bright); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-book {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 11px 28px !important;
  border-radius: 0px !important;
  font-weight: 800 !important;
  letter-spacing: 2.5px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-book:hover {
  background: var(--gold-bright) !important;
  transform: translateY(-1px) !important;
}
/* ─── NAV GROUP DROPDOWN ─── */
.nav-group-item { position: relative; }
.nav-group-trigger {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  cursor: pointer;
  padding-bottom: 3px;
}
.nav-group-item:hover .nav-group-trigger { color: var(--gold-bright); }
.nav-dropdown {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%);
  background: rgba(8,8,8,0.98);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(20px);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--black-1);
  border-top: 1px solid var(--gold-border);
  border-left: 1px solid var(--gold-border);
  transform: translateX(-50%) rotate(45deg);
}
.nav-group-item:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block !important;
  padding: 11px 20px !important;
  font-size: 11px !important; letter-spacing: 1.5px !important;
  color: var(--muted) !important; text-transform: uppercase;
  transition: color 0.2s, background 0.2s !important;
  border-bottom: none !important;
}
.nav-dropdown a:hover {
  color: var(--gold) !important;
  background: var(--gold-dim) !important;
}
.nav-dropdown a::after { display: none !important; }



/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 6px; cursor: pointer; padding: 6px; border: none;
  background: none; z-index: 1200;
}
.hamburger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--gold);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 88vw); height: 100vh;
  background: var(--black-1);
  border-left: 1px solid var(--gold-border);
  z-index: 1150;
  display: flex; flex-direction: column;
  padding: 100px 40px 40px;
  gap: 4px;
  transition: right 0.45s var(--ease);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer a {
  display: block; padding: 16px 0;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--cream);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.mobile-drawer a:hover { color: var(--gold); padding-left: 10px; }
.mobile-drawer .drawer-book {
  margin-top: 28px; background: var(--gold);
  color: var(--black) !important; text-align: center;
  padding: 18px !important; border-bottom: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important; font-weight: 800 !important;
  letter-spacing: 3px !important;
  border-radius: 0 !important;
}
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 1100;
}
.drawer-overlay.open { display: block; }

/* ─── PAGE HERO (reusable) ─── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 6% 80px;
  overflow: hidden;
  min-height: 340px;
  display: flex; align-items: flex-end;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201,168,76,0.02) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.02) 80px);
}
.page-hero-inner { position: relative; }
.page-eyebrow {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95; letter-spacing: 0.03em;
  color: var(--white);
}
.page-hero h1 .gold { color: var(--gold); }
.page-hero p {
  max-width: 560px; margin-top: 20px;
  font-size: 15px; color: var(--text); line-height: 1.75;
}
.hero-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

/* ─── SECTION UTILITIES ─── */
.section { padding: 100px 6%; }
.section-sm { padding: 60px 6%; }
.section-dark { background: var(--black-1); }
.section-darker { background: var(--black-2); }

.label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.label::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold-border); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; line-height: 1.1; color: var(--white);
  margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title .block-gold { color: var(--gold); font-style: normal; }

.section-body { font-size: 15px; color: var(--text); line-height: 1.8; max-width: 640px; }

/* ─── CTA BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: pointer;
  transition: all 0.2s var(--ease); position: relative;
}
.btn-gold {
  background: var(--gold); color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline:hover {
  background: var(--gold-dim); border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-arrow::after { content: '→'; font-size: 14px; font-weight: 400; }

/* ─── CARDS ─── */
.card {
  background: var(--black-2);
  border: 1px solid var(--gold-border);
  padding: 36px 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.4);
}
.card:hover::before { transform: scaleX(1); }

/* ─── FOOTER ─── */
#footer {
  background: var(--black-1);
  border-top: 1px solid var(--gold-border);
  padding: 64px 6% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 18px;
  letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 6px;
}
.footer-brand .brand-sub {
  font-size: 10px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--muted); letter-spacing: 0.5px;
}
.footer-bottom .gold { color: var(--gold); }

/* ─── WHATSAPP WIDGET ─── */
#wa-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}

/* Popup Chat Card */
.wa-popup {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
}
.wa-popup.open {
  opacity: 1; transform: scale(1) translateY(0);
  pointer-events: all;
}
.wa-popup-header {
  background: #075E54;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
.wa-popup-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.wa-popup-info { flex: 1; }
.wa-popup-name { font-size: 15px; font-weight: 700; color: #fff; font-family: 'Montserrat', sans-serif; }
.wa-popup-status {
  font-size: 12px; color: rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 5px;
}
.wa-popup-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #25D366; flex-shrink: 0; }
.wa-popup-close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 20px; cursor: pointer; padding: 0; line-height: 1;
  transition: color 0.2s;
}
.wa-popup-close:hover { color: #fff; }

.wa-popup-body {
  background: #ECE5DD;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' opacity='0.04'%3E%3Ctext y='30' font-size='40'%3E💬%3C/text%3E%3C/svg%3E");
  padding: 20px 16px;
  min-height: 140px;
}
.wa-message-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 12px 14px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.wa-message-bubble p {
  font-size: 14px; color: #303030; line-height: 1.55; margin: 0;
  font-family: 'Montserrat', sans-serif;
}
.wa-message-time { font-size: 11px; color: #999; margin-top: 5px; text-align: right; }

.wa-popup-footer {
  background: #F0F0F0;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
}
.wa-popup-input {
  flex: 1; background: #fff;
  border: none; border-radius: 24px;
  padding: 10px 16px; font-size: 14px;
  font-family: 'Montserrat', sans-serif; color: #303030;
  outline: none;
}
.wa-popup-input::placeholder { color: #aaa; }
.wa-popup-send {
  width: 40px; height: 40px; border-radius: 50%;
  background: #075E54; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s;
}
.wa-popup-send:hover { background: #128C7E; }
.wa-popup-send svg { width: 18px; height: 18px; fill: #fff; }

/* Bubble Button */
.wa-fab {
  width: 60px; height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: waPulse 3s ease-in-out infinite;
  border: none; position: relative; z-index: 1;
  flex-shrink: 0;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}
.wa-fab svg { width: 30px; height: 30px; fill: #fff; transition: transform 0.3s var(--ease); }
.wa-fab.open svg { transform: rotate(90deg); }

/* Unread badge */
.wa-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #FF3B30; color: #fff;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  animation: badgePop 0.4s var(--ease) 1.5s both;
}
@keyframes badgePop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ─── FOOTER LOGO ─── */
.footer-logo-img {
  width: 56px; height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.35));
  margin-bottom: 12px;
  display: block;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ─── RESPONSIVE ─── */
@media(max-width: 900px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width: 600px) {
  .section { padding: 70px 5%; }
  .page-hero { padding: calc(var(--nav-h) + 50px) 5% 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
