/* WALK-WALK marketing site — shared stylesheet
   Mobile-first, bilingual-ready, on-brand */

:root {
  --brand-orange: #ff6b35;
  --brand-amber:  #ffb500;
  --brand-cream:  #fdf6e9;
  --ink:          #1f1f24;
  --ink-soft:     #5a5a64;
  --ink-faint:    #9a9aa3;
  --line:         rgba(0, 0, 0, 0.08);
  --card-bg:      #ffffff;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html, body {
  margin: 0; padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--brand-cream);
  color: var(--ink);
  line-height: 1.55;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 22px 80px;
}

/* ── Top bar with logo + language toggle ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.brand {
  font-family: "AvenirNextCondensed-Heavy", "Avenir Next Condensed", "HelveticaNeue-CondensedBlack", Impact, sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.lang-toggle {
  display: inline-flex;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}

.lang-toggle button {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .15s ease;
}

.lang-toggle button.active {
  background: var(--brand-orange);
  color: white;
}

/* ── Headline ── */
h1 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
  line-height: 1.15;
}

.intro {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

/* ── Section cards ── */
.section {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 22px 22px 24px;
  margin-bottom: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.section h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--brand-orange);
  margin: 0 0 10px;
}

.section p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

/* ── Hide non-active language ── */
[lang]:not(.active-lang) { display: none; }

/* ── Footer ── */
.footer {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
}

.footer a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 600;
}

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

.last-updated {
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-faint);
  font-style: italic;
}

/* ── Index/landing-only ── */
.hero {
  text-align: center;
  padding: 40px 0 24px;
}

.hero-icon {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-amber));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  margin-bottom: 18px;
}

.tagline {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 24px;
}

.links-grid {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.links-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.links-grid a:hover { background: rgba(255, 107, 53, 0.05); }

.chevron::after {
  content: "›";
  color: var(--ink-faint);
  font-size: 22px;
}
