/* Global Reset and Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111111;
  color: #f4f1ec;
  font-family: "Inter", sans-serif;  
  line-height: 1.75;
}

a {
  color: #d8a657;
}

.top-nav {
  width: 100%;
  background-color: #1f1a18;
  padding: 1rem 2rem;
}

.top-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.top-nav li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease;
}

.top-nav li a:hover {
  color: #736e5a;
}

/* Content Div */
.container {
  width: 90%;
  max-width: 50%;
  margin: 3rem auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .container {
    max-width: 95%;
    margin: 2rem auto;
  }
}

.profile-photo {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 11px solid #0a0a0a;
  display: block;
  margin: 0 auto 2rem auto; /* centering */
}

.gopher {
  width: 33%;
  object-fit: cover;
  display: block;
  margin: 0 auto 2rem auto; /* centering */
}

/* Name Title */
.name-title {
  font-family: "Inter", serif;
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Section Content */
.content h2 {
  font-family: "Inter", serif;
  font-size: 2rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.content h3 {
  font-family: "Inter", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.content p {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

pre code {
  display: block;
  overflow-x: auto;
  background: #292828;
  white-space: pre;
  border-radius: 8px;
  max-width: 100%;
  min-width: 100px;
  padding: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

code {
  background: #292828;
  border-radius: 8px;
  max-width: 100%;
  padding: 5px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.code-block {
  background-color: #292828;
  border-radius: 8px;
  padding: 0.01rem 1rem;
  font-family: monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-x: auto;
  margin-bottom: 1rem;
  tab-size: 4;
  -moz-tab-size: 4;
  white-space: pre;
}

.token-keyword {
  color: #89b482;
  font-weight: bold;
  font-style: italic;
}

.token-name {
  color: #e78a4e;
}

.token-type {
  color: #a9b665;
  font-style: italic;
}

.token-comment {
  color: #928374;
}

.token-snip {
  color: #928374;
  font-weight: bold;
}

.token-symbol {
  color: #d3869b;
}

.token-rtype {
  color: #d3869b;
  font-style: italic;
  font-weight: bold;
}

.token-ctrlflow {
  color: #d3869b;
  font-weight: bold;
}

.token-function {
  color: #a9b665;
}

.token-pattern {
  color: #ea6962;
  font-style: italic;
}
