/* === General === */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lucida Console", Monaco, monospace;
  background-color: #121212;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.7;
  font-size: 15px;
}

/* === Header === */
header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  letter-spacing: 1px;
}

header p {
  font-size: 0.95rem;
  color: #b0b0b0;
}

header .photo {
  max-width: 140px;
  border-radius: 50%;
  margin-top: 15px;
  border: 2px solid #444;
}

/* === Navigation Bar === */
nav {
  background-color: #1a1a1a;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

nav ul {
  display: flex;
  justify-content: center;   /* centers the list horizontally */
  gap: 20px;                 /* spacing between items */
  list-style: none;          /* removes bullet points */
  margin: 0;
  padding: 0;
}

nav li {
  display: inline;
}

nav a {
  color: #e6e6e6;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}


/* Stack vertically only on small screens (optional) */
@media (max-width: 500px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* === Sections === */
section {
  margin-bottom: 40px;
}

section h2 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
  letter-spacing: 0.5px;
}

section p, section li {
  color: #e0e0e0;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li::before {
  content: "• ";
  color: #80b3ff;
}

/* === Links === */
a {
  color: #e6e6e6;           /* soft white */
  text-decoration: none;   /* remove underline if you prefer */
}

a:hover {
  color: #ffffff;          /* bright white on hover */
  text-decoration: underline;
}


/* === Footer === */
footer {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 10px;
  letter-spacing: 0.5px;
}

/* === Responsive tweaks === */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  nav a {
    display: inline-block;
    margin: 6px;
  }
}




