/* === NAVBAR OVERRIDES === */
.navbar {
  background-color: #000 !important;
  border-bottom: 2px solid #ffcc00;
}

.nav-link {
  color: #ffcc00 !important; /* gold text */
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #222 !important; /* subtle dark hover */
  color: #fff !important; /* white text on hover */
}

.nav-link.active {
  background-color: #ffcc00 !important; /* gold background */
  color: #000 !important; /* black text */
}

/* === GLOBAL BODY === */
body {
  background-color: #000;
  color: #fff;
  font-family: 'Quintessential', cursive;
  padding: 2rem;
  line-height: 1.6;
}

/* === HEADINGS === */
h1, h2, h3, h4, h5, h6 {
  color: #ffcc00;
  font-weight: normal;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px #000;
}

/* === LINKS === */
a {
  color: #ffcc00;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 5px #ffcc00;
}

a:active {
  color: #ffaa00;
}

/* === PARAGRAPHS === */
p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* === LISTS === */
#content ol, #content ul {
  max-width: 800px;
  margin: 0 auto 1rem auto;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
}

li span {
  display: block;
  font-size: 1rem;
  color: #bbb;
  margin-top: 0.2rem;
}

/* Navbar-specific list items */
.nav-item {
  margin-bottom: 0; /* don't add extra space in nav */
  font-size: 1rem; /* smaller than D&D rules */
  font-weight: normal; /* keep normal weight unless you want bold links */
  padding: 0 0.5rem; /* horizontal breathing room */
}

.nav-item:hover {
  background-color: #222; /* subtle hover background */
  border-radius: 4px;
}

/* === BUTTONS === */
button, .btn {
  background-color: #ffcc00;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  font-family: 'Quintessential', cursive;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover, .btn:hover {
  background-color: #ffaa00;
  color: #000;
}

button:active, .btn:active {
  background-color: #cc9900;
  color: #fff;
}

/* === FORMS === */
input, select, textarea {
  background-color: #111;
  color: #fff;
  border: 1px solid #ffcc00;
  padding: 0.5rem;
  font-family: 'Quintessential', cursive;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #ffaa00;
}

/* === TABLES === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th, td {
  border: 1px solid #ffcc00;
  padding: 0.5rem;
  text-align: left;
}

th {
  background-color: #111;
  color: #ffcc00;
}

tr:nth-child(even) {
  background-color: #111;
}

/* === BLOCKQUOTES === */
blockquote {
  border-left: 4px solid #ffcc00;
  padding-left: 1rem;
  color: #ccc;
  font-style: italic;
  margin: 1rem 0;
}
