/* PAGE BACKGROUND */
.discover-page {
  background-image: url('/images/meteorbk.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  font-family: "Georgia", serif;
  color: #f4e9d8;
  padding: 0;
  margin: 0;
}

/* FOG LAYER */
.discover-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.12); /* soft fog */
  backdrop-filter: blur(3px);
  z-index: 1;
  pointer-events: none;
}

/* GOLD CRESCENT NAVIGATION */
.crescent-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.crescent-btn {
  padding: 8px 16px;
  border: 2px solid gold;
  border-radius: 20px;
  color: gold;
  text-decoration: none;
  font-size: 16px;
  background: rgba(0,0,0,0.4);
  transition: 0.3s;
}

.museum-links a:visited {
  color: #d9c27e; /* your gold tone */
}

.museum-links a {
  color: #d9c27e;
}

.museum-links a:hover {
  color: #f2e3b3; /* optional lighter gold on hover */
}

.crescent-btn:hover {
  background: gold;
  color: #1a1a1a;
}

/* TITLE BLOCK */
.discover-header {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.discover-title {
  font-size: 48px;
  color: gold;
  margin: 0;
}

.discover-subtitle {
  font-size: 18px;
  color: #ffffff;
  margin-top: 8px;
}

/* MAIN CONTENT BLOCK */
.content-block {
  position: relative;
  z-index: 5;
  max-width: 800px;
  margin: 0 auto 80px auto;
  background: rgba(30,20,10,0.85);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* FEATURE IMAGE */
.feature-image {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

/* FEATURE TITLE */
.feature-title {
  font-size: 28px;
  color: gold;
  margin-bottom: 20px;
  text-align: center;
}

/* STORY TEXT */
.story-text p {
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 20px;
}

/* FOOTER */
.discover-footer {
  text-align: center;
  padding: 20px;
  color: #e8d9c5;
  font-size: 14px;
  position: relative;
  z-index: 5;
}