/* Homepage CSS */


.hero h1 {
  font-size: 5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero .status {
  font-size: 1.25rem;
  opacity: 0.65;
}






/* =========================
   Home Page Section Padding
   ========================= */

/* Scope everything to the homepage so nothing leaks */
.homepage {
  /* creates breathing room below the sticky navbar */
  padding-top: 3.5rem;
}

/* Big cinematic spacing for content sections, NOT the footer band */
.homepage section:not(.hero-wrapper):not(.footer-band) {
  padding: 25rem 0;
}

/* Hero to intro should be closer than the rest */
.hero-wrapper {
  padding-top: 5rem;
  padding-bottom: 12rem;
}

.intro {
  padding-top: 6rem;
}


/* Constrain reading width + center all section content cleanly */
.hero-inner,
.intro-inner,
.explore-inner,
.craft-inner,
.mythos-inner,
.roadmap-inner,
.connect-inner,
.footer-band-inner {
  width: min(860px, 92vw);
  margin: 0 auto;
  text-align: center;
}

/* Footer should be subtle, not cinematic */
.homepage footer,
.homepage .footer {
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  border-top: 1px solid rgba(255,255,255,0.08);
}




/* =========================
   Home Page Box Links
   ========================= */

/* Default link styling (fits the brand, avoids browser purple/blue) */
.homepage a {
  color: rgba(230, 230, 230, 0.82);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}


.homepage a:hover {
  color: rgba(255, 255, 255, 0.95);
}


/* Kill the default visited purple for homepage links */
.homepage a:visited {
  color: rgba(230, 230, 230, 0.82);
}

/* Explore section: make links look like real cards (not raw links) */
.card-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}


/* changes the link boxes to be vertical (1x4) instead of default (2x2) */
@media (max-width: 1000px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}



.card {
  min-height: 120px;              /* gives room to breathe */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* TRUE symmetric padding */
  padding-top: 1.3rem;
  padding-bottom: 1.5rem;

  gap: 0.0rem;

  background: rgba(0,0,0,0.42);
  border: 3px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  backdrop-filter: blur(6px);

  text-decoration: none;
}

.card h3 {
  margin: 0;
  line-height: 1.5;
}

.card p {
  margin: 0;
  line-height: 1.3;
  opacity: 0.75;
}

.card:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.50);
}




/* =========================
   Home Page Forged In Shadow Section
   ========================= */

/* Fix bullet alignment: center the list block, but keep bullets + text aligned */
.craft-list {
  list-style: disc;
  padding-left: 1.2rem;            /* space for bullets */
  margin: 1.2rem auto 0;
  width: fit-content;               /* keeps list as a centered block */
  text-align: left;                 /* bullets and text align properly */
}

.craft-list li {
  margin: 0.35rem 0;
  line-height: 1.6;
  opacity: 0.9;
}

/* Whisper block: readable + intentional */
.whisper {
  margin: 1.5rem auto 0;
  padding: 1.25rem 1.4rem;
  border-left: 2px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  width: fit-content;
  text-align: left;
  opacity: 0.9;
}

/* Headings spacing so sections feel paced */
.homepage h2 {
  margin: 0 0 1rem 0;
}

.homepage p {
  margin: 0.75rem 0 0;
  line-height: 1.7;
  opacity: 0.88;
}



/* =========================
   Home Page Roadmap Section
   ========================= */

/* Roadmap cleanup: remove default bullets + center cleanly */
.roadmap-inner ul {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 2.0rem; /* adds bottom padding between one section to the next */
}

.roadmap-inner li {
  margin: 0.35rem 0;
  opacity: 0.9;
}

/* Roadmap: create stronger separation between groups */
.roadmap-inner h3 {
  margin: 2.0rem 0 0.6rem;
}

/* But keep the first "Now" from pushing down too far */
.roadmap-inner h3:first-of-type {
  margin-top: 0.6rem;
}








.homepage [class$="-inner"] {
  will-change: opacity;
  transition: none;
}




/* =========================
   MOBILE SPACING FIX
   ========================= */
@media (max-width: 700px) {
  /* Less global breathing room under sticky nav */
  .homepage {
    padding-top: 2.0rem;
  }

  /* Reduce the cinematic padding on mobile */
  .homepage section:not(.hero-wrapper):not(.footer-band) {
    padding: 15rem 0;
  }

  /* Bring hero/intro closer so the page doesn't feel "empty" */
  .hero-wrapper {
    padding-top: 3rem;
    padding-bottom: 7rem;
  }

  .intro {
    padding-top: 3rem;
  }

  /* Reduce hero text size a bit so it fits cleanly */
  .hero h1 {
    font-size: 2.3rem;
  }
}



/* =========================
   DESKTOP TYPOGRAPHY SCALE
   ========================= */
@media (min-width: 1001px) {
  .homepage {
    font-size: 1.55rem;
  }
}
