*,
*::before,
*::after {
  box-sizing: border-box;
}

*:not(dialog) {
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

a,
a:visited,
a:active {
  text-decoration: none;
  font-family: var(--font-primary);
}

li {
  list-style-type: none;
}

#root,
#__next {
  isolation: isolate;
}

:root {
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --grey-200: hsl(0, 0%, 85%);
}

@font-face {
  font-family: "Alata";
  src: url("../assets/fonts/Alata-Regular/Alata-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  src: url("../assets/fonts/JosefinSans/JosefinSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-primary: "Josefin Sans", sans-serif;
  --font-secondary: "Alata", sans-serif;
}

.container {
  width: min(100% - 1rem, 23.4375rem);
  margin-inline: auto;
}
@media (min-width: 56.25em) {
  .container {
    width: min(100% - 1rem, 69.375rem);
  }
}

.header {
  background-image: url("../assets/images/mobile/image-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100svh;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
@media (min-width: 56.25em) {
  .header {
    min-height: 40.625rem;
    background-image: url("../assets/images/desktop/image-hero.jpg");
  }
}

.header__centered {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
@media (min-width: 56.25em) {
  .header__centered {
    align-items: flex-start;
  }
}

.header__hero {
  border: 0.1875rem solid var(--white);
  color: var(--white);
  padding: 2rem 1rem;
  max-width: 23.4375rem;
}
@media (min-width: 56.25em) {
  .header__hero {
    max-width: 50%;
    margin: auto 0;
  }
}

.header__title {
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--font-primary);
  font-size: clamp(2.625rem, 1.875rem + 2.993vw, 4rem);
  line-height: 1;
}

.footer {
  margin-top: 4.5rem;
  background-color: var(--black);
  padding: 4.5rem;
}
@media (min-width: 56.25em) {
  .footer__inner {
    display: flex;
    align-items: start;
    width: min(100% - 2rem, 69.375rem);
    margin: 0 auto;
  }
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 56.25em) {
  .footer__nav {
    align-items: start;
  }
}
.footer__items {
  padding: 2rem 0;
  text-align: center;
}
@media (min-width: 56.25em) {
  .footer__items {
    padding: 0;
    display: flex;
  }
}
.footer__items > :first-child .footer__link {
  margin: 1rem 0 0 0;
}
.footer__link {
  text-transform: none !important;
  font-size: 1rem !important;
}
@media (min-width: 56.25em) {
  .footer__link {
    margin: 1rem 0 1rem 1rem;
  }
}

.socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 56.25em) {
  .socials {
    flex-direction: column;
    justify-content: flex-end;
  }
}
.socials__rights {
  color: var(--grey-200);
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-left: auto;
  text-align: center;
}
.socials__list {
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
  gap: 2rem;
}
@media (min-width: 56.25em) {
  .socials__list {
    padding: 0 0 0rem;
    margin-left: auto;
  }
}
.socials__link {
  position: relative;
  display: inline-block;
  padding-bottom: 0.625rem;
}
.socials__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0.125rem;
  background: var(--white);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.socials__link:hover::after, .socials__link:focus::after {
  width: 100%;
}

.btn {
  cursor: pointer;
  background: transparent;
  border: none;
}
.btn__desktop {
  display: none;
}
@media (min-width: 56.25em) {
  .btn__desktop {
    display: block;
  }
}
.btn__mobile {
  width: 50%;
}
@media (min-width: 56.25em) {
  .btn__mobile {
    display: none;
  }
}

.creations__btn {
  text-transform: uppercase;
  font-family: var(--font-primary);
  padding: 0.625rem 2.5rem;
  border: 1px solid var(--black);
  margin: 2rem 0;
  letter-spacing: 3px;
  font-weight: 400;
}

.creations__btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.nav {
  width: 100%;
}
.nav__inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: block;
}
.nav__items {
  position: fixed;
  inset: 0;
  height: 100svh;
  background-color: var(--black);
  padding: 2rem 1rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
@media (min-width: 56.25em) {
  .nav__items {
    position: static;
    height: auto;
    padding: 0;
    background: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
  }
}
.nav__items--active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__item--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 1rem, 23.4375rem);
  margin: 0 auto 6.25rem;
}
@media (min-width: 56.25em) {
  .nav__item--top {
    display: none;
  }
}
.nav__item {
  width: 100%;
}
.nav__btn-open, .nav__btn-close {
  background: none;
  border: none;
}
@media (min-width: 56.25em) {
  .nav__btn-open, .nav__btn-close {
    display: none;
  }
}
.nav__link {
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--grey-200);
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
}
@media (min-width: 56.25em) {
  .nav__link {
    font-size: 1rem;
    text-transform: none;
    font-weight: 700;
    color: var(--white);
  }
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0.125rem;
  background: var(--white);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav__link:hover::after, .nav__link:focus::after {
  width: 75%;
}

.about {
  padding: 4.625rem 0;
}
@media (min-width: 56.25em) {
  .about {
    position: relative;
  }
}
.about__media {
  margin: 1rem 0;
}
.about__content {
  background-color: var(--white);
  padding: 1rem;
  text-align: center;
}
@media (min-width: 56.25em) {
  .about__content {
    position: absolute;
    bottom: 5%;
    right: -5%;
    max-width: 600px;
    text-align: start;
    padding: 4rem;
  }
}
.about__title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-size: clamp(2rem, 1.5rem + 2.177vw, 3rem);
  font-weight: 300;
  line-height: 1;
  padding: 1rem 0;
}
.about__info {
  font-family: var(--font-secondary);
  opacity: 0.5;
}

.creations {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.creations img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.creations__wrap {
  width: 100%;
  max-width: 69.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (min-width: 56.25em) {
  .creations__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.creations__title {
  font-size: clamp(2rem, 1.49rem + 2.177vw, 3rem);
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--font-primary);
}
.creations__grid {
  width: 100%;
  max-width: 69.375rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 56.25em) {
  .creations__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.creations__item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.creations__item:hover .creations__overlay {
  opacity: 0.75;
  background-color: var(--white);
}
.creations__item:hover .creations__name {
  color: var(--black);
}
.creations__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--black);
  opacity: 0.3;
  z-index: 1;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.creations__name {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 2;
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--font-primary);
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.3s ease;
}
.creations__name span {
  display: block;
}
@media (min-width: 56.25em) {
  .creations__name {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
.creations .btn__desktop {
  display: none;
}
@media (min-width: 56.25em) {
  .creations .btn__desktop {
    display: inline-block;
  }
}
.creations .btn__mobile {
  display: inline-block;
}
@media (min-width: 56.25em) {
  .creations .btn__mobile {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */