:root {
  --pink: #ec4899;
  --purple: #a855f7;
  --dark: #2b0a3d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fdeef8;
  color: var(--dark);
  overflow-x: hidden;
  font-size: 18px;
}

/* BACKGROUND SHAPES */
.bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
}

.shape1 {
  background: #f472b6;
  top: -100px;
  left: -100px;
}

.shape2 {
  background: #c084fc;
  bottom: -100px;
  right: -100px;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

nav h2 {
  color: #fff;
  font-size: 2rem;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

/* SECTIONS */
section {
  padding: 120px 10%;
  min-height: 100vh;
}

section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* HERO */
.hero {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.profile-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 5px solid var(--pink);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 5rem;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  color: transparent;
}

.hero h3 {
  margin: 10px 0;
  font-weight: 500;
  font-size: 2rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.resume-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.1rem;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-card a {
  color: var(--pink);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* SKILLS */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.skill {
  padding: 20px 15px;
  text-align: center;
  background: linear-gradient(135deg, #fbcfe8, #e9d5ff);
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* PROJECTS */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  section {
    padding: 110px 7%;
  }
}
