*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{ line-height:1.6; }

/* COLORS */
.hero{ background:#FFD8DF; }
.about{ background:#F0FFDF; }
.skills{ background:#FFD8DF; }
.projects{ background:#A8DF8E; }
.value{ background:#F0FFDF; }
.contact{ background:#FFAAB8; }

/* NAV */
nav{
  position:fixed;
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:15px 8%;
  background:#0f172a;
  color:white;
  z-index:1000;
}

.nav-links a{
  margin:0 12px;
  color:white;
  text-decoration:none;
}

.nav-icons a{
  margin-left:10px;
  font-size:18px;
  transition:0.3s;
}

.nav-icons a:hover{
  color:#FF3E9B;
  transform:scale(1.2);
}

/* LAYOUT */
.section{ padding:100px 20px; }
.container{ max-width:1100px; margin:auto; }
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

/* TEXT */
.center{ text-align:center; }
h1{ font-size:3rem; }
.subtitle{ color:#FF3E9B; }
.desc{ color:#555; }

/* BUTTON */
button{
  margin-top:20px;
  padding:12px 25px;
  background:#FF3E9B;
  color:white;
  border:none;
  border-radius:30px;
}

/* IMAGE */
.image img{
  width:260px;
  border-radius:20px;
}

/* CARDS */
.cards{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:20px;
}

.card{
  padding:20px;
  background:white;
  border-radius:15px;
  transition:0.3s;
}

.card:hover{
  transform:scale(1.1) translateY(-5px);
}

/* PROJECT */
.project-grid{
  display:grid;
  gap:25px;
  margin-top:40px;
}

.project-card{
  background:white;
  padding:25px;
  border-radius:15px;
  transition:0.3s;
}

.project-card .full{
  opacity:0;
  max-height:0;
  transition:0.4s;
}

.project-card:hover .full{
  opacity:1;
  max-height:200px;
}

.project-card:hover{
  transform:translateY(-10px);
}

/* CURSOR */
.cursor-glow{
  position:fixed;
  width:200px;
  height:200px;
  background:radial-gradient(circle, rgba(255,62,155,0.3), transparent);
  pointer-events:none;
  border-radius:50%;
}

/* ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px){
  .grid-2{
    grid-template-columns:1fr;
    text-align:center;
  }
}