@font-face {
  font-family: "MesloLGS NF";
  src: url("fonts/MesloLGS NF Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "MesloLGS NF";
  src: url("fonts/MesloLGS NF Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "MesloLGS NF";
  src: url("fonts/MesloLGS NF Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "MesloLGS NF";
  src: url("fonts/MesloLGS NF Bold Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #1E1E1E;
}

body {
  font-family: "MesloLGS NF", monospace;
  background-color: #1E1E1E;
  color: #D4D4D4;
  line-height: 1.6;
}

/* offset for anchor scroll so header doesn't overlap content */
section {
  scroll-margin-top: 20px;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 2px dotted #666;
}

#about, #hero {
    border-top: 0;
}

/* HEADER */
.terminal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #1E1E1E;
  z-index: 999;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #3f3f46;
  display: flex;
  align-items: center;
}

.terminal-header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

/* PROMPT */
.prompt {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.prompt-arrow {
  color: #4EC9B0; /* teal */
  font-weight: bold;
  text-transform: lowercase;
}
.prompt-text {
  color: #fff; /* white */
  font-weight: bold;
  text-transform: lowercase;
}
.prompt-underscore {
  color: #ff79c6; /* pink */
  font-weight: bold;
}

/* NAVIGATION */
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links a {
  font-weight: bold;
  font-size: 0.9rem;
  color: #569CD6;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #9CDCFE;
}
.link-pipe {
  color: #9CDCFE;
}

/* MAIN "CONSOLE" */
.terminal-console {
  padding: 80px 1rem 0px 1rem; /* offset for sticky header/footer */
  max-width: 1100px;
  margin: 1rem auto;
  background-color: #2D2D2D; /* lighter grey for main content area */
  border: 1px solid #3f3f46;
  border-radius: 4px;
}

h1, h2 {
  color: #569CD6;
  margin-bottom: 0.75rem;
  font-weight: bold;
  text-transform: lowercase;
}
h3 {
  color: #569CD6;
  margin-bottom: 0.75rem;
  font-weight: bold;
}

p, li, em, strong {
  color: #D4D4D4;
  margin-bottom: 0.75rem;
}
strong {
  color: #C586C0;
}
em {
  font-style: italic;
  color: #4EC9B0;
}

.terminal-console a {
    color: #D4D4D4;
}

.terminal-console ul ul {
    margin-top: 0.5rem;
}

.hero-content {
  text-align: center;
  margin-bottom: 3rem;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.tagline {
  color: #9CDCFE;
  font-weight: bold;
}
.subtagline {
  color: #4EC9B0;
  margin-bottom: 1rem;
}

/* CTA BUTTON */
.btn-cta {
  display: inline-block;
  background-color: #3f3f46;
  color: #9CDCFE;
  padding: 0.5rem 1rem;
  border: 1px solid #9CDCFE;
  border-radius: 4px;
  transition: all 0.3s;
  text-decoration: none;
  margin: 0.5rem; /* small margin to separate the two buttons */
}
.btn-cta:hover {
  background-color: #9CDCFE;
  color: #252526;
}

/* DASHED LISTS */
ul {
  list-style: none; /* remove default bullet */
  margin-left: 1rem;
  margin-bottom: 1rem;
}
ul li {
  position: relative;
  padding-left: 1rem; /* space for dash marker */
  margin-bottom: 0.5rem;
}
ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #9CDCFE;
}

/* WORK ITEMS  */
.work-item {
  margin-bottom: 1.5rem;
}

/* GOOSE - just bc ^.^  */
.goose-spacer {
  height: 240px;
}

.goose {
  display: flex;
  justify-content: center; /* Center the image horizontally */
}

.goose img {
  max-height: 200px;
  width: auto;
  transition: transform 0.3s ease;
}

.goose img:hover {
  transform: translateY(-10px); /* Moves image up slightly on hover */
}

/* FOOTER */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1E1E1E;
  color: #D4D4D4;
  border-top: 1px solid #3f3f46;
  z-index: 999;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-bottom: 0;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icons-inline a {
  margin-left: 0.5rem;
}
.social-link img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s;
}
.social-link:hover img {
  opacity: 0.7;
}
