/* choreblr.com — minimal styles */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fff;
}

a {
  color: #0057b8;
  text-decoration: underline;
}

a:hover {
  color: #003d82;
}

/* ── Layout ── */

.site-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Nav ── */

nav {
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  margin-bottom: 2.5rem;
}

nav .site-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav .brand {
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: #1a1a1a;
  margin-right: auto;
}

nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #555;
}

nav a:hover {
  color: #0057b8;
  text-decoration: underline;
}

/* ── Hero (index only) ── */

.hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 2.5rem;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
  color: #555;
}

/* ── Page content (privacy / terms) ── */

.page-content h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}

.page-content .effective-date {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 2rem;
}

.page-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e8e8e8;
}

.page-content p,
.page-content ul,
.page-content ol {
  margin: 0 0 1rem;
}

.page-content ul,
.page-content ol {
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.25rem;
}

/* ── Footer ── */

footer {
  border-top: 1px solid #e0e0e0;
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #888;
}

footer .site-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

footer a {
  color: #888;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ── Quick-links (index page) ── */

.quick-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.quick-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #0057b8;
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
}

.quick-links a:hover {
  background: #0057b8;
  color: #fff;
}

/* ── Responsive ── */

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .page-content h1 {
    font-size: 1.4rem;
  }

  footer .site-wrapper {
    flex-direction: column;
  }
}
