*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Orbitron, sans-serif;
  background:black;
  color:white;
  padding-top:80px;
}

/* BACKGROUND */
canvas{
  position:fixed;
  top:0;
  left:0;
  z-index:-2;
}

/* SECTION */
.section{
  padding:100px 8%;
  text-align:center;
  opacity:0;
  transform:translateY(50px);
  transition:1s;
}

/* TEXT */
h1{
  font-size:clamp(32px, 6vw, 60px);
  color:#00ffff;
}

h2{
  font-size:clamp(24px, 4vw, 36px);
  color:#00ffff;
  margin-bottom:30px;
}

p{
  font-size:clamp(14px, 2.5vw, 18px);
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* ABOUT */
#about p{
  max-width:600px;
  margin:auto;
  line-height:1.6;
}

/* SKILLS */
.skill{
  margin:25px auto;
  max-width:500px;
  text-align:left;
}

.bar{
  width:100%;
  height:10px;
  background:#222;
  border-radius:20px;
}

.progress{
  height:10px;
  background:#00ffff;
  border-radius:20px;
  box-shadow:0 0 10px #00ffff;
}

/* PROJECTS */
.project-container{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.card{
  width:100%;
  max-width:280px;
  padding:20px;
  background:#111;
  border-radius:15px;
  box-shadow:0 0 15px #00ffff33;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 25px #00ffff;
}

.card a{
  display:inline-block;
  margin-top:10px;
  color:#00ffff;
  text-decoration:none;
}

/* CONTACT */
.contact-form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

input,textarea{
  padding:12px;
  background:#111;
  border:1px solid #00ffff;
  color:white;
  border-radius:10px;
  font-size:14px;
}

button{
  padding:12px;
  background:#00ffff;
  border:none;
  cursor:pointer;
  border-radius:10px;
}

/* FOOTER */
footer{
  padding:20px;
  text-align:center;
  background:#111;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  z-index:100;
}

/* LOGO */
.logo{
  color:#00ffff;
  font-size:18px;
}

/* HAMBURGER (ALWAYS VISIBLE) */
.hamburger{
  display:flex;
  flex-direction:column;
  cursor:pointer;
}

.line{
  width:25px;
  height:3px;
  background:#00ffff;
  margin:4px;
}

/* MENU (HIDDEN BY DEFAULT) */
.menu{
  display:none;
  position:absolute;
  top:60px;
  right:20px;
  background:#111;
  padding:15px;
  border-radius:10px;
  width:160px;
  text-align:center;
  box-shadow:0 0 15px #00ffff33;
}

/* ACTIVE MENU */
.menu.active{
  display:block;
}

/* MENU ITEMS */
.menu li{
  list-style:none;
  margin:10px 0;
}

.menu a{
  color:white;
  text-decoration:none;
}

.menu a:hover{
  color:#00ffff;
}