/* ── QWANED STUDIOS — SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

:root {
  --black:   #0a0a0a;               /* Deep dark background */
  --off:     #111111;               /* Secondary dark / off-black for cards */
  --surface: #1a1a1a;               /* Slightly lighter for card hovers */
  --s2:      #272727;               /* Structure lines */
  --border:  rgba(255,255,255,0.1); /* Crisp light thin border lines */
  --text:    #ffffff;               /* White for high-impact text */
  --muted:   #a1a1aa;               /* Light gray for clean body copy */
  --blue:    #38bdf8;               /* Clean baby blue brand color accent */
  --purple:  #70acc0;               /* Smoother transitions instead of neon purple */
  --grad:    linear-gradient(90deg, #38bdf8, #70acc0);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(10,10,10,0.85); /* Updated for dark theme */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-color: var(--border);
}

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--blue);
  padding: 9px 18px;
  text-decoration: none;
  transition: opacity 0.2s;
  border-radius: 2px;
}

.nav-cta:hover { opacity: 0.8; }

/* ── FOOTER ── */
.site-footer {
  padding: 28px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--blue);
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.footer-links { display: flex; gap: 20px; }

.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

/* ── SHARED SECTION UTILITIES ── */
.label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.label-accent { color: var(--blue); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-x {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-x.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── SERVICE CARDS (Clickable Buttons) ── */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--off);
  border: 1px solid var(--border);
  padding: 28px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s ease;
  border-radius: 4px;
}

.service-card:hover {
  background: var(--surface);
  border-color: var(--blue);
  transform: translateY(-4px);
}

.service-card .card-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.service-card .card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.service-card .card-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .card-cta {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; } 
  .site-footer { flex-direction: column; text-align: center; padding: 24px 20px; }
  .service-card { padding: 24px; }
  .service-card .card-title { font-size: 28px; }
}