3️⃣ CSS (Matches the Look & Feel)
style.css

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f3ef;
  color: #111;
}

/* NAV */
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a,
.nav a:visited {
  color: #111;
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: #f4b400;
  border-radius: 50%;
}

.role {
  font-size: 0.9rem;
  color: #555;
}

.nav-right a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #111;
  font-size: 0.95rem;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* IMAGE */
.hero-image img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%);
}

/* CONTENT */
.hero-content h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 1.5rem;
}

.btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap;
  line-height: 1; 
}

.btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-decoration: none;
  color: #111;
  border: 2px solid #111;
}

.btn.resume {
  background: #f4b400;
}

.btn.projects {
  background: #f44336;
}

.btn.contact {
  background: #7fd6d3;
  padding: 0;       /* override any inherited padding */
}

/* Hover */
.btn:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}
.contact {
  padding: 4rem 2rem;
}

.contact-inner {
  max-width: 520px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #222;
  padding: 0.8rem;
  border-radius: 8px;
  font: inherit;
  background: transparent;
}

.contact-form button {
  border: 2px solid #222;
  background: #f4b400;
  font-weight: 700;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
}

/* ===== Resume page (Wix-style) ===== */
.resume-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 42px 80px;
}

.resume-title {
  margin: 70px 0 60px;
  font-size: 64px;
  letter-spacing: -1px;
}

/* Main 2-column section: left label + right list */
.resume-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

/* Left label */
.resume-section-label h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

/* Right column list */
.resume-items {
  display: grid;
  gap: 60px;
  max-width: 620px; /* keeps it narrow like the template */
}

/* Each job row: dates + content */
.resume-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
}

.resume-dates {
  font-size: 14px;
  color: #333;
  padding-top: 6px; /* aligns with title baseline */
}

.resume-details h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.resume-details p {
  margin: 0;
  line-height: 1.75;
  color: #333;
  font-size: 14.5px;
}

/* Responsive */
@media (max-width: 980px) {
  .resume-page {
    padding: 20px 18px 60px;
  }

  .resume-title {
    margin: 40px 0 30px;
    font-size: 48px;
  }

  .resume-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .resume-items {
    max-width: 100%;
    gap: 34px;
  }

  .resume-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .resume-dates {
    padding-top: 0;
    color: #555;
  }
}

.full-divider {
  border: none;
  border-top: 1px solid #d8d8d8;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  margin-top: 50px;
  margin-bottom: 50px;
}

/* ===== Projects page (Wix-style) ===== */
.projects-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 42px 90px;
}

.projects-title {
  margin: 70px 0 60px;
  font-size: 64px;
  letter-spacing: -1px;
}

/* Each project row: text left, image right */
.project-row {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 90px;
  align-items: start;

  padding: 40px 0 70px;
}

/* Left text column */
.project-text {
  max-width: 520px;
}

.project-name {
  margin: 0 0 14px;
  font-size: 26px;
}

.project-desc {
  margin: 0;
  line-height: 1.8;
  color: #333;
  font-size: 14.5px;
}

/* Right image column */
.project-media {
  display: flex;
  justify-content: flex-end;
}

.project-media img {
  width: 100%;
  max-width: 520px;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 980px) {
  .projects-page {
    padding: 20px 18px 60px;
  }

  .projects-title {
    margin: 40px 0 30px;
    font-size: 48px;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0 40px;
  }

  .project-media {
    justify-content: flex-start;
  }

  .project-media img {
    height: auto;
    aspect-ratio: 16 / 10;
    max-width: 100%;
  }
}
