/* VALNARIM – OSR Forest Grit */

body {
  margin: 0;
  background: radial-gradient(circle at 20% 10%, #243224, #0c120c 65%);
  color: #e6dec2;
  font-family: "Garamond", serif;
  padding-left: 220px;
  overflow-x: hidden;
}

/* Subtle drifting fog */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/foggy-birds.png");
  opacity: 0.05;
  animation: drift 120s linear infinite;
  pointer-events: none;
}

@keyframes drift {
  from { background-position: 0 0; }
  to   { background-position: 2000px 0; }
}

/* Left Nav – Dark Timber */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to bottom, #2a2f24, #161a13);
  box-shadow: 2px 0 25px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}

nav a {
  color: #cbbd8c;
  text-decoration: none;
  margin: 18px 0;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a {
  color:#50A429;
}

nav a:hover {
  color: #f0e6b6;
  text-shadow: 0 0 8px rgba(255, 200, 120, 0.6);
}

/* Title */
h1 {
  text-align: center;
  margin-top: 50px;
  font-size: 2.5em;
  letter-spacing: 3px;
  color: #e8dfb5;
}

/* Main Content Box */
.content-box {
  max-width: 850px;
  margin: 60px auto;
  padding: 35px;
  background: rgba(50, 60, 45, 0.92);
  border-radius: 6px;
  box-shadow:
    0 0 40px rgba(0,0,0,0.8),
    inset 0 0 25px rgba(0,0,0,0.6);
  border: 1px solid rgba(120, 110, 80, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
}

.content-box:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 50px rgba(0,0,0,0.9),
    0 0 20px rgba(180,150,80,0.2);
}

.content-box p {
  line-height: 1.8;
  font-size: 1.08em;
}

/* Organic divider */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #a89c6d, transparent);
  margin: 40px 0;
}

/* Wood-toned Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1f17;
}

::-webkit-scrollbar-thumb {
  background: #5a4f33;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7a6a45;
}

/*leafy section headers*/
.section-title {
  font-size: 1.4em;
  letter-spacing: 2px;
  color: #d8cc9c;
  border-left: 3px solid #8a7f52;
  padding-left: 10px;
  margin-top: 40px;
}