/* --- Global Body & Background Styles --- */
body {
  background-color: #f4f7f6; /* Soft, modern light gray background */
  font-family: "Lucida Console", "Courier New", monospace; /* Clean, readable fonts */
  color: #333333; /* Dark gray text for better eye comfort */
  line-height: 1.6; /* Improves readability by spacing out text lines */
  padding: 40px;
  max-width: 800px;
  margin: 0 auto; /* Centers the whole website layout on the screen */
}

/* --- Document Headers (H1 to H6) --- */
h1 {
  color: #8A2BE2; /* blue violet for the main title */
  font-size: 2.5rem;
  border-bottom: 3px solid #3498db; /* Adds a vibrant blue underline barrier */
  padding-bottom: 10px;
  margin-top: 0;
}

h2 {
  color: #2e7d32; /* Rich dark green for the Foods section */
  font-size: 1.8rem;
  margin-top: 30px;
}

h3 {
  color: #e67e22; /* Warm orange for things you want to learn */
  font-size: 1.5rem;
}

h4 {
  color: #2494B1; /* favorite hobbies */
  font-size: 1.3rem;
}

h5 {
  color: #c0392b; /* Deep red for this year's goals */
  font-size: 1.15rem;
}

h6 {
  color: #72C421; /* favorite animals */
  font-size: 1rem;
  text-transform: uppercase; /* Makes the small heading look crisp */
  letter-spacing: 1px;
}

/* --- Quote Block Styles --- */
strong {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: #555555;
  background-color: #ffffff; /* Gives the Walt Whitman quote a white highlight card */
  padding: 15px 20px;
  border-left: 5px solid #f1c40f; /* Adds a bright sun-yellow left accent border */
  margin: 20px 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Adds a very soft drop shadow */
}

/* --- Lists (Unordered & Ordered) --- */
ul, ol {
  background-color: #ffffff; /* Wraps lists inside clear white container blocks */
  padding: 20px 20px 20px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 25px;
}

li {
  margin-bottom: 8px; /* Adds breathing room between list items */
  color: #4a4a4a;
}

/* --- Nested Unordered List Styles (For Animal Sub-types) --- */
ul ul {
  background-color: transparent; /* Removes double backgrounds for sub-lists */
  box-shadow: none;
  padding: 5px 0 5px 20px;
  list-style-type: circle; /* Changes sub-bullets to open circles */
}

/* --- Advanced Text Formatters Used So Far --- */
sup {
  color: #e74c3c; /* Makes your asterisk (*) pop out in bright red */
  font-weight: bold;
}

sub {
  color: #7f8c8d;
  font-size: 0.75rem;
  background-color: #eaeaea; /* Labels "WellDone" in a clean pill tag */
  padding: 2px 6px;
  border-radius: 3px;
}

del {
  color: #b2bec3; /* Mutes out deleted items like Sushi */
  text-decoration-color: #ff7675; /* Applies a soft red strikethrough line */
}
