body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #ffe4e9;
  color: #333;
}

@media (max-width: 768px) {
  .project-card {
    flex-direction: column;
  }

  .project-card img {
    width: 100%;
    height: 180px;
  }
}

/* HEADER */
header {
  text-align: center;
  padding: 3rem 1rem;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  color: #777;
}

.links a {
  margin: 0 10px;
  text-decoration: none;
  color: #ff8fab;
  font-weight: 500;
}

/* GRID LAYOUT */
.layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
}

/* LEFT SIDE */
.left {
  position: sticky;
  top: 20px;
  align-self: start;
}

/* CARDS */
.card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* PROFILE CARD */
.profile-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.project-card img {
  width: 150px;
  height: 100%;
  object-fit: cover;
  display: block;
}

.role {
  color: #777;
  margin-bottom: 1rem;
}

.bio {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* SOCIAL LINKS */
.socials a {
  display: inline-block;
  margin: 5px;
  text-decoration: none;
  color: #ff8fab;
  font-weight: 500;
}

/* RESUME BUTTON */
.resume-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 16px;
  background: #ff8fab;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* RIGHT SIDE */
.right {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* PROJECTS */
.project {
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid #ff8fab;
}

.project a {
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: none;
  color: #ff8fab;
  font-weight: 500;
}

/* SKILLS */
.skill {
  margin-bottom: 1rem;
}

.skill span {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: #ff8fab;
}

.fill.html { width: 87%; }
.fill.css { width: 70%; }
.fill.responsive { width: 77%; }
.fill.js { width: 40%; }

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .left {
    position: static;
  }
}

@media (max-width: 768px) {
  .project-card img {
    width: 100%;
    height: 180px;
  }
}