/* shared.css – SeatMates Brand Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;800&display=swap');

:root {
  --bg:      #0F0F0D;
  --bg2:     #141412;
  --bg3:     #1A1917;
  --surface: #1F1E1B;
  --accent:  #E8520A;
  --text:    #F2EFE6;
  --muted:   #8A8678;
  --border:  rgba(242,239,230,0.07);
  --font:    'Inter', -apple-system, sans-serif;
  --radius:  12px;
}

*, *::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); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 62px;
  background: rgba(15,15,13,0.92); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.3px; color: var(--text); }
.nav-logo-text .s, .nav-logo-text .m { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-weight: 600; font-size: 0.875rem; padding: 10px 22px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #FF6520; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,82,10,0.3); }
.btn-ghost { background: none; border: 1px solid var(--border); color: var(--muted); }
.btn-ghost:hover { color: var(--text); border-color: rgba(242,239,230,0.2); }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.25rem;
}
.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-logo-text { font-size: 1rem; font-weight: 800; color: var(--text); }
.footer-logo-text .s, .footer-logo-text .m { color: var(--accent); }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; list-style: none; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 0.78rem; }

/* ── Divider ── */
.divider { height: 1px; background: linear-gradient(90deg,transparent,var(--border) 30%,var(--border) 70%,transparent); margin: 0 5vw; }

/* ── Responsive ── */
@media (max-width: 680px) {
  .nav-links { display: none; }
  .site-footer { flex-direction: column; text-align: center; }
}
