/* sins3.css — modernised stylesheet for sins.com.au
   Colour palette:
     charcoal  #2d2d2d
     orange    #e07820
     blue      #1a5fa3
     light bg  #f4f4f4
*/

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #2d2d2d;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ── Page skeleton ─────────────────────────────────── */

#header {
  background: #1a5fa3;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

#wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

#left {
  width: 160px;
  flex-shrink: 0;
  background: #f4f4f4;
  border-right: 1px solid #ddd;
  padding: 8px 0;
  min-height: calc(100vh - 48px);
}

#content {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  background: white;
}

#right {
  width: 150px;
  flex-shrink: 0;
  padding: 12px 8px;
  font-size: 0.8rem;
  border-left: 1px solid #ddd;
  background: #f4f4f4;
  color: #2d2d2d;
}

/* ── Header ────────────────────────────────────────── */

.ph1 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.accent {
  color: #e07820;
}

/* ── Left nav ──────────────────────────────────────── */

#left nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mh {
  background: #e07820;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 10px;
}

.mi {
  display: block;
  padding: 4px 10px;
  font-size: 0.82rem;
  border-bottom: 1px solid #e8e8e8;
  color: #2d2d2d;
  background: #f4f4f4;
}

.mi a {
  color: #1a5fa3;
  text-decoration: none;
  display: block;
}

.mi a:hover {
  color: #e07820;
}

/* ── Content ───────────────────────────────────────── */

.content-inner p {
  margin: 0 0 0.9em 0;
  color: #2d2d2d;
}

.content-inner a {
  color: #1a5fa3;
}

.content-inner a:hover {
  color: #e07820;
}

.content-footer {
  margin-top: 24px;
  padding-top: 8px;
  border-top: 1px solid #ddd;
  font-size: 0.78rem;
  color: #888;
}

/* ── Right sidebar ─────────────────────────────────── */

#right a {
  color: #1a5fa3;
  text-decoration: none;
}

#right a:hover {
  color: #e07820;
}

/* ── Global links ──────────────────────────────────── */

a:link    { color: #1a5fa3; }
a:visited { color: #555; }
a:hover   { color: #e07820; text-decoration: none; }
a:active  { color: #e07820; }
