body {
  margin: 0;
  font-family: 'Merriweather', serif;
  background-color: #1C1C1C;
  color: #B2B2B2;
}

header {
  text-align: center;
  padding: 2rem;
  background-color: #000;
}

header h1 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 3rem;
  color: #D4AF37;
}

.tagline {
  font-style: italic;
  color: #8B0000;
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  background-color: #111;
  border-top: 2px solid #8B0000;
  border-bottom: 2px solid #8B0000;
}

nav ul.navbar li {
  list-style: none;
}

nav ul.navbar li a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}

nav ul.navbar li a:hover {
  background-color: #8B0000;
  color: #fff;
  border-radius: 5px;
}

.hero {
  background-image: url(Dragon.png); /* Replace with your own dragon image */
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
  
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  color: #D4AF37;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  text-align: center;
}

main {
  padding: 2rem;
}

.lore-block {
  width: 100%;
  background-image: none;
  /*background-color: #f5e6c4; /* light parchment tone */
  background-repeat: repeat;
  background-size: cover;
  color: #3b2f2f; 
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: none;
  border: none;
  border-radius: 0;


}

.lore-block h2 {
  font-family: 'Cinzel Decorative', cursive;
  color: #8B0000;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lore-block p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Merriweather', serif;
  color: #B2B2B2;
}

section {
  margin-bottom: 2rem;
}

section h3 {
  color: #D4AF37;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #000;
  color: #B2B2B2;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

section {
  background-color: #2a2a2a;
  border: 1px solid #8B0000;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

section:hover {
  transform: scale(1.02);
}

section h3 {
  color: #D4AF37;
  font-family: 'Cinzel Decorative', cursive;
  margin-bottom: 0.5rem;
}

section p {
  color: #B2B2B2;
  font-size: 1rem;
}


