@import url("./variables.css");
@import url("./fonts.css");
@import url("./components/nav.css");
@import url("./components/footer.css");
@keyframes modalIn {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes modalOut {
  from {
    opacity: 1;
    filter: blur(0px);
  }
  to {
    opacity: 0;
    filter: blur(6px);
  }
}
@keyframes modalBackdropIn {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.5);
  }
}
@keyframes modalBackdropOut {
  from {
    background: rgba(0, 0, 0, 0.5);
  }
  to {
    background: rgba(0, 0, 0, 0);
  }
}
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  scrollbar-color: var(--primary) var(--surface-2);
  scrollbar-width: auto;
  overflow-x: hidden;
}

body {
  width: 100vw;
  background: var(--surface-1);
  margin-top: 192px;
  padding: 0 16px;
  display: flex;
  flex-flow: column;
  align-items: center;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}
body.modal-open {
  overflow-y: hidden;
}

h1::-moz-selection, h2::-moz-selection, h3::-moz-selection, p::-moz-selection, p strong::-moz-selection, a::-moz-selection, li::-moz-selection {
  color: var(--surface-3);
  background: var(--on-surface-1);
}

h1::selection,
h2::selection,
h3::selection,
p::selection,
p strong::selection,
a::selection,
li::selection {
  color: var(--surface-3);
  background: var(--on-surface-1);
}

h1 {
  font-family: "Parisienne";
  line-height: 100%;
  font-size: 2.5rem;
  color: var(--on-surface-1);
  font-weight: normal;
}

h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 450;
  color: var(--primary);
}

h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--primary);
}

p {
  font-family: "Outfit", sans-serif;
  font-weight: 350;
  font-size: 1.25rem;
  line-height: 125%;
  color: var(--primary);
}
p strong {
  font-weight: 450;
}
p a {
  font-weight: 450;
  -webkit-text-decoration: underline wavy;
  text-decoration: underline wavy;
  text-decoration-thickness: 1.5px;
  color: var(--on-surface-2);
  transition: color 0.125s ease;
  display: inline;
}
p a:hover {
  color: rgb(119, 75, 66);
}
p a:active {
  color: rgb(105, 66, 59);
}

a {
  text-decoration: none;
}
a p {
  font-size: 1.25rem;
  font-weight: 350;
}
a.button {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  gap: 0.5rem;
  border: none;
  border-radius: 1.25rem;
  cursor: pointer;
  background: var(--on-surface-2);
  transition: background 0.2s ease;
}
a.button:hover {
  background: rgb(160, 101, 89);
}
a.button:active {
  background: var(--on-surface-2);
}
a.button p {
  color: var(--surface-1);
}

li {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 125%;
  list-style-position: inside;
}
li strong {
  font-weight: 450;
}

.photo-frame {
  width: 202px;
  background: white;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 0.5rem 2.75rem 0.5rem;
  gap: 0.5rem;
  filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.5));
}
.photo-frame img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-frame p {
  position: absolute;
  bottom: 2%;
  font-family: "Parisienne";
  font-size: 1.75rem;
  color: var(--primary);
  white-space: nowrap;
}

.line-break {
  width: 100%;
  max-width: 1100px;
  border-top: dashed 4px var(--on-surface-2);
}

img::-moz-selection {
  background: var(--on-surface-1);
}

img::selection {
  background: var(--on-surface-1);
}

.page-header {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
}
.page-header img {
  height: 5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.page-header h1 {
  text-align: center;
  color: var(--on-surface-1);
}

.modal {
  visibility: hidden;
  inset: 0;
  pointer-events: none;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 16rem 0 4rem 0;
  z-index: 700;
  overflow-y: auto;
  scrollbar-width: none;
}
.modal.show {
  pointer-events: auto;
  visibility: visible;
}
.modal.show .modal__backdrop {
  animation: modalBackdropIn 0.5s ease forwards;
}
.modal.show .modal__content {
  animation: modalIn 0.5s ease forwards;
}
.modal.closing {
  pointer-events: auto;
  visibility: visible;
}
.modal.closing .modal__backdrop {
  animation: modalBackdropOut 0.3s ease forwards;
}
.modal.closing .modal__content {
  animation: modalOut 0.3s ease forwards;
}
.modal__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  scrollbar-gutter: stable;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  z-index: 500;
}
.modal__content {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  background: var(--surface-3);
  border-radius: 2rem;
  padding: 1rem;
  gap: 2.25rem;
  width: 100%;
  max-width: 1100px;
  overflow: visible;
  z-index: 600;
}
.modal__content header {
  display: flex;
  flex-flow: column nowrap;
  border-radius: 1.5rem;
  gap: 1rem;
}
.modal__content header .title-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.75rem 1rem 1.5rem;
  border-radius: 1.5rem;
  background: var(--primary);
}
.modal__content header .title-wrapper h3 {
  color: var(--surface-1);
}
.modal__content header .title-wrapper button {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--surface-1);
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal__content header .title-wrapper button img {
  aspect-ratio: 1/1;
  height: 1.75rem;
}
.modal__content header .title-wrapper button:active {
  background: var(--on-surface-1);
}
.modal__content header .characteristics {
  display: flex;
  flex-flow: row wrap;
  gap: 0.75rem;
}
.modal__content header .characteristics p {
  color: var(--surface-1);
  background: var(--on-surface-1);
  padding: 0.5rem 1.125rem;
  border-radius: 1rem;
}
.modal__content .photo-frame {
  align-self: center;
  rotate: 5deg;
}
.modal__content > div:not(.photo-frame) {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.5rem;
}
.modal__content > div:not(.photo-frame) p {
  color: var(--primary);
}
.modal__content > div:not(.photo-frame) ul li {
  color: var(--primary);
}
.modal__content a {
  width: -moz-fit-content;
  width: fit-content;
  align-self: end;
}

@media screen and (min-width: 954px) {
  h1 {
    line-height: 100%;
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
    letter-spacing: 4px;
  }
  h3 {
    font-size: 1.75rem;
  }
  p {
    font-size: 1.5rem;
  }
  a p {
    font-size: 1.5rem;
  }
  a.button {
    padding: 0.75rem 1.25rem 0.75rem 1rem;
  }
  li {
    font-size: 1.5rem;
  }
  .photo-frame {
    padding: 1rem 0.75rem 4rem 0.75rem;
    width: 304px;
    gap: 0.5rem;
  }
  .photo-frame img {
    width: 100%;
  }
  .photo-frame p {
    font-size: 2.25rem;
  }
  .page-header {
    padding: 2rem 4rem;
  }
  .page-header img {
    height: 5.75rem;
  }
  .modal__content {
    border-radius: 2.5rem;
    padding: 2rem;
  }
  .modal__content header {
    border-radius: 1.5rem;
    gap: 1.5rem;
  }
  .modal__content header .title-wrapper {
    gap: 1rem;
    padding: 1rem 0.75rem 1rem 1.5rem;
    border-radius: 1.5rem;
  }
  .modal__content header .title-wrapper button {
    height: 100%;
    scale: 1.25;
    transform-origin: center right;
  }
  .modal__content header .title-wrapper button img {
    aspect-ratio: 1/1;
    height: 100%;
  }
}/*# sourceMappingURL=default.css.map */