/* campfyre.app — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #080810;
  color: #fff;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo {
  color: #ff6b35;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

/* ── FOOTER ── */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { color: #444; font-size: 12px; }

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

.footer-links a {
  color: #555;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #888; }

/* ── BUTTONS ── */
.btn-primary {
  background: #ff6b35;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn-primary:hover {
  background: #ff7a45;
  transform: translateY(-1px);
}

.btn-secondary {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-secondary:hover { color: #fff; }

/* ── PROSE PAGES (privacy, support) ── */
.prose-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 48px 80px;
}

.prose-page h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.prose-page .page-meta {
  color: #666;
  font-size: 13px;
  margin-bottom: 48px;
}

.prose-page h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 12px;
}

.prose-page h3 {
  font-size: 14px;
  font-weight: 700;
  color: #ff6b35;
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prose-page p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.prose-page ul {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 20px;
}

.prose-page ul li { margin-bottom: 6px; }

.prose-page a {
  color: #ff6b35;
  text-decoration: none;
}

.prose-page a:hover { text-decoration: underline; }

.prose-page .divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 40px 0;
}

/* FAQ accordion (pure CSS) */
.faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.03);
  list-style: none;
  user-select: none;
}

.faq-question::after {
  content: '+';
  color: #ff6b35;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
}

details[open] .faq-question::after { content: '−'; }

.faq-answer {
  padding: 0 20px 16px;
  color: #888;
  font-size: 14px;
  line-height: 1.65;
}

/* contact box */
.contact-box {
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
}

.contact-box p {
  color: #ccc;
  margin-bottom: 12px;
}

.contact-box p:last-child { margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 16px 20px; }
  footer { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .prose-page { padding: 40px 20px 60px; }
  .prose-page h1 { font-size: 28px; }
}
