:root {
    font-family: 'Inter', sans-serif;
}

.elegant-heading {
    margin-top: 50;
    font-family: 'Instrument Serif', serif;
    font-weight: 400; /* This font usually looks best at its natural weight */
    font-size: 3rem;  /* It's a "display" font, so bigger is better! */
    text-align: center
}
.elegant-heading:hover {
    text-decoration: underline;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .85rem;

    /* text-align: right; */

    max-width: 1500px;
    margin: 0 auto;
    /* This creates a 5% margin on the sides and 50px at the top/bottom */
    padding: 40px 20px;
    box-sizing: border-box; /* Crucial: makes sure padding doesn't cause horizontal scrolling */
}

.body-center{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .85rem;
    text-align: center;

    max-width: 900px;    /* Limits how wide the text gets (standard for readability) */
    margin: 0 auto;      /* The magic line: centers the box horizontally */
    padding: 40px 20px;
    box-sizing: border-box;
}

.hero-heading {
    font-family: 'Instrument Serif', serif;
    font-size: 3rem;

    font-weight: 400;
    text-align: center;

    max-width: 900px;    /* Limits how wide the text gets (standard for readability) */
    margin: 0 auto;      /* The magic line: centers the box horizontally */
    padding: 40px 20px;
    box-sizing: border-box;
}
.superhero-heading:hover {
    text-decoration: underline;
}











/* ---- Landing page styles (added) ---- */
html, body {
  height: 100%;
}
body {
  margin: 0;
  background: url('/assets/purple%20borealis.jpg') center/cover no-repeat fixed;
  color: white;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.landing-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
}
.logo svg {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}
.tagline {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.cta-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.link-text {
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  font-size: 1rem;
  padding: 0.5rem;
}
.btn {
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 160ms ease, filter 160ms ease;
}
.btn-download {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 3px 8px rgba(37,99,235,0.24);
}
.btn-download:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}
.btn-web {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-web:hover { background: rgba(255,255,255,0.12); }


