/* =============================================
   HEADER: MONOCHROME & TYPOGRAPHIC
   (Matches other Monochrome models)
   ============================================= */

/* Main header container */
#header {
  background-color: #fff; /* A clean white, sticky background */
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #eee; /* Subtle separator line */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Flex container for logo and navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; /* Or your site's max-width */
  margin: 0 auto;
}

/* The logo text */
.logo {
  font-family: 'Inconsolata', monospace; /* Consistent strong font */
  font-size: 1.6rem;
  font-weight: 700;
  color: #111; /* Main dark color */
  text-decoration: none;
}

/* The part of the logo that was previously colored */
.logo span {
  color: #999; /* A mid-grey for subtle contrast without color */
  font-weight: 400; /* Lighter weight can also create contrast */
}

/* --- Navigation Menu --- */

.nav-menu .nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 2.5rem;
}

.nav-link {
  font-family: 'Inconsolata', monospace; /* A clean, readable font for links */
  color: #333;
  font-weight: 500;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover effect for links */
.nav-link:hover {
    color: #111; /* Darken the text color on hover */
}


/* The underline effect on hover */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #111; /* Main dark color for the underline */
  transition: width 0.3s ease-out;
}

.nav-link:hover::after {
  width: 100%;
}


/* --- Hamburger Icon for Mobile --- */

.hamburger {
  display: none; /* This will be overridden in your responsive CSS */
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #111; /* Main dark color for the bars */
  margin: 4px 0;
  transition: 0.3s;
}