@charset "UTF-8";
/*------------IMPORTS-----------*/
/*------------FONTS-----------*/
@font-face {
  font-family: "Source Code Pro";
  src: url("../fonts/Source_Code_Pro/SourceCodePro-VariableFont_wght.ttf") format("TrueType");
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_wght.ttf") format("TrueType");
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Medium.ttf");
}
/*------------GENERAl-----------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #fbfbfb;
}

body, html {
  padding: 0;
  margin: 0;
}

body {
  min-height: fit-content;
  display: flex;
  flex-direction: column;
}
body > * {
  flex-shrink: 0;
}

nav *, .darkreader-button {
  user-select: none;
}

.opacity-hover:hover {
  opacity: 0.8;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
           supported by Chrome, Edge, Opera and Firefox */
}

.animate {
  animation-duration: 0.5s;
  animation-name: animate-fade;
  animation-delay: 0.5s;
  animation-fill-mode: backwards;
}

.animate.pop {
  animation-name: animate-pop;
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
}

.delay {
  animation-delay: 0.6s;
}

*::before, *::after {
  position: absolute;
}

body.background-fill-light {
  background-color: #fbfbfb;
  transition: background-color 0.5s ease-in-out;
}

body.background-fill-dark {
  background-color: #1B1F24;
  transition: background-color 0.5s ease-in-out;
}

.darkreader-button {
  position: fixed;
  bottom: 64px;
  right: 32px;
  z-index: 300 !important;
  background-color: #fff;
  border: 1px solid rgba(77, 77, 76, 0.05);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.darkreader-button::after {
  content: "🌓";
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 20px;
  height: fit-content;
  width: fit-content;
  transform: translate(-50%, -50%);
}
.darkreader-button::before {
  content: "BETA";
  position: absolute;
  right: -5px;
  top: -5px;
  font-size: 10px;
  height: fit-content;
  width: fit-content;
  transform: rotate(5deg);
  color: #fff;
  background-color: #da0000;
  padding: 2px 4px;
}
.darkreader-button:hover {
  background-color: rgba(217, 217, 217, 0.48);
}
.darkreader-button[aria-checked=true] {
  animation: backgroundFillLight 0.3s ease 0s both;
  z-index: 100;
  background-color: #da0000 !important;
}
.darkreader-button[aria-checked=true]:hover {
  background-color: #100f2c !important;
}
.darkreader-button[aria-checked=false] {
  animation: backgroundFillDark 0.3s ease 0s both;
  background-color: #100f2c !important;
}
.darkreader-button[aria-checked=false]:hover {
  background-color: #da0000 !important;
}

button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.bts-description__content {
  font-family: "Inter", serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 2rem;
  color: #4D4D4C;
  width: 65%;
  margin-bottom: 10vh;
}

.important {
  font-weight: 700;
  color: #803378;
  background-color: lightyellow;
}

/*------------NAV-----------*/
header {
  font-family: "Source Code Pro", serif;
  color: #C82829;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 30px;
  z-index: 200 !important;
}
header nav {
  background-color: #fbfbfb;
}

nav {
  z-index: 10;
}
nav.scroll-animate {
  transition: top 0.3s;
}

header nav > div > span {
  background: rgba(217, 217, 217, 0.48);
}
header nav > div > span:hover {
  cursor: pointer;
}

.menu-unfold {
  position: absolute;
  top: 4rem;
  right: -100%;
  width: 30rem;
  min-width: fit-content;
  height: fit-content;
  border: 1px solid rgba(77, 77, 77, 0.26);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px 0 0 10px;
  background-color: #fbfbfb;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
}
.menu-unfold ul {
  gap: 1.5rem;
}
.menu-unfold ul, .menu-unfold ul ul * {
  display: flex;
  justify-content: center;
  align-content: center;
}
.menu-unfold ul li {
  position: relative;
  list-style: none;
}
.menu-unfold ul li a {
  color: #4D4D4C;
}
.menu-unfold ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 25%;
  width: 1px;
  height: 50%;
  background-color: #4D4D4C;
}

.menu-unfold-true {
  animation: 0.5s slide-right;
  right: 0 !important;
}

.nav-element:hover {
  position: relative;
  cursor: pointer;
}
.nav-element:hover::after {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 0;
  width: calc(100% + 1rem);
  height: 100%;
  background-color: #718c00;
  opacity: 0.1;
  border-radius: 5px;
}
.nav-element:hover a {
  position: relative;
  z-index: 20;
}

/*------------MAIN-----------*/
main {
  padding-top: 2.5rem;
}

.home-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 2rem;
}
.home-section h1 {
  font-size: clamp(20px, 3vw, 40px);
}
.home-section h2 {
  font-size: clamp(16px, 2vw, 24px);
}

.shadow-section {
  border-bottom: 1.5px solid rgba(177, 177, 177, 0.1);
  box-shadow: 10px 0 20px rgba(169, 169, 169, 0.26);
}

.code-gray {
  color: #4D4D4C;
}

.code-green {
  color: #718C00;
}

/*------------PROJECT CARDS RENDER-----------*/
.cards__main-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: fit-content;
  min-height: 700px;
  width: 90%;
  perspective: 40px;
}
.cards__main-container .card__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: clamp(360px, 60vh, 460px);
  width: clamp(315px, 20vw, 350px);
  box-shadow: 0 0 10px 1px #9d9d9d;
  border-radius: 10px;
  transition: transform 0.2s;
  background-color: #fbfbfb;
}
.cards__main-container .card__container:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px 3px #803378;
  transition: ease-in 0.15s;
}
.cards__main-container .card__container .card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cards__main-container .card__container .card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65%;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px 10px 0 0;
}
.cards__main-container .card__container .card__body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 35%;
  margin: 1rem 0;
  padding-bottom: 1rem;
}
.cards__main-container .card__container .card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: fit-content;
  border-bottom: 1px solid #E5E5E5;
  padding: 0 1rem;
}
.cards__main-container .card__container .card__text {
  margin: 0 1rem;
}

/*------------FOOTER-----------*/
footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: fit-content;
  z-index: 200 !important;
  background-color: #fbfbfb;
}
footer nav {
  position: relative !important;
  width: 100%;
  min-height: fit-content;
  display: flex;
  padding: 0 !important;
}
footer nav ul {
  display: flex;
  justify-content: space-around;
  border: 0.5px solid #4D4D4C;
  list-style: none;
  width: 100%;
  padding: 0;
}
footer nav ul li {
  flex-grow: 1;
  font-family: "Inter", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0.5px solid #4D4D4C;
  list-style: none;
  padding: 0.5rem;
}
footer nav ul li a {
  position: relative;
  color: #4D4D4C;
  text-decoration: none;
  z-index: 20;
}
footer nav ul li:hover {
  position: relative;
  box-shadow: #4D4D4C 1px 1px 2px;
}
footer nav ul li:hover::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 10%;
  width: 80%;
  height: 80%;
  background-color: #718c00;
  opacity: 0.1;
  border-radius: 5px;
}
footer div {
  min-height: 10rem;
  display: flex;
  justify-content: space-between;
  padding-inline: 2rem;
  width: 100%;
}
footer .footer__more {
  display: flex;
}
footer .footer__more section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .footer__more section .footer__section__title {
  font-family: "Inter", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: #4D4D4C;
  margin: 0;
  padding: 0;
  text-decoration: underline;
}
footer .footer__more section a {
  font-family: "Inter", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #a0a0ff;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
footer .footer__more section .footer__section__content {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
footer .footer__more section .footer__section__content .footer__section__illustration {
  width: 1.5rem;
  height: 1.5rem;
}

/*------------RESPONSIVE-----------*/
@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    min-height: -webkit-fill-available;
  }
}
@media screen and (max-width: 740px) {
  footer nav ul {
    flex-direction: column;
  }
  .menu-unfold {
    width: 80%;
    min-height: fit-content;
  }
  .menu-unfold ul {
    flex-direction: column;
    width: 90%;
    min-height: fit-content;
    padding: 0;
  }
  .menu-unfold ul li {
    padding: 0 0 0 1rem;
    height: fit-content;
    width: 100%;
  }
  .menu-unfold ul li a {
    padding: 0.2rem 1rem 0.2rem 1.5rem;
    width: 100%;
  }
  .menu-unfold ul li:not(:first-child)::before {
    content: none;
  }
  .cards__main-container {
    width: 100%;
  }
  .cards__main-container .card__container {
    width: 98%;
  }
  .cards__main-container .card__container:hover {
    transform: scale(1);
    box-shadow: 0 0 10px 1px #9d9d9d;
    transition: ease-in 0.15s;
  }
  .footer__more {
    flex-direction: column;
  }
  .footer__more section {
    width: 100%;
    margin: 1rem;
  }
  .footer__more section .footer__section__content {
    justify-content: flex-start !important;
  }
}
/*------------ANIMATIONS-----------*/
@keyframes animate-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animate-pop {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-left {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .darkreader-button {
    display: none !important;
  }
}
nav {
  position: fixed;
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  padding: 1rem;
}
nav > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
nav > div > div:first-child {
  gap: 3rem;
}
nav > div > div:first-child a {
  color: #4D4D4C;
  text-decoration: none;
  min-width: fit-content;
}
nav > div > div:first-child a.long {
  display: flex;
}
nav > div > div:first-child a.short {
  display: none;
}
nav > div > * {
  display: flex;
  align-items: center;
}
nav > div #portfolio-head-icon {
  width: 3rem;
  height: 3rem;
}
nav > div #portfolio-head-icon img {
  height: 100%;
}

/*------------RESPONSIVE-----------*/
@media screen and (max-width: 740px) {
  nav > div > div {
    gap: 1rem !important;
  }
}
@media screen and (max-width: 555px) {
  nav > div > div a.long {
    display: none !important;
  }
  nav > div > div a.short {
    display: flex !important;
  }
}
@media screen and (max-width: 350px) {
  nav > div > div a.short {
    display: none !important;
  }
}
/*------------GENERAL-----------*/
main {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: "Roboto", serif;
  font-style: normal;
  margin-top: 3rem;
  height: 100%;
}

* {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
           supported by Chrome and Opera */
}

h1 {
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 700;
  line-height: 41px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #4D4D4C;
  z-index: 10;
}

/*------------CONTACT-----------*/
#contact__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
  height: 100%;
  margin: 10vh 0 50vh 0;
  gap: 1rem;
  z-index: 10;
}
#contact__form #contact__form__status-message {
  color: #ff4545;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
}
#contact__form #contact__form__status-message.hidden {
  color: transparent;
}
#contact__form .form__label {
  width: 100%;
}
#contact__form .form__label .form__input {
  width: 100%;
  height: 2rem;
  border: 1px solid #4D4D4C;
  font-family: "Inter", serif;
  border-radius: 5px;
  padding: 0.5rem;
  font-size: 1rem;
  transition: ease-in 0.2s;
  box-shadow: 0 0 15px 3px #bdbdbd;
}
#contact__form .form__label .form__input:focus {
  outline: none;
  box-shadow: 0 0 10px 4px rgba(128, 51, 120, 0.24), 0 0 5px 2px rgba(128, 51, 120, 0.47), 0 0 2px 1px rgba(128, 51, 120, 0.69);
}
#contact__form .form__label .form__input.form_textarea {
  height: 10rem;
}
#contact__form .message__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: transparent;
}
#contact__form .message__container #message__char-count {
  font-size: 0.8rem;
  color: #4D4D4C;
  margin: 0.5rem 0 0.2rem 0;
}
#contact__form .message__container .form_textarea {
  resize: none;
}
#contact__form #form__submit {
  width: clamp(100px, 20vw, 200px);
  height: 2rem;
  border: 0;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  color: #4D4D4C;
  transition: ease-in 0.2s;
  background: #fbfbfb;
  box-shadow: 0 0 25px 1px #d5d5d5;
  cursor: pointer;
}
#contact__form #form__submit:hover {
  background: #852b7d;
  color: #fbfbfb;
}
#contact__form #form__submit[disabled] {
  background: #d5d5d5;
  color: #4D4D4C;
  cursor: not-allowed;
}
#contact__form #form__submit[disabled]:hover {
  background: #d5d5d5;
  color: #4D4D4C;
}

.status-bad {
  box-shadow: 0 0 10px 4px rgba(255, 0, 0, 0.24), 0 0 5px 2px rgba(220, 0, 0, 0.47), 0 0 2px 1px rgba(189, 0, 0, 0.69) !important;
  animation: shake 0.5s;
}

.status-good {
  color: #5bd585 !important;
}

/*------------ANIMATIONS-----------*/
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
#particles-js {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}

/*# sourceMappingURL=contact-style.css.map */
