@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');

body {
  font-family: 'Courier Prime', monospace;
  background: #f8f6f1;
  color: black;
  font-size: 1.2rem;
  line-height: 1.9;
  margin: 0;
  padding: 0;
}

/* NAVIGATION BAR */
.navbar {
  background: white;
  border-bottom: 2px solid black;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-links li a:hover {
  border-color: black;
}

/* MAIN CONTENT */
.fbi-file {
  background: white;
  max-width: 1100px;
  margin: 60px auto;
  padding: 60px;
  border: 2px solid black;
  box-shadow: 5px 5px 0px #aaa;
  position: relative;
}

.mugshot {
  float: right;
  margin-left: 40px;
}

.mugshot img {
  width: 220px;
  border: 3px solid black;
  filter: grayscale(100%);
}

.line {
  margin-bottom: 22px;
  white-space: pre-wrap;
}

.line strong {
  display: inline-block;
  width: 250px;
  text-transform: uppercase;
  font-size: 1.1rem;
}

/* FOOTER */
.footer {
  font-size: 1rem;
  text-align: center;
  padding: 30px;
  border-top: 1px solid black;
  background: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* portfolio css */

/* CARD LAYOUT */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.case-card {
  background: white;
  border: 2px solid black;
  box-shadow: 5px 5px 0px #aaa;
  padding: 30px;
  width: 300px;
  font-family: 'Courier Prime', monospace;
  transition: transform 0.2s ease;
}

.case-card:hover {
  transform: scale(1.03);
}

.case-card h3 {
  margin-top: 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.case-card p {
  margin: 10px 0;
}

.case-card.placeholder {
  background: #f4f4f4;
  color: #777;
  font-style: italic;
  border-style: dashed;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

/* Contact Info */

.case-card p a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.case-card p a:hover {
  text-decoration: underline;
  color: #555;
}

.case-card p i {
  margin-right: 10px;
  vertical-align: middle;
  font-size: 1.3rem;
  color: #000;
}

.homepage {
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin: 8px 0;
}

.tagline {
  font-style: italic;
  color: #555;
  margin-bottom: 30px;
}

.hero-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cta-btn {
  background: black;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid black;
  transition: 0.3s ease;
  text-transform: uppercase;
}

.cta-btn:hover {
  background: white;
  color: black;
}

.cta-btn.secondary {
  background: white;
  color: black;
}

.quick-glance {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.glance-box {
  background: white;
  border: 2px solid black;
  box-shadow: 4px 4px 0px #aaa;
  padding: 20px;
  width: 250px;
  font-family: 'Courier Prime', monospace;
}

