@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  cursor: default;
  background-color: white;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

button {
  padding: 0;
}

a:visited,
a:active,
a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

img {
  display: block;
}

.section__title {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
}

@media (min-width: 768px) {
  p {
    font-size: 1.25rem;
  }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  overflow: hidden;
}

.skills,
.about {
  margin-top: 10rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 4;
}

#navbar__btn {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 4;
}

.hamburgerIcon {
  width: 40px;
  height: auto;
}

#navbar__menu {
  position: fixed;
  top: -100vh;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: top 0.5s ease-in-out;
}

.navbar__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar__link {
  color: black;
  font-size: 3rem;
  font-weight: 600;
}

.navbar__list--socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#navbar__menu.open {
  top: 0;
}

@media (min-width: 768px) {
  .navbar__link {
    font-size: 6rem;
  }
}
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__title {
  font-size: 3rem;
  transition: transform 0.1s linear;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 6rem;
  }
  .cursor {
    pointer-events: none;
    position: fixed;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: transform 0.3s ease;
    z-index: 9999;
  }
  .hover__this:hover ~ .cursor {
    transform: translate(-50%, -50%) scale(6);
  }
}
.selectedwork {
  margin-top: 10rem;
}

.selectedwork__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.selectedwork__card {
  position: relative;
}

.selectedwork__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.selectedwork__btn--container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.selectedwork__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 40px;
  transition: transform 0.3s ease-in-out;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.curvedtext {
  width: 150px;
  height: 100%;
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
}

@media (min-width: 768px) {
  .selectedwork__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .selectedwork__card:hover .selectedwork__btn--container {
    opacity: 1;
    transition: all 0.3s ease-in-out;
    pointer-events: auto;
  }
  .selectedwork__card:hover .curvedtext {
    transform: rotate(48deg);
  }
  .selectedwork__card:hover .selectedwork__arrow {
    transform: translate(-50%, -50%) scale(1.2);
  }
  .selectedwork__card:hover .overlay {
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
}
.work {
  margin-top: 7rem;
}

.work__title {
  margin-bottom: 3rem;
  font-size: 3rem;
}

.work__subtitle {
  font-size: 1.5rem;
}

.work__project {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.work__data {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.work__intro,
.work__challenge,
.work__approach,
.work__outcome {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.work__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 3rem;
}

.work__details {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.work__details--links {
  border-bottom: 1px solid black;
  padding-bottom: 1rem;
}

.work__paragraph,
.work__p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.work__span {
  font-weight: 600;
  font-size: 1.25rem;
}

.work__span a {
  font-size: 1.25rem;
}

.work__details--data,
.work__details--links {
  display: flex;
  justify-content: space-between;
}

.info__span {
  font-weight: 600;
}

.approach__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  font-weight: 600;
}

.approach__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 150px;
}

.approach__card {
  border-bottom: 1px solid black;
}

.approach__header {
  font-size: 1.5rem;
}

.approach__p {
  font-size: 1rem;
}

.work__btn {
  width: 100px;
  height: 40px;
  border: 1px solid black;
  text-align: center;
}

.work__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

@media (min-width: 768px) {
  .block {
    gap: 4rem;
  }
  .work__title {
    font-size: 6rem;
  }
  .work__subtitle {
    font-size: 1.5rem;
  }
  .work__project {
    gap: 7rem;
  }
  .work__p {
    max-width: 500px;
  }
  .approach__container {
    flex-direction: row;
  }
  .approach__card {
    border-right: 1px solid black;
    border-bottom: none;
  }
  .approach__p {
    font-size: 1.25rem;
  }
  .work__intro,
  .work__challenge,
  .work__approach,
  .work__outcome {
    flex-direction: row;
    gap: 7rem;
  }
  .work__img {
    height: 700px;
  }
}
@media (min-width: 1024px) {
  .work__p {
    max-width: 800px;
  }
  .work__paragraph {
    font-size: 3rem;
  }
}
.about__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}

.about__paragraph {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .about__paragraph {
    margin: 0;
  }
  .about__container {
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  .about__container {
    max-width: 800px;
  }
  .about__paragraph {
    font-size: 3rem;
  }
  .about__btn {
    width: 150px;
  }
}
.aboutpage {
  margin-top: 7rem;
}

.aboutpage__title {
  font-size: 3rem;
}

.aboutpage__subtitle {
  font-size: 1.5rem;
}

.aboutpage__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.aboutpage__paragraph {
  font-size: 1.5rem;
  font-weight: 600;
}

.aboutpage__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.aboutpage__experience {
  margin-top: 10rem;
}

.aboutpage__experience--container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.aboutpage__experience--card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card__info {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.671);
}

@media (min-width: 768px) {
  .aboutpage__title {
    font-size: 6rem;
  }
  .aboutpage__subtitle {
    font-size: 1.5rem;
  }
  .aboutpage__experience--container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (min-width: 1024px) {
  .aboutpage__container {
    flex-direction: row;
    margin: 3rem 0;
    gap: 7rem;
  }
  .aboutpage__img {
    width: 100%;
    height: 400px;
  }
}
.accordion__container {
  margin-top: 1rem;
}

.accordion__item {
  display: flex;
  min-width: 200px;
  flex-direction: column;
  border-bottom: 1px solid black;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
}

.accordion__title {
  font-size: 1.5rem;
}

.accordion__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 100%;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  border: none;
  outline: none;
}

.accordion__icon {
  transform: rotate(-45deg);
  color: black;
  transition: color 0.3s ease;
}

.accordion__paragraph {
  padding: 0 0 1rem;
  color: rgba(0, 0, 0, 0.76);
}

.accordion__content {
  height: 0;
  overflow: hidden;
}

.accordion__icon {
  transition: transform 0.3s ease;
}

.accordion__item.active .accordion__icon {
  transform: rotate(0deg);
}

@media (min-width: 768px) {
  .accordion__container {
    margin-top: 0;
    max-width: 800px;
    margin-left: auto;
  }
}
.footer {
  width: 100%;
  background-color: black;
  color: white;
  margin-top: 4rem;
}

.footer__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 0;
  gap: 2rem;
  padding: 2rem 2rem 2rem;
}

.cursor__footer {
  pointer-events: none;
  position: fixed;
  padding: 0.3rem;
  background-color: #000000;
  border-radius: 50%;
  mix-blend-mode: difference;
  transition: transform 0.3s ease;
}

.hover__this:hover ~ .cursor__footer {
  transform: translate(-50%, -50%) scale(8);
  transition: transform 0.3s ease;
}

.footer__header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__title {
  font-size: 1.5rem;
}

.footer__list--socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.footer__copy {
  margin-top: 5rem;
  width: 100%;
  font-size: 1rem;
}

.footer__link {
  color: inherit;
}

.footer__link:visited,
.footer__link:active,
.footer__link:focus {
  color: inherit;
}

.footer__copy:hover {
  text-decoration: underline;
}

.arrow__top {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
  margin-left: auto;
}

.arrow__top--icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

@media (min-width: 768px) {
  .footer__paragraph {
    font-size: 1.25rem;
  }
  .footer__title {
    font-size: 6rem;
  }
  .arrow__top {
    width: 80px;
    height: 80px;
  }
}
.regular__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  background-color: transparent;
  padding: 0.6rem 1.25rem;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 0;
}

.regular__btn:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  transition: width 0.3s ease;
  z-index: -1;
}

.regular__btn:hover::after {
  width: 100%;
}

.footer__btn {
  width: 100%;
  border: rgb(255, 255, 255) 1px solid;
  color: white;
  margin-top: 3rem;
}

.footer__btn:after {
  background-color: #ffffff;
}

.footer__btn:hover {
  color: black;
}

.footer__arrow--icon {
  width: 20px;
  color: rgb(255, 255, 255);
}

.footer__btn:hover .footer__arrow--icon {
  color: rgb(0, 0, 0);
}

.about__btn {
  width: 150px;
  border: black 1px solid;
}

.about__arrow--icon {
  width: 20px;
  color: black;
}

.about__btn:after {
  background-color: #000000;
}

.about__btn:hover {
  color: white;
}

.about__btn:hover .about__arrow--icon {
  color: white;
}

.about__btn:hover .about__arrow--icon {
  color: white;
}

@media (min-width: 768px) {
  .footer__btn {
    width: 200px;
  }
}

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