/* ===========================
   DJ LIBRA — SHARED STYLES
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;600;700;800&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #05010B;
  --bg-deep: #0D021A;
  --bg-secondary: #14051F;
  --bg-elevated: #1B0B2D;
  --neon-purple: #A855F7;
  --violet: #9333EA;
  --neon-pink: #EC4899;
  --electric-blue: #38BDF8;
  --cyan: #67E8F9;
  --white: #FFFFFF;
  --light-gray: #D1D5DB;
  --muted-gray: #9CA3AF;
  --soft-purple: #C084FC;
  --grad-main: linear-gradient(135deg, #9333EA 0%, #EC4899 100%);
  --grad-glow: linear-gradient(90deg, rgba(168,85,247,0.8), rgba(236,72,153,0.7));
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--grad-main); border-radius: 3px; }

/* Custom cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

/* === AMBIENT ORBS === */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 15s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: rgba(88,28,235,0.14); top: -150px; left: -150px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: rgba(236,72,153,0.1); bottom: 10%; right: -100px; animation-delay: -5s; }
.orb-3 { width: 400px; height: 400px; background: rgba(56,189,248,0.07); top: 50%; left: 40%; animation-delay: -10s; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(40px,-50px); }
  66% { transform: translate(-30px,30px); }
}

/* === NAVBAR === */
nav, .djl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,1,11,0.5);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(168,85,247,0.08);
  transition: all 0.35s ease;
}
nav.scrolled, .djl-nav.scrolled {
  background: rgba(5,1,11,0.95);
  border-bottom-color: rgba(168,85,247,0.2);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 4px;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(168,85,247,0.45);
  border: 1px solid rgba(168,85,247,0.4);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 10px;
  transition: all 0.25s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(168,85,247,0.1); }
.nav-links a.nav-cta {
  background: var(--grad-main) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(147,51,234,0.35);
  margin-left: 8px;
}
.nav-links a.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(147,51,234,0.6); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--neon-purple); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--neon-purple); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(5,1,11,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(168,85,247,0.2);
  padding: 28px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(168,85,247,0.08);
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--neon-purple); }

/* Page header (inner pages) */
.page-header {
  padding-top: var(--nav-height);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(88,28,235,0.35) 0%, transparent 70%), var(--bg-primary);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.page-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-gray);
  margin-bottom: 20px;
}
.page-header-breadcrumb a { color: var(--neon-purple); text-decoration: none; }
.page-header-breadcrumb span { color: rgba(255,255,255,0.2); }
.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 4px;
  line-height: 0.9;
  margin-bottom: 16px;
}
.page-header h1 em { font-style: normal; background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-header p { color: var(--muted-gray); font-size: 1rem; max-width: 600px; line-height: 1.7; }

/* === SECTION COMMON === */
section { position: relative; z-index: 2; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-purple);
  margin-bottom: 12px;
  font-weight: 600;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--neon-purple); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 3px;
  line-height: 0.95;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { color: var(--muted-gray); font-size: 0.95rem; line-height: 1.8; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-main);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(147,51,234,0.4);
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 0 45px rgba(147,51,234,0.65), 0 15px 30px rgba(0,0,0,0.3); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168,85,247,0.3);
  color: rgba(255,255,255,0.8);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-ghost:hover { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.55); color: white; transform: translateY(-3px); }

/* === NEON DIVIDER === */
.neon-div {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.3) 30%, rgba(236,72,153,0.3) 70%, transparent);
  position: relative;
  z-index: 2;
}

/* === SCROLL ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* === FOOTER === */
footer, .djl-footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(168,85,247,0.1);
  padding: 70px 0 30px;
  position: relative;
  z-index: 2;
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
.footer-brand p { color: var(--muted-gray); font-size: 0.85rem; line-height: 1.8; max-width: 300px; margin-top: 12px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-gray);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--grad-main); border-color: transparent; color: white; transform: translateY(-2px); box-shadow: 0 0 15px rgba(147,51,234,0.4); }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--soft-purple);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--muted-gray); text-decoration: none; font-size: 0.85rem; transition: color 0.25s; }
.footer-col ul a:hover { color: var(--neon-purple); }
.footer-col .footer-icon-list a { display: inline-flex; align-items: center; gap: 8px; }
.footer-col .footer-icon-list a svg { color: var(--neon-purple); flex-shrink: 0; opacity: 0.85; }
.btn-primary svg, .btn-ghost svg { flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(168,85,247,0.08); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--muted-gray); font-size: 0.78rem; }

/* === REUSABLE PHOTO COVER === */
.photo-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.photo-cover-tint::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,1,11,0.35) 0%, rgba(5,1,11,0.85) 100%);
  z-index: 1;
}

/* === INSTAGRAM REEL EMBED (video-only crop) === */
.ig-embed-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(168,85,247,0.25);
  box-shadow: 0 0 50px rgba(147,51,234,0.25), 0 30px 60px rgba(0,0,0,0.5);
  aspect-ratio: 9/16;
}
.ig-embed-wrap iframe {
  position: absolute;
  top: -56px;
  left: 0;
  width: 100%;
  height: calc(100% + 224px);
  border: 0;
  display: block;
  background: #000;
}
.ig-embed-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  nav, .djl-nav { padding: 0 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav, .djl-nav { padding: 0 20px; }
  .nav-logo { font-size: 1.4rem; gap: 10px; letter-spacing: 3px; }
  .nav-logo-img { width: 34px; height: 34px; }
  .section-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-header-inner { padding: 0 20px; }
  .page-header { min-height: 320px; padding-bottom: 40px; }
  .btn-primary, .btn-ghost { padding: 12px 24px; font-size: 0.78rem; }
}
@media (max-width: 480px) {
  nav, .djl-nav { padding: 0 16px; }
  .nav-logo { font-size: 1.2rem; }
  .nav-logo-img { width: 30px; height: 30px; }
  .section-inner { padding: 0 16px; }
  .footer-inner { padding: 0 16px; }
  .page-header-inner { padding: 0 16px; }
}
