body {
  margin: 0;
  background-color: #050816;
  background: url("assets/images/bg.jpg") no-repeat center/cover;
  background-attachment: fixed;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* CLOUD BASE */
.cloud {
  position: absolute;
  mix-blend-mode: screen;
  opacity: 0.9;
}

/* CLOUD POSITIONS */
.cloud1 {
  top: -15%;
  left: -15%;
  width: 1200px;
}

.cloud2 {
  bottom: -24%;
  left: -20%;
  width: 1600px;
}

.cloud3 {
  bottom: -29%;
  right: -30%;
  width: 1800px;
}

/* LOGO */
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  width: 500px;
  opacity: 1;
  transition: all 1.2s ease;
  z-index: 2;
}

/* TEXT */
.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%) scale(0.9);
  width: 500px;
  opacity: 0;
  transition: all 1.2s ease;
  z-index: 2;
}

/* BIRDS */
.bird {
  position: absolute;
  top: 30%;
  width: 170px;
  left: 110%;
  animation: flyLeft 14s linear infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes flyLeft {
  0% {
    left: 110%;
  }
  100% {
    left: -200px;
  }
}

/* SCROLL */
html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

/* ALL SECTIONS (SPACING FIX) */
.hero {
  height: 100vh;
}

.services,
.portfolio,
.contact {
  height: auto;
  min-height: auto;
  padding: 40px 0;
}

.footer {
  width: 100%;
  text-align: center;
  color: white;
  font-family: poppins;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 25px 0 35px;
  opacity: 1;
}