/* --------- GLOBAL --------- */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.button {
  padding: 10px 16px;
  background: #2563eb;
  color: white;
  border-radius: 6px;
  font-size: 14px;
}

/* --------- HEADER --------- */
header {
  background: linear-gradient(90deg, #4f46e5, #9333ea, #ec4899);
  color: white;
  padding: 50px 0;
}
header .profile {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.profile img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
}

/* --------- ABOUT --------- */
#about {
  padding: 50px 0;
}
#about ul {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  list-style: none;
}
#about li {
  background: white;
  padding: 8px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ddd;
}

/* --------- PROJECTS --------- */
#projects {
  padding: 50px 0;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.project {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.project .content {
  padding: 16px;
}
.project .tags {
  font-size: 12px;
  opacity: 0.7;
}
.project-links a {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid #2563eb;
  color: #2563eb;
  border-radius: 6px;
}

/* --------- CONTACT CTA --------- */
#contact {
  margin-top: 60px;
  padding: 30px;
  background: #2563eb;
  color: white;
  border-radius: 12px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
  color: #666;
}
