﻿@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Nunito:wght@400;600;700&display=swap");

:root {
  --ink: #111827;
  --muted: #6b7280;
  --accent: #f1c232;
  --bg: #fff7de;
  --surface: rgba(255, 255, 255, 0.9);
  --line: rgba(31, 41, 55, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  background: radial-gradient(circle at 10% 10%, #f9e7b7, transparent 50%),
              radial-gradient(circle at 90% 20%, #f6d88a, transparent 45%),
              var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

html[lang^="he"] body {
  font-family: Arial, "Segoe UI", sans-serif;
}

#app {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

header h1 {
  font-family: "DM Serif Display", serif;
  margin: 0;
  font-size: 34px;
}

html[lang^="he"] header h1 {
  font-family: Arial, "Segoe UI", sans-serif;
}

.surface {
  background: var(--surface);
  border-radius: 20px;
  padding: 20px;
}

.legal-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  margin-top: 24px;
}

.legal-content p,
.legal-content li {
  line-height: 1.7;
  color: var(--muted);
}

.legal-content ul {
  padding-left: 18px;
}

.legal-content a {
  color: var(--accent);
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card h3 {
  margin: 0;
}

.card .meta {
  color: var(--muted);
  font-size: 14px;
}

button {
  border: none;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: var(--accent);
  color: white;
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

