/* corsa-b.uk placeholder page — phpBB3 prosilver palette.
   Reference: https://www.phpbb.com/styles/docs/3.3/en/theme/cssref.html
   Colours sourced from the prosilver stylesheet.css. Kept deliberately
   simple: no framework, no analytics, no fonts beyond the system stack.
   Renders the same in any browser, on any device, with no network calls
   beyond the one initial page load. */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  /* prosilver body background (slightly bluer than the panel) */
  background: #ECF3F7;
  /* prosilver body text colour */
  color: #333333;
  font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
  font-size: 11px;        /* prosilver base font size */
  line-height: 1.5;       /* prosilver line-height */
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.card {
  max-width: 38rem;
  width: 100%;
  /* prosilver panel background */
  background: #FFFFFF;
  /* prosilver border colour (the panel inner / outer divider) */
  border: 1px solid #B5C1CC;
  /* prosilver uses very small radii (0..4px). Match that. */
  border-radius: 3px;
  padding: 2rem 2rem 1.5rem;
}

/* A small strip in the prosilver headerbar colour so the page reads
   as a continuation of the forum it used to live in. */
.header-strip {
  height: 6px;
  /* prosilver "headerbar" gradient: deep navy → mid blue */
  background: #1A4F8B;
  border-bottom: 1px solid #105289;
  border-radius: 3px 3px 0 0;
  margin: -2rem -2rem 1.5rem;
}

.logo {
  display: block;
  max-width: 220px;
  height: auto;
  margin: 0 auto 1.5rem;
}

h1 {
  font-size: 1.5rem;      /* prosilver H1 */
  margin: 0 0 1rem;
  color: #105289;         /* prosilver H1 / link colour */
  font-weight: bold;
  letter-spacing: 0;
  font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
}

h2 {
  font-size: 1.15rem;     /* prosilver H2 */
  margin: 1.75rem 0 0.6rem;
  color: #105289;
  font-weight: bold;
  font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
}

p {
  margin: 0 0 1em;
  font-size: 12px;        /* prosilver post body text is 12-13px */
  line-height: 1.5;
}

a {
  color: #105289;         /* prosilver link colour */
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover, a:focus {
  color: #BC2A2D;         /* prosilver link hover colour */
}

.links {
  list-style: none;
  padding: 0.6rem 1rem;
  margin: 0 0 1em;
  background: #CADCEB;    /* prosilver "bg3" panel-header tone */
  border: 1px solid #B5C1CC;
  border-radius: 3px;
}

.links li {
  padding: 0.3rem 0;
  font-size: 12px;
  border-bottom: 1px dotted #B5C1CC;   /* prosilver panel-divider style */
}

.links li:last-child {
  border-bottom: 0;
}

.signoff {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #B5C1CC;
  font-size: 12px;
}

.muted {
  color: #5C7583;         /* prosilver "dimmed text" tone */
  font-size: 11px;
}

@media (max-width: 480px) {
  body { padding: 1rem 0.5rem; }
  .card { padding: 1.5rem 1.25rem 1rem; }
  .header-strip { margin: -1.5rem -1.25rem 1.25rem; }
  h1 { font-size: 1.3rem; }
}
