

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Cinzel', serif;
  color: #FFD700;
  overflow-x: hidden;
}

/* === Headings === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: bold;
  color: black;
  text-align: center;
  text-shadow: 0 0 5px #b8860b;
}

/* Paragraphs */
p {
  display: flex;
  justify-content: center;
  color: black;
  background-color:white;
}

/* Links */
a {
  color: #FFD700;
  text-shadow: 0 0 4px #FFD70088;
  text-decoration: none;
}

a:hover {
  text-shadow: 0 0 8px #FFD700;
}

/* Bolder emphasis */
b {
  display: flex;
  justify-content: center;
  font-weight: bold;
  color: #FFD700;
}

/* === Buttons === */
button,
.buttons button,
.back-btn {
  background: linear-gradient(145deg, #FFD700, #b8860b);
  color: #000;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

button:hover,
.buttons button:hover,
.back-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Bottom nav */
#table-bottom {
  background-color: #111;
  height: 40px;
  width: 100%;
  color: #FFD700;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between; /* Push links to far left and right */
  align-items: center;            /* Center vertically */
  padding: 0 15px;                /* Add side spacing */
  z-index: 999;
}

#table-bottom a {
  color: #FFD700;
  text-shadow: 0 0 3px #FFD700;
  text-decoration: none;
  font-weight: bold;
}

#table-bottom a:hover {
  text-shadow: 0 0 8px gold;
  color: gold;
}

/* Form fields */
input, textarea, select {
  background-color: #1a1a1a;
  color: #FFD700;
  border: 1px solid #FFD70066;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
}

input::placeholder,
textarea::placeholder {
  color: #FFD70088;
}
