
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 2rem;
  background: linear-gradient(270deg, #e8eadb, #d0dbe0);
  background-size: 400% 400%;
  animation: gradientScroll 15s ease infinite;
  color: #40392f;
}

@keyframes gradientScroll {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

header {
  background: rgba(117, 101, 96, 0.95);
  padding: 1.5rem;
  text-align: center;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav a {
  margin: 0 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
nav a:hover {
  color: #ffeeaa;
}

main {
  max-width: 960px;
  margin: auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

h1, h2 {
  color: #756560;
}

/* Card style for NPCs or general content */
.npc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.npc-card {
  background: #ffffffdd;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.npc-card:hover {
  transform: translateY(-4px);
}

.npc-card h2 {
  margin-top: 0;
  color: #a88f87;
}

.npc-card p {
  margin: 0.5rem 0;
}

.npc-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

/* Decorative icon style */
.icon {
  vertical-align: middle;
  margin-right: 0.4rem;
  stroke: #40392f;
  stroke-width: 2px;
  width: 1.2em;
  height: 1.2em;
}
