/* Flousse website — brand palette mirrors mobile/constants/themes.ts */
:root {
  --green: #49AA95;
  --green-dark: #3A8A78;
  --ink: #252933;
  --white: #FFFEFE;
  --muted: #64748B;
  --bg: #F1F2F4;
  --border: #E4E6E9;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--green-dark); }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo { height: 34px; width: auto; display: block; }
.wordmark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-decoration: none;
}

/* Hero (landing) */
.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  text-align: center;
}
.hero h1 { font-size: 40px; font-weight: 800; letter-spacing: -1px; margin: 0 0 12px; }
.hero p { font-size: 18px; color: var(--muted); margin: 0 auto 28px; max-width: 540px; }
.cta {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
}

/* Legal document layout — wide enough for iubenda's TOC + body two-column embed */
.doc {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  background: var(--white);
}
/* Keep our own disclaimer readable rather than stretching full width */
.doc .notice { max-width: 820px; }
.doc h1 { font-size: 30px; font-weight: 800; margin-bottom: 4px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.doc h2 { font-size: 20px; font-weight: 700; margin-top: 36px; }
.doc h3 { font-size: 16px; font-weight: 700; margin-top: 22px; }
.doc p, .doc li { font-size: 15px; color: #334155; }

.lang-divider {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--muted);
  margin: 48px 0 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.draft-banner {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  color: #92400E;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 24px;
}

.notice {
  background: rgba(73, 170, 149, 0.08);
  border: 1px solid var(--green);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.notice strong { color: var(--green-dark); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.site-footer a { margin: 0 8px; }
