body {
    background: url('assets/img/BG_0.jpg') repeat;
    background-size: cover;
    color: #ccc;
    font-family: 'OpenDyslexic', sans-serif;
    margin: 0;
    padding: 0 1rem;
}

/* Everything below here is exactly as you had it */

header {
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    font-family: 'CaptainRedemption', cursive;
    color: #110000;
    font-size: 5rem;
    font-weight: normal;
    line-height: 1.2;
}

h1 {
    font-family: 'CaptainRedemption', cursive;
    color: #880f0f;
    font-size: 3rem;
    font-weight: normal;
    line-height: 0.8;
}

h2 {
    font-family: 'CaptainRedemption', cursive;
    color: #880f0f;
    font-size: 5rem;
    font-weight: normal;
    line-height: 1;
    text-align: center;
}

a {
    color: #880f0f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    height: 50px;
    background: url('assets/img/B_Stroke.png') center/contain no-repeat;
    margin: 2rem 0;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
}

footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #666;
}

.stat-block {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap; /* Allows stacking gracefully on narrow screens */
}

.stat-block .avatar {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.stat-block .bio-text {
  flex: 1;
  min-width: 250px;
}

.stat-block .contact-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.stat-block .contact-list li {
  margin: 0.3rem 0;
}

.stat-block .contact-list a {
  color: #880f0f;
  text-decoration: none;
}

.stat-block .contact-list a:hover {
  text-decoration: underline;
}

/* === NEW section background classes === */

.alt-background {
  background: url('assets/img/BG_1.jpg') repeat;
  background-size: cover;
  position: relative;
  padding: 4rem 2rem; /* extra padding so text doesn't touch edges */
  border-radius: 18px;
}

.alt-background .overlay {
  background-color: rgba(0, 0, 0, 0.6); /* optional black overlay for contrast */
  padding: 2rem;
  border-radius: 12px;
}

.downloads-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.download-item {
  flex: 1 1 45%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(136, 15, 15, 0.5);
}

.download-item ul {
  list-style: none;
  padding-left: 1rem;
}

.download-item ul li {
  margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
  .download-item {
    flex: 1 1 100%;
  }
}

