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

body {
  background-color: #F5F0E1;
  color: #2B1A0E;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'MedievalSharp', cursive;
  color: #8B0000;
}

a {
  color: #8B0000;
  text-decoration: none;
}

a:hover {
  color: #D4AF37;
}

/* Navbar styling */
.navbar {
  background-color: #8B0000;
  padding: 20px;
  display: flex;
  flex-direction: column; /* stack image and links */
  align-items: center; /* center image and links */
}

.navbar-logo {
  height: auto;       /* maintain aspect ratio */
  max-height: 200px;  /* bigger image height */
  max-width: 100%;    /* don’t overflow navbar */
  margin-bottom: 15px;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px; /* spacing between links */
  justify-content: center; /* center links horizontally */
}

.navbar li {
  margin: 0; /* spacing handled by gap */
}

.navbar a {
  color: #F5F0E1;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}

.navbar a:hover {
  color: #D4AF37;
}

/* Page content styling */
.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff8e1;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Lists for downloads or links */
ul.download-list, ul.links-list {
  padding-left: 20px;
}

ul.download-list li, ul.links-list li {
  margin-bottom: 10px;
}

/* ---------------------------------------------------------- */
/* Boxes for link categories                                   */
/* ---------------------------------------------------------- */
.link-box {
  background-color: #fffaf0;              /* parchment-like */
  border: 2px solid #D4AF37;             /* gold border */
  border-radius: 8px;
  padding: 15px 20px;
  margin: 20px 0;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

.link-box h2 {
  margin-top: 0;
}
