 /* ========== GLOBAL RESET ========== */
    * {
      box-sizing: border-box;
    }

   /* ========== BODY STYLING ========== */
body {
  background-color: black;
  background-image: url("images/background.png");
  background-repeat: repeat;
  background-attachment: fixed;
  color: white;
  font-family: "Times New Roman", serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  overflow-y: scroll;
}

  /* ========== TOP BAR ========== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 130px; /* Top bar height */
  background-color: black;
  z-index: 1000;
  display: flex;
  align-items: center;     /* Vertically center logo */
  justify-content: center; /* Horizontally center logo */
  padding-left: 240px;     /* Adjust if you have a sidebar */
  overflow: hidden;
}

.topbar img {
  height: 130px;  /* Logo height */
  width: auto;    /* Keeps aspect ratio */
}


    /* ========== MAIN CONTAINER HOLDS NAV + CONTENT ========== */
    .container {
      display: flex;
      margin-top: 150px; /* Leave space for fixed top bar */
    }


    /* ========== LEFT SIDEBAR NAVIGATION ========== */
    nav {
      position: fixed;
      top: 150px;
      left: 0;
      width: 240px;
      height: calc(100vh - 150px);
      overflow-y: auto;
      padding: 60px 20px 20px 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      /*background-color: #111;*/
    }

    nav a {
      display: block;
      color: blue;
      text-decoration: none;
      margin-bottom: 10px;
      font-size: 32px;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }

/* ========== SIDEBAR SOCIAL OR INFO ========== */
.sidebar-info {
  display: flex;
  align-items: center;  /* Align icon and text vertically */
  gap: 8px;

  font-size: 14px;
  color: #aaa;
  margin-top: auto;
}

.sidebar-info a {
  color: #aaa;
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
  position: relative;
  top: 6px; /* Shift text down slightly */
}

.sidebar-info a:hover {
  color: #fff;                 /* Make link white on hover */
  text-decoration: underline; /* Add underline on hover */
}

.sidebar-info img {
  width: 18px;
  height: auto;
  display: block;
}


    /* ========== MAIN PAGE CONTENT AREA ========== */
    .content {
      margin-left: 240px;
      padding: 40px;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    /* ========== WRAPS PAGE CONTENT TO A MAX WIDTH ========== */
    .centered-wrapper {
      max-width: 800px;
      width: 100%;
    }

    /* ========== PAGE HEADER (TITLE) ========== */
    header {
      text-align: center;
      margin-bottom: 30px;
    }

    h1 {
      font-size: 36px;
      margin: 0;
      padding: 10px 0;
      line-height: 1.2;
      text-transform: uppercase;
    }

    /* ========== MAIN TEXT BODY STYLING ========== */
    .description {
      font-size: 20px;
      line-height: 1.6;
      text-align: left;
    }

    .description p {
      margin-bottom: 20px;
    }

    .description a {
      font-size: 20px;
      color: blue;
      font-weight: bold;
      text-decoration: none;
    }

    .description a:hover {
      text-decoration: underline;
    }

    /* ========== HEADINGS INSIDE CONTENT ========== */
    h2 {
      font-size: 32px;
      color: #39ff14;
      margin-top: 30px;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    h4 {
      font-size: 24px;
      color: #39ff14;
      margin-top: 30px;
      margin-bottom: 10px;
      padding-bottom: 4px;
      letter-spacing: 0.5px;
    }

    /* ========== RESPONSIVE STYLES FOR MOBILE ========== */
    @media (max-width: 768px) {
      .topbar {
        height: 100px;
        padding-left: 0;
        justify-content: center;
      }

      .topbar img {
        height: 80px;
      }

      nav {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
      }

      nav a {
        font-size: 18px;
        margin: 10px;
      }

      .sidebar-info {
        display: none;
      }

      .container {
        flex-direction: column;
        margin-top: 100px;
      }

      .content {
        margin-left: 0;
        padding: 20px;
      }

      h1 {
        font-size: 28px;
      }

      .description {
        font-size: 18px;
      }
    }

    /* ========== RESPONSIVE IMAGE RULES ========== */
    .responsive-img {
      display: block;
      margin: 0 auto;
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 768px) {
      .responsive-img {
        height: auto;
        width: 100%;
      }
    }
/* ========== IMAGE + CAPTION STYLING ========== */
.image-with-caption {
  text-align: center;     /* Center the image and its caption */
  margin: 20px 0;         /* Add vertical spacing above and below the block */
}

.image-with-caption figcaption {
  font-size: 18px;        /* Make the caption text smaller */
  color: #888;            /* Use a soft gray color for the caption */
  margin-top: 6px;        /* Add space between the image and caption */
}

