* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #0f0f0f;
  color: white;
}


.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top, #222, #000);
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -2px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-top: 10px;
}

.scroll {
  position: absolute;
  bottom: 30px;
  font-size: 0.9rem;
  opacity: 0.5;
}


section {
  padding: 120px 10vw;
}

.about p {
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.6;
}


.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.project:hover .overlay {
  opacity: 1;
}


.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.contact {
  text-align: center;
  font-size: 1.3rem;
  margin-top:2vh ;
}

.logo{
  width: 25%;
  margin-top: 2vh;
}

.disclaimer{
  color: #383838;
}


body {
  cursor: none;
}

.cursor {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}


.project:hover ~ .cursor-follower {
  transform: scale(1.6);
}
