/* Fantasy Backstory Commission Site - Base CSS - Earthy Tolkien Theme */

/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Merriweather', serif;
  background: linear-gradient(to bottom, #3e3b2f, #1f1d18);
  color: #eae3d2;
  line-height: 1.6;
  min-height: 100vh;
  padding: 2rem;
}

header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 2px solid #6e5c3a;
}

header h1 {
  font-size: 3rem;
  color: #d8c8a5;
  text-shadow: 1px 1px #000;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

nav a {
  color: #b6a077;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

nav a:hover {
  color: #d4bc80;
  background-color: rgba(255, 255, 255, 0.1);
}

main {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: rgba(60, 52, 39, 0.95);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

section {
  margin-bottom: 2rem;
}

h2 {
  font-size: 2rem;
  color: #d4bc80;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  color: #c3b38c;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.2rem;
  color: #b8a78a;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

a {
  color: #d8c8a5;
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  color: #d4bc80;
}

a:visited {
  color: #a89b75;
}

a:active {
  color: #e4d6a1;
}

footer {
  text-align: center;
  padding: 2rem;
  border-top: 2px solid #6e5c3a;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #b7a67a;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    width: 100%;
    text-align: center;
  }
}
