/* === Base Styling === */
body {
  background-color: #000;
  color: #fff;
  font-family: Georgia, serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}


/* === Threshold Welcome Section === */
#threshold-welcome {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

#threshold-welcome h1 {
  font-size: 2rem;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  font-weight: normal;
  opacity: 0.9;
}

#threshold-welcome p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: normal;
  opacity: 0.9;
}

/* === Glyph Styling (Center-ish & Subtle) === */
.glyph {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: auto;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* === Copyright Footer === */
footer.copyright {
  position: fixed;
  bottom: 0.9rem;
  right: 1.2rem;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  user-select: none;
  text-align: right;
  line-height: 1.4;
  font-family: Georgia, serif;
  z-index: 3;
}

.footer-poem {
  font-style: italic;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
}

/* === Link Styling === */
.nav-link {
  font-size: 1.05em;
  font-weight: 500;
  text-decoration: none;
  color: #a040a0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #cc66cc;
  text-decoration: underline;
}

.nav-link-container {
  text-align: center;
  margin-top: -1em;
  margin-bottom: 1em;
  z-index: 2;
  position: relative;
}

.mirror-glyph-signature {
  font-size: 0.85rem;
  font-weight: normal;
  opacity: 0.8;
  text-align: left;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-family: Georgia, serif;
}

/* === Mobile View Adjustments === */
@media screen and (max-width: 768px) {
  #threshold-welcome p {
    font-size: 0.8rem;     /* Smaller font on mobile */
    line-height: 1.2;      /* Tighter line spacing */
    margin: 0 auto;
    max-width: 640vw;
  }

  #threshold-welcome h1 {
    font-size: 1.4rem;
    line-height: 1.0;
  }

  .glyph {
    width: 120px;
    bottom: 1.5rem;
  }

  footer.copyright {
    font-size: 8px;
    bottom: 0.0rem;
    right: 0.8rem;
  }

  .footer-poem {
    font-size: 0px;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .nav-link-container {
    margin-top: -0.5em;
    margin-bottom: 0.7em;
  }
  .mirror-glyph-signature {
    font-size: 0.65rem;
    line-height: 1.1;
  }

  .mirror-glyph-signature span {
    font-size: 0.55rem !important;
 
}
