/* ===== Base Styles ===== */
body {
  margin: 0;
  padding: 2em;
  font-family: "Georgia", serif;
  background: linear-gradient(to bottom right, #fefae0, #f3f3ef);
  color: #222;
  text-align: center;
}

/* ===== Navigation ===== */
.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 2em 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  border-bottom: 2px solid #ddd;
  padding-bottom: 1.2em;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #a86f32;
}

/* ===== Hero Section ===== */
.hero-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 2em 1em;
}

.hero-title {
  font-size: 3em;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 0.3em;
}

.hero-subtitle {
  font-size: 1.25em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2em;
}

.highlight {
  font-weight: bold;
  color: #a86f32;
}

/* ===== Button Styling ===== */
.button {
  display: inline-block;
  padding: 0.75em 1.75em;
  background-color: #a86f32;
  color: white;
  border-radius: 10px;
  font-size: 1em;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #805328;
}

/* ===== Footer & Sigil ===== */
.site-footer {
  margin-top: 4em;
  padding: 2em 0;
  border-top: 1px solid #ddd;
  background: #fefae0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer .sigil {
  width: 111px;
  height: auto;
  margin-bottom: 1em;
  opacity: 0.85;
}

.footer-text {
  font-size: 0.9em;
  color: #555;
  font-style: italic;
  text-align: center;
}
.section-title {
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 0.5em;
}
.milestone-entry p {
  margin-bottom: 1.2em;
  line-height: 1.6;
}
.milestone-entry .quote {
  font-style: italic;
  color: #555;
  margin-left: 1em;
}
.status-line {
  font-weight: bold;
  font-size: 1.1em;
  color: #444;
  margin-top: 0.5em;
  padding: 0.4em 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  letter-spacing: 0.4px;
}
.hero-subtitle {
  font-style: italic;
  font-size: 1.2em;
  color: #666;
}
.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
}

.button-container .button {
  min-width: 200px;
  text-align: center;
}
/* Dropdown structure */
.nav-menu li.dropdown {
  position: relative;
}

.nav-menu .dropdown-content {
  display: none;
  position: absolute;
  background-color: #111;
  min-width: 160px;
  z-index: 1;
  top: 100%;
  left: 0;
}

.nav-menu .dropdown-content li {
  padding: 0;
}

.nav-menu .dropdown-content li a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
}

.nav-menu .dropdown-content li a:hover {
  background-color: #333;
}

.nav-menu li.dropdown:hover .dropdown-content {
  display: block;
}
