/* BeerFindr marketing site — shared styles */

:root {
  --brand: #E55934;
  --brand-hover: #C44923;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --border: #e5e7eb;
  --max-width: 720px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 80px;
}

a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--brand-hover);
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
}

h1 {
  color: var(--brand);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

h1.hero {
  font-size: 48px;
  margin-bottom: 16px;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

h2:first-of-type {
  margin-top: 32px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

p.lead {
  font-size: 17px;
  color: var(--text-muted);
}

p.last-updated {
  font-style: italic;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 6px;
  font-size: 16px;
}

strong {
  font-weight: 700;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0 24px;
}

.footer-links {
  font-size: 15px;
  color: var(--text-muted);
}

.footer-links a {
  margin-right: 8px;
}

.footer-links span {
  margin-right: 8px;
}

/* Mobile tuning */
@media (max-width: 600px) {
  main { padding: 32px 20px 56px; }
  h1 { font-size: 30px; }
  h1.hero { font-size: 36px; }
  h2 { font-size: 19px; margin-top: 32px; }
  p, li { font-size: 15px; }
}
