/* VektKamp website — minimal stylesheet matching the app's brand
   palette so the landing → app handoff doesn't feel like a different
   product. Mirrors apps/mobile/src/theme.ts on key colors. */

:root {
  --bg: #F3EFE8;
  --surface: #FAF8F4;
  --surface-elevated: #FFF9F0;
  --text: #1F1A14;
  --text-secondary: #5C5347;
  --text-muted: #8C8275;
  --accent: #C2543B;
  --accent-dark: #9A3F2A;
  --border: #E8DFD0;
  --border-strong: #C9BFA8;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.55;
  font-size: 16px;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

header.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0 32px;
}

header.brand .logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -1px;
}

header.brand .wordmark {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 8px;
}

p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-dark);
}

.card {
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0;
}

.tagline {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--surface);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  height: 44px;
  font-size: 16px;
}

.btn:hover {
  background: var(--accent-dark);
  color: var(--surface);
}

.btn.secondary {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.app-store-badge {
  display: inline-block;
  margin-top: 8px;
}

.app-store-badge img {
  height: 48px;
}

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

footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}

footer a {
  color: var(--text-muted);
  margin-right: 16px;
}

/* Invite landing — centered card with prominent name + CTA. */
.invite-card {
  text-align: center;
  padding: 32px 24px;
}

.invite-card .inviter-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 4px;
}

.invite-card .kamp-summary {
  color: var(--text-secondary);
  margin: 0 0 24px;
}

.error-state {
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: var(--text-secondary);
}
