/* /css/about.css */

/* Background watermark */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url("/assets/sudokuparadiselogo.png") no-repeat center center fixed;
  background-size: 70%;main {
  background-color: rgba(255, 255, 240, 0.85); /* warm ivory w/ translucence */
  background-image: url("/assets/papyrus-texture.jpg");
  background-size: cover;
  background-repeat: repeat;
  background-blend-mode: multiply;  /* blends tint + texture */
  margin: 2em auto;
  padding: 2em;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

}

/* Header stays pinned at the top */
header {
  background: #009874; /* palm tree under shade */
  color: white;
  padding: 1em;
  text-align: center;
  position: relative;
  width: 100%;       /* full-width bar */
  top: 0;
  left: 0;
}

header h1 {
  margin: 0;
  font-size: 2em;
  text-align: center; /* ensure centered title */
}

nav {
  margin-top: 0.5em;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

nav a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Main card content */
main {
  background-color: rgba(205, 170, 125, 0.85); /* rich, darker parchment tone */
  background-image: url("/assets/papyrus-dark.jpg"); /* darker aged texture */
  background-size: 500px 500px; /* stronger visible fibers */
  background-repeat: repeat;
  background-blend-mode: multiply; /* natural fiber blending */
  margin: 2em auto;
  padding: 2em;
  max-width: 800px;
  border-radius: 6px; /* tighter corners, less modern */
  box-shadow: 0 0 25px rgba(0,0,0,0.4); /* heavier shadow, museum lighting */
  color: #2b1b0a; /* dark ink-like text for contrast */
}

/* Section headings */
h2 {
  color: #333;
  margin-top: 1em;
}

p, ul {
  color: #444;
  line-height: 1.6;
}

/* Legal section stands out slightly */
section.legal {
  background: #00987420;  /* lighter, distinct from header */
  /** background-color: rgba(255, 235, 200, 0.6); */
  padding: 1em;
  border-left: 4px solid #009874;
  border-right: 4px solid #009874;
  margin-top: 1.5em;
  border-radius: 6px;
  font-size: 0.55em; /* slightly smaller for dense text. Aria's argument for 
   compliance to @media wasn't strong enough to sway me from forcing the user 
   to zoom in to read from a tiny display screen. */
}

section.legal-section {
  background: #00987420;  /* lighter, distinct from header */
  color: #333;
  border-left: 4px solid #009874;
  border-right: 4px solid #009874;
  margin-top: 1.5em;
  border-radius: 6px;
  font-size: 0.55em; /* slightly smaller for dense text. Aria's argument for 
   compliance to @media wasn't strong enough to sway me from forcing the user 
   to zoom in to read from a tiny display screen. */
}

/* Footer stays at bottom */
footer {
  text-align: center;
  padding: 1em;
  background: #eee;  /* lighter, distinct from header */
  color: #333;
  font-size: 0.9em;
  width: 100%;
  bottom: 0;
  left: 0;
}
