/* =============================================
   WILL LABEAUX — Shared Styles
   willlabeaux.com
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface2: #1a1a1a;
  --border: #1f1f1f;
  --text: #f0ece3;
  --muted: #6b6560;
  --accent: #c8ff47;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── CURSOR ─────────────────────────────────── */
.cursor {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,255,71,0.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}
body.cursor-hover .cursor { width: 20px; height: 20px; }
body.cursor-hover .cursor-ring { width: 60px; height: 60px; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 48px;
  height: var(--nav-h);
}
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.96) 60%, transparent);
  pointer-events: none;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: .08em;
  position: relative; z-index: 1;
  transition: color .2s;
}
.nav-logo:hover { color: var(--accent); }
.nav-links {
  display: flex; gap: 40px;
  list-style: none;
  position: relative; z-index: 1;
}
.nav-links a {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--border); padding: 15px 28px;
  transition: all .3s; color: var(--text);
}
.btn:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(6px); }

.btn-ghost {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--border);
  padding-bottom: 3px; transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

/* ── SECTION HELPERS ─────────────────────────── */
.section { padding: 120px 48px; }
.section-sm { padding: 80px 48px; }

.section-label {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 56px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.section-label.center { justify-content: center; }
.section-label.center::after { display: none; }

/* ── MARQUEE ─────────────────────────────────── */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 18px 0;
  background: var(--surface);
}
.marquee-inner {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .15em;
  color: var(--muted);
}
.marquee-item .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg);
}
.site-footer span { font-size: 11px; letter-spacing: .1em; color: var(--muted); }
.footer-logo { font-family: var(--font-display); font-size: 20px; color: var(--muted); }
.footer-socials { display: flex; gap: 28px; }
.footer-socials a {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.footer-socials a:hover { color: var(--accent); }

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { gap: 22px; }
  .section { padding: 80px 24px; }
  .section-sm { padding: 60px 24px; }
  .site-footer { flex-direction: column; gap: 20px; text-align: center; }
}
