@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero {
  height: 100vh;
  width: 100%;
  background: #0E272B;
  color: #fff;
  padding: 32px 72px 75px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

/* Top Bar */
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 0px;
}

.top-link a {
  font-weight: 600;
  font-size: 23px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #fff;
  text-decoration: none;
  transition: .3s linear;
  line-height: 1;
}

.top-link a:hover {
  color: #B8732E;
  transition: .3s linear;
}

.left-line {
  padding-left: 18px;
  position: relative;
}

.left-line::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #B8732E 0%, #6E4318 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);

}

/* hero Content */
.hero-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text h1 {
  font-weight: 600;
  font-size: clamp(80px, calc(5rem + ((1vw - 7.68px) * 7.4405)), 130px);


  line-height: 100%;
  letter-spacing: 0px;

}

/* Bottom */

.tagline h3 {
  font-weight: 600;
  font-size: clamp(24px, calc(1.5rem + ((1vw - 7.68px) * 0.8929)), 30px);

  line-height: 100%;
  letter-spacing: 0px;

}

.last-cont {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
}

.linkedin {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  transition: .3s linear;
}

.linkedin:hover {
  color: #B8732E;
  transition: .3s linear;
}

.linkedin span {
  font-weight: 600;
  font-size: 23px;
  line-height: 120%;
  letter-spacing: 0px;
}

.pattern-box img {
  width: 100%;
  max-width: 100%;
}



.hero-last-img {
  display: none;
}



.hero-text {
  flex: 0 0 auto;
  margin-right: 20px;
}

.text-right-left {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.6s ease;
}

.text-right-left.animate {
    opacity: 1;
    transform: translateX(0);
}


/* Responsive */

@media (max-width: 1024px) {
  .hero-last-img {
    display: block;
  }

  .pattern-box {
    display: none;
  }

  .hero-last-img {
    display: block;
    height: 240px;
    overflow: hidden;
  }

  .hero-last-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .last-cont {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {

  .last-cont {
    margin-top: 40px;
  }

  .hero {
    padding: 30px 30px 30px;
  }

  .logo img {
    max-width: clamp(120px, calc(7.5rem + ((1vw - 5.76px) * 96.875)), 306px);
  }



  .top-link a,
  .linkedin span {
    font-size: clamp(16px, calc(1rem + ((1vw - 5.76px) * 3.6458)), 23px);

  }

  .hero-text h1 {
    font-size: clamp(56px, calc(3.5rem + ((1vw - 5.76px) * 12.5)), 80px);
  }

  .tagline h3 {
    line-height: 130%;
    font-size: clamp(20px, calc(1.25rem + ((1vw - 5.76px) * 2.0833)), 24px);
  }

  .left-line {
    padding-left: 12px;
  }

  .pattern-box {
    position: absolute;
    z-index: -1;
  }

  .hero-bottom {
    position: relative;
    z-index: 2;
  }

  .linkedin-icon svg {
    width: 20px;
    height: 20px;
  }

  .linkedin {
    gap: 8px;
  }

  .hero-last-img {
    display: block;
    height: 140px;
    overflow: hidden;
  }
}

@media(max-width:480px) {
  .hero {
    padding: 30px 15px 30px;
  }

  .logo img {
    max-width: clamp(110px, calc(7.5rem + ((1vw - 5.76px) * 96.875)), 306px);
  }

  .tagline h3 {
    font-size: 18px;
  }
}