@import "https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css";
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #121212;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.code-dropper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 350vh;
  overflow: hidden;
  opacity: 0.05;
  background: url("../Assets/code_backdrop.png");
  z-index: -9999;
}

/* Header */
.header {
  margin: 0;
  background-color: #121212;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 999999;
}

.header .header-content {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.header .header-content .name {
  margin: 20px;
  margin-left: 30px;
}

.header .header-content .name .fn {
  font-size: 1.8rem;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #1EE767;
}

.header .header-content .name .ln {
  font-size: 1.8rem;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #fff;
}



.header .header-content .contact-button {
  background-color: transparent;
  padding: 5px 30px 5px 30px;
  color: #1EE767;
  border: 2px #1EE767 solid;
  border-radius: 5px;
  transition: 0.3s;
  margin: 20px;
  height: 40px;
  font-size: 1.1rem;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-right: 30px;
  text-decoration: none;
}

.header .header-content .contact-button:hover {
  background-color: #1EE767;
  color: #fff;
  cursor: pointer;
}

.header-buffer {
  margin-bottom: 100px;
}


/* About Me */
.about-me-wrapper {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.side-by-side-section {
  width: 100%;
  min-height: 60vh;
  margin-bottom: 10%;
  max-width: 1224px;
  display: flex;
  align-items: center;
  margin: auto;
}


@media screen and (max-width: 500px) {
  .side-by-side-section {
    min-height: 100vh;
  }
}

.side-by-side-section .image-container {
  width: 80%;
  height: 80%;
  display: block;
  margin: auto;
}

.side-by-side-section .image-container .image-section {
  width: 40%;
}

.side-by-side-section .image-container .image-section.right {
  float: right;
}

.side-by-side-section .image-container .image-section.left {
  float: left;
}

.side-by-side-section .image-container .image-section img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  max-width: 400px;
}

.side-by-side-section .image-container .image-section img.bounce {
  animation: bounce 3s infinite;
}

.side-by-side-section .content-container {
  width: 55%;
}

.side-by-side-section .content-container.right {
  float: right;
}

.side-by-side-section .content-container.left {
  float: left;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
    /* Adjust the bounce height as needed */
  }
}

.side-by-side-section .content-container .content-title {
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 3rem;
}

.side-by-side-section .content-container .content-subtitle {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #acacac;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-top: -30px;
}

.side-by-side-section .content-container .content-description {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


@media screen and (max-width: 768px) {
  .side-by-side-section {
    width: 100%;
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
  }

  .side-by-side-section .content-container {
    float: none;
    width: 100%;
    display: block;
    margin: auto;
  }

  .side-by-side-section .image-container .image-section {
    float: none;
    width: 100%;
    display: block;
    margin: auto;
  }

  .side-by-side-section .image-container .image-section img {
    width: 50%;
  }

  .side-by-side-section .content-container .content-title {
    text-align: center;
    font-size: 2rem;
  }

  .side-by-side-section .content-container .content-subtitle {
    text-align: center;
    font-size: 1rem;
    margin-top: -15px;
  }
}




/* Skills */
#skills-wrapper {
  max-width: 1124px;
  display: block;
  margin: auto;
}

#skills-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#skills-wrapper #skills-text-wrapper .skills-title {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  width: 100%;
  text-align: center;
  margin-top: 50px;
  font-size: 3rem;
}

#skills-wrapper #skills-text-wrapper .skills-description {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  width: 50%;
  text-align: center;
  font-size: 1rem;
  margin-top: -20px;
}

#skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2.2rem 1.4rem;
  padding: 20px;
  margin-bottom: 20px;
}

@media(max-width: 900px) {
  #skills {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

.skills__card {
  background-color: var(--color-background-elevated);
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  height: 180px;
  justify-content: center;
  align-items: center;
}

.skills__card__image {
  height: 100px;
  width: 100px;
  object-fit: contain;
  opacity: 1;
}

@media(max-width: 900px) {
  .skills__card__image {
    height: 60px;
    width: 60px;
  }
}

.skills__card__title {
  width: 100%;
  text-align: center;
  padding: 0.6rem;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}



/* Project */
.project-cards-wrapper {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  width: 100%;
  padding: 1rem;
  margin-top: 15vh;
  margin-bottom: 15vh;
}

.project-cards-wrapper #project-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.project-cards-wrapper #project-text-wrapper .project-title {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  width: 100%;
  text-align: center;
  margin-top: 50px;
  font-size: 2.8rem;
}

.project-cards-wrapper #project-text-wrapper .project-description {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  width: 50%;
  text-align: center;
  font-size: 1rem;
  margin-top: -20px;
}

.project-cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.disabled {
  opacity: 0.4;
  cursor: default;
}

.project-cards__item {
  display: flex;
  padding: 1rem;
  color: rgb(57, 57, 57);
}

@media (max-width: 40rem) {
  .project-cards__item {
    width: 100%;
  }
}

@media (min-width: 40rem) {
  .project-cards__item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .project-cards__item {
    width: 33.3333%;
  }
}

.project-card {
  background-color: #1d1d1d;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.project-card:hover .project-card__image {
  filter: contrast(100%);
}

.project-card__content {
  text-align: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.project-card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: contrast(70%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}


.project-card__image .project-card__tag {
  background-color: #555458;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  padding: 10px 20px 10px 20px;
  border-radius: 50px;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
}

.project-card__image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

@media (min-width: 40rem) {
  .project-card__image::before {
    padding-top: 66.6%;
  }
}

.project-card__title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.project-card_text {
  flex: 1 1 auto;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  margin-top: 6px;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.project-card__btn {
  width: 140px;
  display: block;
  margin: auto;
  cursor: pointer;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background-color: #25d366;
  border: none;
  transition: 0.4s;
}

.project-card__btn:hover {
  opacity: 0.7;
}


.project-card_set_title {
  padding-left: 20px;
  padding-top: 40px;
  text-align: left;
}


/* Contact Me */
.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 15vh;
}

.contact-wrapper .contact-title {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  width: 100%;
  text-align: center;
  margin-top: 50px;
  font-size: 2.8rem;
}

.contact-wrapper .contact-description {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  width: 50%;
  text-align: center;
  font-size: 1rem;
  margin-top: -20px;
}

.contact-wrapper .contact__socials {
  display: flex;
  gap: 2rem;
  margin-top: 15px;
}

.contact__social__item {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  background: #405de6;
  box-shadow: 0px 7px 30px rgba(43, 98, 169, 0.5);
  transition: all 0.3s;

}

.contact__social__item i {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;

}

@media screen and (min-width: 768px) {
  .contact__social__item:hover {
    transform: scale(1.5);
    color: #fff;
  }
}

.contact__social__item.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  box-shadow: 0px 4px 30px rgba(120, 64, 190, 0.6);
}


.contact__social__item.mail {
  background: linear-gradient(45deg, #25d366, #25d366);
  box-shadow: 0px 4px 30px #25d366;
}

.contact__social__item.linkedin {
  background: linear-gradient(45deg, #0260db, #0260db);
  box-shadow: 0px 4px 30px #0260db;
}

.contact__social__item.phone {
  background: linear-gradient(45deg, #d5135a, #f05924);
  box-shadow: 0px 4px 30px rgba(223, 45, 70, 0.6);
}