@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: #f4f7fa;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header */
.hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.profile-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0070f3;
}

h1 {
  font-size: 2rem;
  margin: 1rem 0 0.3rem;
}

.tagline {
  color: #555;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Sections */
section {
  max-width: 800px;
  margin: 2.5rem auto;
  padding: 0 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h2 {
  color: #111;
  border-left: 4px solid #0070f3;
  padding-left: 8px;
  margin-bottom: 1rem;
}

/* Skills */
.skills ul {
  list-style: none;
  padding: 0;
}

.skills li {
  display: inline-block;
  margin: 0.3rem;
  background: #0070f3;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  font-size: 0.95rem;
}

/* Contact */
.contact {
  text-align: center;
  padding-bottom: 1.5rem;
}

a {
  color: #0070f3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #ffffff;
  color: #666;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
}
