@import url("https://fonts.googleapis.com/css2?family=Original+Surfer&display=swap");

/* =========================
   RESET & GLOBALS
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f4f4f4; /* Light gray background like the screenshot */
  font-family: "Courier New", Courier, monospace;
}

main {
  flex: 1;
  padding: 2rem;
}

/* =========================
   TYPOGRAPHY
========================= */

/* Use "Original Surfer" for titles and the table content */
h1,
h2,
h3,
#languages-table {
  font-family: "Original Surfer", cursive;
  text-align: center;
}

h1 {
  color: #e6a05d; /* Peach color from your screenshot title */
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  color: #333;
}

/* =========================
   PROFILE IMAGE
========================= */
#profile-image {
  display: block;
  margin: 0 auto 1rem;
  width: 80px;
  height: auto;
}

/* =========================
   LANGUAGES TABLE
========================= */
#languages-table {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Header Row */
#languages-table th {
  background-color: #9c221d; /* Deep red color from screenshot */
  color: white;
  padding: 12px;
  font-weight: normal;
  letter-spacing: 1px;
}

/* Table Cells */
#languages-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  color: #444;
  /* Specifically ensuring the font hits the language names */
  font-family: "Original Surfer", cursive;
}

/* Star rating column alignment */
#languages-table td:last-child {
  color: #f4d03f; /* Gold for stars */
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: #f7944d; /* Orange bar from screenshot */
  color: #333;
  padding: 2rem 1rem;
  text-align: center;
}

.social-links {
  margin-top: 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
  #languages-table {
    font-size: 0.9rem;
  }
}
