:root {
  --text: #111;
  --muted: #666;
  --border: #e8e3da;
  --accent: #b89b63;
  --bg: #ffffff;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}

/* =========================
   HEADER
========================= */

.simple-header {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.simple-header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 14px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.nav a {
  margin-left: 18px;
  text-decoration: none;
  color: var(--muted);
  transition: 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

/* =========================
   MAIN
========================= */

.profile-container {
  max-width: 900px;
  margin: auto;
  padding: 60px 24px;
}

/* =========================
   HERO
========================= */

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}

.profile-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid #f7f5ef;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.badge {
  display: inline-block;
  background: #f7f5ef;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 650px;
}

.links {
  margin-top: 24px;
}

.links a {
  color: var(--accent);
  text-decoration: none;
  margin-right: 20px;
  font-weight: 600;
}

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

/* =========================
   SECTIONS
========================= */

.section {
  margin-bottom: 60px;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.timeline-item {
  margin-bottom: 24px;
}

.timeline-item h3 {
  margin-bottom: 4px;
}

.timeline-item p {
  color: var(--muted);
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 10px;
}

.project-list {
  padding-left: 20px;
}

.project-list li {
  margin-bottom: 10px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills span {
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* =========================
   FOOTER
========================= */

.simple-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 30px;
  color: var(--muted);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .profile-container {
    padding: 40px 20px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .profile-photo {
    width: 140px;
    height: 140px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .nav a {
    margin-left: 10px;
  }
}
