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


  background-color: black;
}

.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;
}

.body{
  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;
  /* Use a relative path so the image resolves on GitHub Pages project sites */
  /* background: url('.assets/purple-borealis.jpg') center/cover no-repeat fixed; */
  /* background-color: rgb(#3e1172); */
  
  color: rgb(255, 255, 255);
  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;
}

.metadata {
  font-family: 'Geist Mono', monospace;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: -0.8rem;
}

/* Hero container: no dark box, center content responsively */
.hero {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.logo svg {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 0 0.5rem 0;
  /* softer shadow when no dark panel is used */
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
}
.tagline {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* links ------------------------------ */
.cta-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  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;
  font-weight: 300;
}

/* buttons ------------------------------ */
.btn {
  padding: 0.55rem 1.4rem;
  border-radius: 10rem;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background 0.3s ease, border 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.main-btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: #A161EA;
  color: #fff;
  box-shadow: 0 0px 15px #A161EA;
}
.btn-primary:hover {
  background: #C897FF; /* colors the link when hovered over */
  transform: translateY(-5px);
}



.btn-sub {
  background: rgb(212, 212, 212);
  color: #000000;
  box-shadow: 0 0px 15px rgba(255, 255, 255, 0.24);
}
.btn-sub:hover { 
  background: rgb(255, 255, 255); 
  transform: translateY(-5px);
}



.btn-bar {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  padding: 0 0px;
  background: rgba(40, 5, 58, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.85rem;
  box-shadow: 0 0px 17px rgba(79, 22, 105, 0.24);
}

.btn-bar:hover {
  border: 2px solid rgba(161, 97, 234, 0.4);
  background: rgba(41, 5, 59, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 0px 10px rgba(163, 21, 228, 0.24);
}

.btn-bar-text {
  color: #A161EA;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.btn-bar-div {
  color:rgb(81, 65, 94);
  font-weight: 750;
  margin: 0 -2.4rem;
}

