/* =============================
   Janiah's Realm Earthy Aesthetic
   deep greens, browns, wheat/yellow, warm reds
   inspired by goblincore + whimsy + folk indie vibe
   ============================= */

/* Root Color Palette */
:root {
  --bg-parchment: #F6F1E3;  /* soft paper-like background */
  --text-main: #2A2A22;     /* deep charcoal for easy reading */
  --header-dark: #3F4A2E;   /* mossy forest green */
  --accent-amber: #C69F59;  /* warm wheat/amber highlight */
  --accent-terracotta: #A14A3E; /* deep warm red */
  --accent-gold: #D9B44A;   /* golden wheat */
  --nav-bg: #56523C;        /* olive-toned navigation */
  --nav-text: #F6F1E3;
  --link-color: #6E4D33;     /* earthy brown */
  --link-hover: #A14A3E;     /* warm red hover */
  --divider-color: #8B6D5C;  /* muted brown */
}

/* Basic Body Styling */
body {
  background-color: var(--bg-parchment);
  font-family: 'Georgia', serif;
  color: var(--text-main);
  max-width: 900px;
  margin: auto;
  padding: 20px;
  line-height: 1.7;
  background-image: url(''); /* you can add a light parchment texture if desired */
  background-size: cover;
}

/* Headings */
h1, h2 {
  font-family: 'Amatic SC', cursive;
  color: var(--header-dark);
  text-shadow: 1px 1px rgba(246, 241, 227, 0.6);
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 2rem;
  margin-top: 1em;
  margin-bottom: 0.3em;
}

/* Paragraphs and Lists */
p {
  margin-bottom: 1em;
}

ul {
  margin-left: 20px;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.5em;
  list-style-type: square;
  color: var(--text-main);
}

/* Navigation */
nav {
  margin: 15px 0;
  padding: 8px 10px;
  background-color: var(--nav-bg);
  border-radius: 8px;
  border: 2px solid var(--divider-color);
}

nav a {
  margin-right: 10px;
  color: var(--nav-text);
  font-weight: bold;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 4px;
}

nav a:hover {
  background-color: var(--accent-amber);
  color: var(--text-main);
  transform: scale(1.05);
}

/* Links */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, transform 0.2s;
}

a:hover {
  color: var(--link-hover);
  transform: scale(1.04);
}

/* Horizontal Divider */
hr {
  border: none;
  border-top: 2px dashed var(--divider-color);
  margin: 20px 0;
}

/* Images */
img {
  max-width: 100%;
  border-radius: 10px;
  border: 2px solid var(--divider-color);
  margin: 10px 0;
}

/* Page Sections */
section {
  padding: 12px;
  margin-bottom: 22px;
  background-color: rgba(246, 241, 227, 0.85);
  border-radius: 10px;
  border: 1px dotted var(--divider-color);
}

/* Fancy accents */
body::after {
  content: "🍄 🌿 ✨";
  display: block;
  text-align: center;
  margin-top: 32px;
  font-size: 1.5em;
  color: var(--accent-terracotta);
}