@import url("https://fonts.googleapis.com/css2?family=Bad+Script&display=swap");
@font-face {
  font-family: "titulo";
  src: url("https://files.jcink.net/uploads2/polyhymn/Stalysta_personal_use.ttf");
}
:root {
  --primary-color: rgb(237, 254, 236);
  --secondary-color: rgb(193, 212, 176);
  --tertiary-color: rgb(242, 247, 202);
  --quaternary-color: rgb(190, 208, 159);
  --accent-color: #2b2b2b;
  --color-1: 0 100% 63%;
  --color-2: 270 100% 63%;
  --color-3: 210 100% 63%;
  --color-4: 195 100% 63%;
  --color-5: 90 100% 63%;
  --decor-color: #6d6d6d;
  --subfont-color: rgb(147, 150, 153);
  --dark-color: rgb(18, 18, 18);
  --light-color: rgb(255, 248, 240);
  --decor-value: 231, 152, 136;
  --dark-rgb-value: 41, 41, 41;
  --boxshadow-dark: rgb(21, 21, 21);

  --gradient-color: linear-gradient(
    90deg,
    var(--decor-color),
    var(--accent-color)
  );
}

.shadows-into-light-two-regular {
  font-family: "Bad Script", serif;
  font-weight: 400;
  font-style: normal;
}

#featured-projects {
  background-image: linear-gradient(180deg, #161616 0%, #000000 74%);
}

body {
  background: #111111;
}

.font-asymptomatic {
  font-family: "titulo";
}

main {
  scroll-snap-type: y mandatory;
}

main > section {
  scroll-snap-align: start;
}

.section-2 {
  position: sticky;
  top: 0;
  pointer-events: none;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.section-2 {
  z-index: 5;
}

::selection {
  background-color: rgba(0, 180, 156, 0.3); /* Bluish green with low opacity */
  color: var(--light-color);
}

#fluid {
  width: 100vw;
  height: 200vh;
  position: absolute;
  margin: 0%;
  padding: 0%;
}

.profile-text1 {
  transform: scale(1.4);
  color: var(--subfont-color);
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.43, 0.01, 0.33, 1);
}

.profile-text2 {
  color: var(--subfont-color);

  opacity: 0;
  transform: translateY(50%);
  transition: opacity 0.75s cubic-bezier(0.43, 0.01, 0.33, 1),
    transform 0.75s cubic-bezier(0.43, 0.01, 0.33, 1);
}

.profile-title path {
  transition: stroke-dashoffset 0.75s cubic-bezier(0.43, 0.01, 0.33, 1);
}

.indiv-char {
  font-style: italic;
}

/*
  ======================
  === PROFILE BUTTON ANIMATIONS ===
  ======================
  */
.button.second-anim {
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 0.75s cubic-bezier(0.43, 0.01, 0.33, 1),
    transform 0.75s cubic-bezier(0.43, 0.01, 0.33, 1);
}

.hide-on-mobile {
  display: flex;
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}

.prof-btn1,
.prof-btn2 {
  background: var(--gradient-color);
  position: relative;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: 2px solid rgb(0, 0, 0);
  color: rgb(171, 242, 255);
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 1.65rem;
  pointer-events: all;
  overflow: hidden;
}

.btn-text {
  color: rgba(255, 255, 255, 0.773);
  font-weight: 400;
  text-decoration: none;
}

.btn-icon {
  font-size: 1.5rem;
  text-decoration: none;
}

.btn-text,
.btn-icon {
  position: relative;
  z-index: 2;
}

/*=== REFLECTION SHAPE ===*/

.button-reflection1,
.button-reflection2 {
  width: 8px;
  height: 120px;
  background-color: var(--decor-color);
  opacity: 0.8;
  transform: rotate(30deg);
  position: absolute;
  inset: 0;
  top: 0;
  left: -180%;
  margin: auto;
  transition: left 0.6s cubic-bezier(0.2, 0.5, 0.2, 1.2);
}

.button-reflection1::after {
  content: "";
  width: 26px;
  height: 100%;
  background-color: var(--decor-color);
  position: absolute;
  top: -1rem;
  left: 1.25rem;
}

.button-reflection2::after {
  content: "";
  width: 40px;
  height: 100%;
  background-color: var(--decor-color);
  position: absolute;
  top: -1rem;
  left: 0.8rem;
}

/*=== MOVING GEOMETRIC SHAPES === */
.button img {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  filter: invert(97%) sepia(98%) saturate(3%) hue-rotate(333deg)
    brightness(104%) contrast(100%);
  transition: transform 0.5s, opacity 0.5s;
}

.button_star-1 {
  width: 20px;
  top: -14px;
  left: -16px;
  transform: rotate(48deg);
}

.button_star-2 {
  width: 40px;
  right: -10px;
  top: -4px;
  transform: rotate(-48deg) scale(0.1);
}

.button_circle-1 {
  width: 8px;
  top: -8px;
  left: 58px;
  transform: scale(0.1);
}

.button_circle-2 {
  width: 8px;
  right: 34px;
  bottom: -8px;
  transform: scale(0.1);
}

.button_diamond {
  width: 18px;
  top: -18px;
  right: 62px;
  transform: scale(0.1);
}

.button_triangle {
  width: 30px;
  left: 15px;
  bottom: -16px;
  transform: rotate(-48deg) scale(0.1);
}

/*=== GRADIENT SHADOW ===*/
.button-shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gradient-color);
  padding: 1.25rem 3rem;
  border-radius: 4rem;
  border: 2px solid var(--dark-color);
  z-index: -1;
  transition: transform 0.3s;
}

.button:hover .button-shadow {
  transform: translate(-0.3rem, 0.3rem);
}

/*=== MOVE REFLECTION ===*/
.button:hover .button-reflection1 {
  left: 120%;
}

.button:hover .button-reflection2 {
  left: -70%;
}

/*=== GEOMETRIC SHAPES APPEAR ===*/
.button:hover {
  transform: rotate(-4deg) scale(1.1);
}

.button:active {
  transform: scale(1);
}

.button:hover img {
  opacity: 1;
}

.button:hover .button_star-1 {
  transform: scale(1.1);
  transition-delay: 0.1s;
}

.button:hover .button_star-2 {
  transform: scale(1.1);
}

.button:hover .button_circle-1 {
  transform: translateY(-8px) scale(1.1);
  transition-delay: 0.1s;
}

.button:hover .button_circle-2 {
  transform: translate(-20px, 20px) scale(1.1);
}

.button:hover .button_diamond {
  transform: translateY(7px) rotate(-24deg) scale(1.1);
}

.button:hover .button_triangle {
  transform: rotate(-12deg) scale(1.1);
}

.hidden_text {
  opacity: 0;
  filter: blur(2px);
  transform: translateX(-20%);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

#featured-projects {
}
