/* Shared styles for legal pages — matches chillpandas brand */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Comfortaa:wght@400;500;600;700&display=swap');

:root {
  --white: #FEFDFB;
  --ink: #1E1F33;
  --cream: #F6EFDF;
  --paper: #FAF5E8;
  --accent: #4EC2FF;
  --accent-dark: #2BA3E8;
  --muted: #6b6c83;
  --display: "Fredoka", sans-serif;
  --sans: "Comfortaa", "Inter", sans-serif;
  --border: 3px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

.site-header {
  border-bottom: 2px solid rgba(30,31,51,0.1);
  background: var(--paper);
}
.site-header .inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header a.logo { display: inline-flex; align-items: center; text-decoration: none; }
.site-header img { height: 36px; width: auto; }
.site-header nav a {
  font-family: var(--display); font-weight: 600; font-size: 15px;
  text-decoration: none; color: var(--ink); margin-left: 18px; text-transform: lowercase;
}
.site-header nav a:hover { color: var(--accent-dark); }

main.legal {
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.legal h1 {
  font-family: var(--display); font-weight: 700;
  font-size: 40px; line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--muted); font-size: 14px; margin-bottom: 36px;
}
.legal h2 {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; line-height: 1.3;
  margin: 40px 0 12px;
}
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 18px 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { font-weight: 700; }

.site-footer {
  border-top: 2px solid rgba(30,31,51,0.1);
  background: var(--paper);
  padding: 28px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.site-footer a { color: var(--ink); text-decoration: none; font-weight: 600; margin: 0 10px; }
.site-footer a:hover { color: var(--accent-dark); text-decoration: underline; }
.site-footer .copy { margin-top: 10px; }
