*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#ffffff;
  color:#000000;
  font-family:Arial, Helvetica, sans-serif;
  overflow-x:hidden;
}

.noise{
  position:fixed;
  inset:0;
  opacity:0.03;
  pointer-events:none;
  background-image:
  radial-gradient(#000 1px, transparent 1px);

  background-size:20px 20px;
}

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:25px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,0.7);
  border-bottom:1px solid rgba(0,0,0,0.08);
  z-index:999;
}

.logo{
  font-size:22px;
  font-weight:900;
  letter-spacing:4px;
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  text-decoration:none;
  color:black;
  font-size:14px;
  transition:0.3s;
}

nav a:hover{
  opacity:0.5;
}

main{
  width:90%;
  max-width:1300px;
  margin:auto;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
  padding-top:120px;
  flex-wrap:wrap;
}

.hero-text{
  flex:1;
}

.tag{
  display:inline-block;
  border:1px solid black;
  padding:12px 22px;
  border-radius:999px;
  margin-bottom:35px;
  font-size:14px;
}

.hero h1{
  font-size:100px;
  line-height:0.9;
  font-weight:900;
  letter-spacing:-4px;
}

.hero h2{
  margin-top:20px;
  font-size:36px;
  font-weight:300;
}

.hero p{
  margin-top:35px;
  color:#444;
  max-width:520px;
  line-height:1.8;
  font-size:18px;
}

.buttons{
  display:flex;
  gap:20px;
  margin-top:45px;
  flex-wrap:wrap;
}

.buttons a{
  text-decoration:none;
  padding:16px 34px;
  border-radius:18px;
  font-weight:bold;
  transition:0.3s;
}

.primary{
  background:black;
  color:white;
}

.secondary{
  border:1px solid black;
  color:black;
}

.buttons a:hover{
  transform:translateY(-5px);
}

.hero-image{
  flex:1;
  position:relative;
}

.hero-image::before{
  content:'';
  position:absolute;
  inset:-20px;
  background:black;
  opacity:0.08;
  filter:blur(60px);
  border-radius:40px;
}

.hero-image img{
  position:relative;
  width:100%;
  border-radius:35px;
  object-fit:cover;
  filter:grayscale(100%);
  transition:0.6s;
}

.hero-image img:hover{
  filter:grayscale(0%);
}

section{
  padding:140px 0;
  border-top:1px solid rgba(0,0,0,0.08);
}

.section-title{
  text-transform:uppercase;
  letter-spacing:5px;
  font-size:12px;
  color:#777;
  margin-bottom:30px;
}

h3{
  font-size:70px;
  line-height:1;
  margin-bottom:40px;
}

.section-text{
  max-width:700px;
  line-height:1.8;
  color:#444;
  font-size:18px;
}

.skills{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.skills span{
  border:1px solid rgba(0,0,0,0.15);
  padding:14px 22px;
  border-radius:999px;
  transition:0.3s;
}

.skills span:hover{
  background:black;
  color:white;
}

.project-empty{
  border:2px dashed rgba(0,0,0,0.15);
  padding:100px 40px;
  border-radius:35px;
  text-align:center;
}

.project-empty h4{
  font-size:32px;
  margin-bottom:20px;
}

.project-empty p{
  color:#666;
  max-width:500px;
  margin:auto;
  line-height:1.8;
}

.center{
  justify-content:center;
}

footer{
  border-top:1px solid rgba(0,0,0,0.08);
  padding:40px;
  text-align:center;
  color:#666;
  font-size:14px;
}

@media(max-width:900px){

  .hero h1{
    font-size:70px;
  }

  h3{
    font-size:50px;
  }

  nav{
    display:none;
  }

}