/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

/* === BASE STYLES === */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === GREEN SCROLLBAR === */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f9fbf9;
}
::-webkit-scrollbar-thumb {
  background: #a0b2a6;
  border-radius: 10px;
  border: 2px solid #f9fbf9;
}
::-webkit-scrollbar-thumb:hover {
  background: #114232;
}

/* === BUTTON SHINE EFFECT === */
.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-shine:hover::after {
  transform: translateX(350%) rotate(30deg);
}
