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

img.header {
  width: 700px;
  height: 100px;
  object-fit: cover;
  object-position: 0 -100px;
}

/* Body with terminal vibe */
body {
  background-color: #000000;
  color: #33ff33; /* classic bright green */
  font-family: 'Courier New', Courier, monospace;
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
  line-height: 1.4;
  user-select: none;
}

/* Make links look like terminal commands */
a {
  color: #33ff33;
  text-decoration: underline;
  cursor: pointer;
}

a:hover {
  color: #66ff66;
}

/* Headings */
h1, h2 {
  font-weight: normal;
  margin: 1.5rem 0 1rem 0;
  border-bottom: 1px solid #33ff33;
  padding-bottom: 0.3rem;
}

/* Lists */
ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style-type: none;
}

ul li::before {
  content: "» ";
  color: #33ff33;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

input, textarea, button {
  background-color: #000;
  border: 1px solid #33ff33;
  color: #33ff33;
  font-family: monospace;
  font-size: 1rem;
  padding: 0.5rem;
  width: 100%;
  caret-color: #33ff33;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #66ff66;
  box-shadow: 0 0 5px #66ff66;
}

/* Button with terminal flair */
button {
  cursor: pointer;
  border: 1px solid #33ff33;
  background-color: #000;
  color: #33ff33;
  font-weight: bold;
  transition: background-color 0.2s ease, color 0.2s ease;
}

button:hover {
  background-color: #33ff33;
  color: #000;
}

/* Status messages */
.status.success {
  color: #66ff66;
  margin-top: 1rem;
}

.status.error, .status.fail {
  color: #ff3333;
  margin-top: 1rem;
}

/* Blinking cursor effect */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.blinking-cursor::after {
  content: "_";
  animation: blink 1s infinite;
  margin-left: 0.1em;
}

/* Add some spacing for paragraphs */
p {
  margin-bottom: 1rem;
  white-space: pre-line;
}
/* Project list styling */
.project-list {
  margin-top: 2rem;
}

.project {
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #33ff33;
}

.project:last-child {
  border-bottom: none;
}

.project-name {
  color: #66ff66;
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.project-name::before {
  content: "» ";
  color: #33ff33;
}

.project-desc {
  margin: 0.5rem 0;
  color: #cccccc;
}

.project-tech {
  color: #888888;
  font-size: 0.9rem;
  font-style: italic;
  display: block;
  margin: 0.5rem 0;
}

.project a {
  color: #33ff33;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: inline-block;
}
