@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

:root {
  --bg: #0e1628;
  --card: #18233a;
  --text: #e6edf3;
  --accent: #2f81f7;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  text-align: center;
  line-height: 1.6;
  padding: 2rem;
}

header {
  margin-bottom: 2rem;
}

.profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 0 20px rgba(47, 129, 247, 0.4);
}

h1 {
  font-size: 2rem;
  margin-top: 1rem;
}

p.bio {
  font-size: 1rem;
  color: #aab7c4;
  max-width: 600px;
  margin: 0.5rem auto;
}

.links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem 0;
}

.links a {
  background: var(--card);
  color: var(--text);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.links a:hover {
  background: var(--accent);
  color: white;
}

.projects {
  max-width: 800px;
  margin: 0 auto;
}

.projects h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card {
  display: block;
  background: var(--card);
  border-left: 4px solid var(--accent);
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: 0.3s;
}

.project-card:hover {
  background: #22314f;
  transform: scale(1.02);
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #7d8ca3;
}
