body {
  background-color: #fff8e1;
  font-family: 'Outfit', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ffcc00;
  padding: 1.5em 1em;
  text-align: center;
  color: #fff8e1;
}

header h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: black;
}

nav {
  margin-top: 0.5em;
}

nav a {
  color: #d00000;
  text-decoration: none;
  margin: 0 1em;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: text-decoration 0.3s ease;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
}

main {
  max-width: 900px;
  margin: 3em auto;
  padding: 0 1em;
}

.about-section h2 {
  font-family: 'Poppins', sans-serif;
  color: #d00000;
  font-size: 50px;
  margin-bottom: 0.75em;
  border-bottom: 3px solid #d00000;
  padding-bottom: 0.25em;
}

.about-section p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.about-section ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-bottom: 2em;
}

.about-section ul li {
  margin-bottom: 0.75em;
  font-size: 20px;
  line-height: 1.5;
}

.about-section a {
  color: #d00000;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.about-section a:hover,
.about-section a:focus {
  text-decoration: underline;
}

footer {
  background-color: #d00000;
  color: #fff8e1;
  text-align: center;
  padding: 1em;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  margin-top: 4em;
}

/* === NEW LORE STYLES === */

.lore-section {
  margin-top: 3em;
  background-color: #fff0c1;
  padding: 2em;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.lore-section h2 {
  color: #a30000;
  font-size: 50px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1em;
  border-bottom: 3px dashed #a30000;
  padding-bottom: 0.25em;
}

.lore-text {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  transition: all 0.3s ease;
}

.lore-button {
  margin-top: 1.5em;
  background-color: #d00000;
  color: #fff8e1;
  border: none;
  padding: 0.8em 1.5em;
  font-size: 18px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lore-button:hover {
  background-color: #a30000;
}
