@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Orbitron',sans-serif;
  background:#050816;
  color:white;
  overflow-x:hidden;
}

canvas{
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
}

.hero{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero-content{
  max-width:800px;
}

.hero h1{
  font-size:5rem;
  margin-bottom:20px;
  color:#00ffff;
}

.hero h2{
  font-size:1.5rem;
  margin-bottom:20px;
  color:#b6c2ff;
}

.hero p{
  line-height:1.8;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:14px 28px;
  background:#00ffff;
  color:black;
  text-decoration:none;
  border-radius:10px;
  font-weight:bold;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-5px);
}

.section{
  min-height:100vh;
  padding:120px 10%;
}

.section h2{
  font-size:3rem;
  margin-bottom:50px;
  color:#00ffff;
}

.card{
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:20px;
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.1);
  margin-bottom:20px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.projects{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.project-card{
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:20px;
  transition:0.3s;
}

.project-card:hover{
  transform:translateY(-10px);
  border:1px solid #00ffff;
}

.timeline{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.timeline-item{
  padding:25px;
  background:rgba(255,255,255,0.05);
  border-left:5px solid #00ffff;
  border-radius:10px;
}

#loader{
  position:fixed;
  width:100%;
  height:100%;
  background:#050816;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1000;
}

@media(max-width:768px){

  .hero h1{
    font-size:3rem;
  }

  .section{
    padding:80px 8%;
  }

}