/* ============================================
   ZAINA JULIETTE — Site CSS
   Dark Cinematic Luxury Editorial
   ============================================ */

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

/* ---- TOKENS ---- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    #7A612D;
  --pink:        #E91E8C;
  --pink-light:  #FF69B4;
  --pink-dim:    #8B1A5C;
  --purple:      #9B59B6;
  --purple-light:#C471ED;
  --black:       #050505;
  --near-black:  #0D0D0D;
  --dark:        #141414;
  --mid:         #1E1E1E;
  --border:      rgba(201,168,76,0.18);
  --text:        #E8E4DC;
  --text-muted:  #8A8070;
  --white:       #F5F0E8;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Montserrat', sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: var(--black); }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex; align-items: center;
  padding: 0 40px;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--gold);
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo span { color: var(--white); }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  margin-left: 24px;
  padding: 8px 20px;
  border: 1px solid var(--pink);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-light) !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--pink) !important; color: var(--white) !important; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; padding: 4px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(5,5,5,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================
   COMMON LAYOUT
   ============================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; }
.section--tight { padding: 80px 0; }

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.section-body {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}
.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 32px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-gold {
  background: var(--pink);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,30,140,0.4);
}
.btn-outline {
  border: 1px solid var(--pink);
  color: var(--pink-light);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
}

/* ============================================
   CARDS & GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.card {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

/* ============================================
   VIDEO EMBED
   ============================================ */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--border);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================
   GOLD DIVIDER LINE
   ============================================ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 30%, var(--gold-dim) 70%, transparent);
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  line-height: 2;
}
.footer-social {
  display: flex; gap: 20px;
  align-items: center;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-align: center;
}

/* ============================================
   PAGE HERO BANNER
   ============================================ */
.page-hero {
  height: 320px;
  display: flex; align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--near-black) 0%, #1a1508 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
.anim-fade { animation: fadeUp 0.8s ease both; }
.anim-fade-d1 { animation-delay: 0.1s; }
.anim-fade-d2 { animation-delay: 0.2s; }
.anim-fade-d3 { animation-delay: 0.3s; }
.anim-fade-d4 { animation-delay: 0.5s; }

/* Pink Purple shimmer text */
.shimmer {
  background: linear-gradient(90deg, #D4A0D4, #FF69B4, #9B59B6, #E91E8C, #C471ED, #FF85C2, #9B59B6, #D4A0D4);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .section-heading { font-size: 42px; }
}
