/* root.css - Only what Sakura doesn't do */
:root {
  --border-color: #eaeaea;
  --text-muted: #555;
  --primary-bg: #333;
  --primary-text: #fff;
}

/* Enable the Sticky Footer layout */
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/* Pushes footer down if page content is short */
main {
  flex: 1;
}

/* Only used to constrain custom header/footer content to match Sakura's width */
.container {
  width: min(1100px, 95%);
  margin: 0 auto;
}

header, footer {
  border-bottom: 1px solid var(--border-color);
}

footer {
  border-top: 1px solid var(--border-color);
  border-bottom: none;
  text-align: center;
  color: var(--text-muted);
}

/* Sakura doesn't handle side-by-side nav, so we keep this */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
