body {
  background-color: #222222;
  /* dark charcoal */
  color: #FFD700;
  /* gold */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* ===== NAVBAR ===== */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background-color: #111111;
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-title {
  font-family: 'Cinzel', serif;
  font-size: 1.8em;
  color: #FFD700;
  text-shadow: 2px 2px #523f00;
  justify-self: start;
  margin: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-item {
  position: relative;
  background-color: #333333;
  transform: skewX(-15deg);
  transition: transform 0.3s ease;
}

.nav-item a {
  display: block;
  padding: 12px 25px;
  color: #FFD700;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transform: skewX(15deg);
  position: relative;
  z-index: 2;
}

.nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: gold;
  z-index: 1;
  transform: skewX(-15deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-item:hover {
  transform: skewX(-15deg) translateX(6px);
}

.nav-item:hover::before {
  opacity: 1;
}

.nav-item a:visited {
  color: #FFD700;
  /* same as normal */
}

/* ===== JUMBOTRON ===== */
.jumbotron {
  padding: 60px 20px;
}

.jumbotron h1 {
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
  font-size: 48pt;
  text-shadow: 4px 4px #523f00;
}

.jumbotron p {
  margin-bottom: 50px;
  font-size: 20pt;
}

/* ===== CARDS ===== */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.card {
  background-color: #333333;
  color: #FFD700;
  padding: 20px;
  text-align: center;
  font-size: 1.3em;
  border-radius: 12px;
  /* rounded */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  width: 250px;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  border: 2px solid #FFD700;
  /* highlight gold */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.card a {
  color: #FFD700;
  text-decoration: none;
  display: block;
}

.card a:hover {
  text-decoration: underline;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  background: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
  text-align: left;
}

.contact-form h2 {
  font-family: 'Cinzel', serif;
  margin-bottom: 20px;
  color: #FFD700;
  text-align: center;
  text-shadow: 2px 2px #523f00;
}

label {
  display: block;
  margin: 15px 0 5px;
  font-size: 1.1em;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #222222;
  color: #FFD700;
  font-size: 1em;
  margin-bottom: 15px;
}

input[type="file"] {
  padding: 5px;
  background: none;
}

input[type="submit"] {
  background: #FFD700;
  color: #222222;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  padding: 12px;
  transition: background 0.3s ease;
}

input[type="submit"]:hover {
  background: #ffcc00;
}

.instructions {
  text-align: left;
  /* or center, if you prefer */
  margin: 40px auto;
  max-width: 800px;
  /* keeps it neat */
}

.instructions h1 {
  font-size: 36pt;
  /* bigger heading */
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
  text-align: center;
  /* matches your title style */
}

.instructions ol {
  font-size: 18pt;
  /* bigger list text */
  margin-left: 40px;
  /* normal list indent */
  padding-left: 20px;
  /* tighten spacing between number & text */
}

.home {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 20px;
        }