/* ==========================================
   1. GLOBAL STYLES (Kept Original)
   ========================================== */
body {
  background-color: #1E1E1E;
  color: #FFFFFF;
  font-family: 'Geist', sans-serif;
  margin: 0;
  padding-top: 80px;
  display: flex;
  justify-content: center;
}

#container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* ==========================================
   2. SIDEBAR & NAVIGATION
   ========================================== */
#main {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
}

#main h1 {
  font-size: 3.5rem;
  letter-spacing: 12px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

#main ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

#main a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* ==========================================
   3. SUB-MENU (YEARS) - NEW
   ========================================== */
.sub-menu {
  display: none; /* Hidden by default */
  list-style: circle; /* Matches the ring bullets in your photo */
  padding-left: 20px;
  margin-top: 10px;
}

/* Show when parent is hovered OR when it has the .show class */
.has-sub:hover .sub-menu,
.sub-menu.show {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start; /* Aligns years to the left under 'blog' */
}

.sub-menu li a {
  font-size: 1rem !important;
  color: #c5a059 !important; /* Gold color from your screenshot */
  font-family: 'Geist Mono', monospace;
}

/* ==========================================
   4. DIVIDER & FOOTER
   ========================================== */
.divider {
  margin-top: 20px;
  letter-spacing: 8px;
  text-align: center;
  width: 100%;
}

.sidebar-footer {
  margin-top: 60px;
  text-align: center;
}

.sidebar-footer p {
  font-family: 'Geist Mono', monospace;
  font-size: 0.8rem;
  color: #555555;
  margin: 8px 0;
}

/* ==========================================
   5. CONTENT (Home & Blog)
   ========================================== */
#content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#image1 img {
  width: 600px;
  border: 7px solid #1D1B20;
}

.blog-post {
  margin-bottom: 80px;
  max-width: 600px;
}

.blog-post h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.blog-post .date {
  font-family: 'Geist Mono', monospace;
  color: #555555;
  margin-bottom: 20px;
}
