/* ─── Reset & Base ─────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.body {
  display: flex;
  overscroll-behavior: none;
  flex-direction: column;
  align-items: center;       /* centers all children horizontally */
  text-align: center;
  width: 100%;
  min-height: 100vh;
  /*background-color: rgb(28, 12, 1);*/
  background-color: rgba(0, 0, 0, 0.998);
  font-family: "Roboto Mono", sans-serif;
  font-weight: 400;
}

/* ─── Background Canvas ─────────────────────────────────────────────── */
#background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ─── Main Title ────────────────────────────────────────────────────── */
  #main-title {
    color: rgb(247, 248, 182);
    font-size: 2.5rem;
    margin-top: 30px;
    margin-bottom: 5px;
  }
/* ─── Navbar ────────────────────────────────────────────────────────── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
  margin-bottom: 25px;
  padding: 0 20px;
}

.navbar h1 a {
  color: rgb(10, 180, 180);
}
.navbar h1 a:hover {
  color: rgb(213, 80, 107);
}

.sub-nav {
  display: flex;
  text-align: center;
  align-items: center;
}

.sub-nav p {
  margin-left: 15px;
  text-align: center;
}

/* ─── Multimedia Links ──────────────────────────────────────────────── */
.connect-label {
  color: rgb(10, 180, 180);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 45px;
  width: 100%;
  margin-bottom: 1px;
}

.multimedia {
  display: flex;
  flex-direction: row;
  justify-content: center;   /* center the links row */
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.multimedia a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(247, 248, 182);   /* default color */
  transition: color 0.2s;
  margin-top: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

.multimedia a:hover {
  color: rgb(10, 180, 180);    /* hover color */
}

.multimedia svg {
  width: 24px;
  height: 24px;
}

/* ─── About Section ─────────────────────────────────────────────────── */
#about {
  color: rgb(247, 248, 182);
  max-width: 900px;
  font-size: 14px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;       
}

#about > * {
  margin-bottom: 25px;
}

#about a {
  text-decoration: underline;
}

#about li {
  margin-top: 5px;
  margin-bottom: 5px;
  list-style-position: inside; /* keeps bullets centered with text */
}

/* ─── Typography ────────────────────────────────────────────────────── */
#title {
  color: rgb(10, 180, 180);
}

b {
  font-weight: 700;
  color: rgb(247, 248, 182);
}

/* ─── Links ─────────────────────────────────────────────────────────── */
a {
  color: rgb(247, 248, 182);
  text-decoration: none;
  position: relative;
}

a:hover {
  color: rgb(10, 180, 180);
}

/* ─── Blog Section ──────────────────────────────────────────────────── */
#blogs {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.list li {
  margin-bottom: 10px;
}

/* ─── Responsive (Mobile) ───────────────────────────────────────────── */
@media screen and (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .sub-nav p {
    margin-left: 15px;
  }

  .multimedia {
    flex-direction: column;
    align-items: center;
  }

  #about {
    max-width: 340px;
  }
}
/* ─── Audience Tabs ─────────────────────────────────────────────────── */
  .audience-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .tab {
    background: none;
    border: 1px solid rgb(247, 248, 182);
    color: rgb(247, 248, 182);
    font-family: "Roboto Mono", sans-serif;
    width: 112px;  /* adjust until it looks right */
    font-size: 0.9rem;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }

  .tab:hover,
  .tab.active {
    background-color: rgb(247, 248, 182);
    color: rgb(0, 0, 0.998);
  }

  .tab-content {
    display: none;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;        /* ← centers the block itself */
    color: rgb(247, 248, 182);
    line-height: 1.7;
    text-align: center;
  }
  .tab-content p {
    text-align: center;
    margin-bottom: 15px;
  }
  .tab-content.active {
    display: block;
  }

/* ─── Footer ────────────────────────────────────────────────────────── */
footer {
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  margin-top: auto;
  margin-bottom: 30px;
}

hr.footer-line {
  border: none;
  border-top: 1px solid rgb(247, 248, 182);
  margin-bottom: 12px;
}

.copyright {
  color: rgb(247, 248, 182);
  font-size: 0.8rem;
}

#about ::selection {
  background-color: rgb(213, 80, 107);
  color: rgb(0, 0, 0.998);
}

/* ─── Timeline ──────────────────────────────────────────────────────── */
.timeline-intro {
  color: rgb(10, 180, 180);
  margin-bottom: 40px;
  font-size: 0.9rem;
  opacity: 1;
}

.timeline-year {
  color: rgb(213, 80, 107);
  background-color: rgba(70,5,5,0.2);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 40px;
}

.timeline-item {
  color: rgb(247, 248, 182);
  border-left: 2px solid rgb(247, 248, 182);
  padding: 0 0 24px 20px;
  margin-left: 10px;
  margin-right: 10px;
  text-align: left;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.7;
  background-color: rgba(0,0,0,0.5);
  border-radius: 1px;
}


.timeline-item a {
  text-decoration: underline;
}

.timeline-coming-soon {
  color: rgb(213, 80, 107);
  background-color: rgba(70,5,5,0.2);
  font-size: 1.2rem;
  font-weight: 700;
}