/* === GLOBAL STYLES (Preserve for index.html) === */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #000000;
  margin: 0;
  padding: 0;
}

/* === NAVIGATION BAR === */
nav {
  text-align: center;
  padding: 20px 0;
  background-color: #f9f9f9;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* === STANDARD PAGE WITHOUT LISTINGS === */
body.standard-page {
  background-color: #F9F9F9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.standard-page .main-wrapper {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.header-image {
  display: block;
  margin: 0 auto 1em auto;
  max-width: 300px;
  width: 100%;
  height: auto;
}

/* === STANDARD PAGE WITH LISTINGS === */
body.listing-page {
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.listing-page .main-wrapper {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.listing-page h2 {
  text-align: left;
  padding-left: 27px;
}

.listing-page ol {
  padding-left: 40px;
}

.listing-page .header-image {
  display: block;
  margin: 0 auto 1em auto;
  max-width: 600px;
  width: 100%;
  height: auto;
}

/* === THIRD LEVEL PAGES === */
.story-container {
  max-width: 800px;
  margin: 2em auto;
  padding: 2em;
  background-color: #F0F8FF; /* Default pastel blue */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: Georgia, serif;
}

body.article-page .story-container {
  background-color: #e6f4e6; /* pastel green for articles */
}

body.lyrics-page .story-container {
  background-color: #fff9e6; /* pastel yellow for lyrics */
}

.story-container h1, .story-container h2, .story-container p {
  text-align: left;
}

.centered-image {
  display: block;
  margin: 1em auto;
  max-width: 100%;
  height: auto;
}

/* === FOOTER === */
.footer-info {
  text-align: center;
  font-size: 0.9em;
  color: #777;
  margin-top: 40px;
  padding: 10px 0;
  font-family: Arial, sans-serif; 
}

/* === Title Alignment for Standard and Listing Pages === */
.standard-page h1,
.listing-page h1 {
  text-align: center;
  font-size: 2em;
  margin-top: 1em;
}

.contact-details {
  text-align: center;
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
}

.red-highlight {
  color: #ff0000;
  font-weight: bold;
}