/* London Aerospace — londonaero.space
   Palette: near-black on white, prop-guard orange accent. */

:root {
  --text: #111;
  --bg: #fff;
  --accent: #ff5a1f;
  --muted: #555;
  --rule: #ddd;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #eee;
    --bg: #121212;
    --accent: #ff6a33;
    --muted: #aaa;
    --rule: #333;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  max-width: 44rem;
  padding: 1.5rem 1.25rem 3rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-wrap: break-word;
}

h1, h2 {
  line-height: 1.2;
}

h1 {
  font-size: 2.25rem;
  margin: 0.25rem 0;
}

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

a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 1.5rem 0 1rem;
}

.hero img {
  width: 160px;
  height: 160px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.strapline {
  color: var(--muted);
  max-width: 34rem;
  margin: 0.5rem auto 0;
}

/* Sections */
section {
  margin-top: 2.5rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}

/* Workshop callout — the one boxed, accented element on the page */
.workshop {
  border: 3px solid var(--accent);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem 1.5rem;
  margin-top: 3rem;
}

.workshop h2 {
  margin-top: 0;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Buttons (links styled as buttons; min 44px tap target) */
.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 0.375rem;
  min-height: 44px;
}

.button:hover {
  filter: brightness(0.92);
}

/* Links list */
.links {
  list-style: none;
  padding: 0;
}

.links li {
  padding: 0.4rem 0;
}

.link-note {
  color: var(--muted);
}

/* Footer */
footer {
  margin-top: 3rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

footer p {
  margin: 0.35rem 0;
}
