@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: #e5e7eb;
  color: #1f2937;
  line-height: 1.6;
  padding: 20px;
}

header {
  background: #1f2937;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 24px;
  color: #f9faf8;
  font-weight: 900;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav a {
  font-size: 18px;
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s;
}

header nav a:hover {
  color: #f9faf8;
}

.hero {
  background: #1f2937;
  color: #f9faf8;
  text-align: center;
  padding: 100px 20px;
}

.hero .profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #3882f6;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 30px;
}

.hero .btn {
  font-size: 18px;
  background: #3882f6;
  color: #f9faf8;
  padding: 12px 24px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #2865c0;
}

.about,
.skills,
.contact {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

section h2 {
  font-size: 36px;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 20px;
}

.skill-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.skill {
  background: #f9faf8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
}

.skill h3 {
  color: #3882f6;
  margin-bottom: 10px;
}

.contact a {
  color: #3882f6;
  font-weight: 500;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.quote {
  background: #e5e7eb;
  padding: 60px 20px;
}

.quote p {
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  color: #1f2937;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

footer {
  background: #1f2937;
  color: #f9faf8;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
