@charset "UTF-8";
/* stylelint-disable scss/no-global-function-names */
:root {
  --scale-2: 0.7rem; /* 0.7rem ÷ 1.5 */
  --scale-1: 1rem; /* 1rem ÷ 1.5   */
  --scale0: 1.125rem; /* body text  at 18px */
  --scale1: 1.3125rem; /* body text  at 21px */
  --scale2: 1.5rem; /* 1rem × 1.5   */
  --scale3: 2.25rem; /* 1.5rem × 1.5 */
}

body {
  font-family: Fraunces, serif;
  font-weight: 350;
  font-size: 1.125rem;
  color: var(--root-light);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

p,
li {
  font-weight: 350;
}

.p {
  font-weight: 350;
}

p {
  margin-top: 0;
}
p:not(:first-of-type) {
  padding-top: 0.5rem;
}

a {
  color: currentcolor;
}
a:not(.decorated) {
  text-decoration: none;
}

b,
strong {
  font-weight: 600;
}

h1,
.h1,
h2,
.h2 {
  font-family: Fraunces, serif;
  font-variation-settings: "wgth" 500;
  margin-bottom: 18px;
  margin-top: 0;
}

h1,
.h1 {
  font-size: calc(1.307rem + 0.684vw);
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 1.82rem;
  }
}
h1.page,
.h1.page {
  letter-spacing: 0.01em; /*  TODO: Not optimal... */
}

h2,
.h2 {
  font-size: calc(1.25625rem + 0.075vw);
  line-height: 1.25;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 1.3125rem;
  }
}

h3 {
  line-height: 1.25;
}

li:not(.menu-bar-item) {
  padding-left: 0;
  list-style-position: outside;
  list-style-type: disc;
}

.block-type-markdown h2 {
  padding: 2rem 0 1rem;
}
.block-type-markdown ul > * + * {
  padding-top: 1rem;
}

.button {
  padding: 0.2em 0.5em;
  border: 1px solid var(--root-light);
  border-radius: 8px;
  transition: all 0.4s ease;
}
.button:hover {
  color: var(--root-dark);
  background-color: var(--root-light);
}

@keyframes show-top-text {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes show-bottom-text {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.animated-title {
  visibility: hidden;
  position: relative;
}
.animated-title .animated-title-sep {
  visibility: visible;
  margin-top: -20px;
  margin-bottom: 5px;
  width: 100%;
  height: 5px;
  background-color: hsl(var(--root-light-hsl));
  opacity: 0%;
  transition: opacity 2s linear;
  transition-delay: 1s;
}
.animated-title .word,
.animated-title .char {
  overflow: hidden;
}
.animated-title h2 {
  text-transform: none;
  font-style: italic;
  overflow: hidden;
}

.animated-title-bottom {
  text-align: right;
}

.loaded .animated-title .animated-title-top .char::before {
  content: attr(data-char);
  will-change: animation;
  visibility: visible;
  color: hsl(var(--root-light-hsl));
  transform: translateX(-110%);
  animation: show-top-text 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.loaded .animated-title .animated-title-sep {
  opacity: 100%;
}
.loaded .animated-title .animated-title-bottom .word::before {
  content: attr(data-word);
  visibility: visible;
  display: block;
  color: hsl(var(--root-light-hsl));
  transform: translateY(-100%);
  animation: show-bottom-text 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

#main-inner {
  position: relative;
}

.galerie-title-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.galerie-title-inner h1 {
  grid-column: 1/-1;
}
.galerie-title-inner h2 {
  grid-column: 1/-1;
  color: hsl(var(--root-dark-hsl));
  background-color: hsl(var(--root-light-hsl));
  text-transform: none;
  font-style: italic;
  font-weight: 300;
  padding: 4px 2px;
  margin: 4px 0 2px;
  gap: 16px;
}
.galerie-title-inner .galerie-updated {
  padding-top: 2px;
  justify-self: end;
  text-align: right;
}
.galerie-title-inner .galerie-imagecount {
  padding-top: 2px;
}

#home-title {
  display: none;
  align-items: center;
  height: 62vh;
}

.image-display-container {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-flow: row dense;
  grid-gap: calc(1.425rem + 2.1vw);
  grid-auto-rows: min-content;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .image-display-container {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
@media screen and (min-width: 1280px) {
  .image-display-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media (min-width: 1200px) {
  .image-display-container {
    grid-gap: 3rem;
  }
}

.image-display {
  will-change: auto;
  width: 100%;
  position: relative;
}
.image-display img {
  transform: scale(1);
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  object-fit: contain;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: var(--ratio);
}
.image-display img:hover {
  transform: scale(1.05);
  transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
}
.image-display.portrait {
  grid-row-end: span 2;
  max-height: max-content;
}
.image-display figure {
  border-radius: var(--figure-rounded-radius);
  overflow: hidden;
}
.image-display figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 45px;
  font-size: calc(1.25625rem + 0.075vw);
  opacity: 100%;
  color: hsl(var(--root-light-hsl-darker));
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 1200px) {
  .image-display figcaption {
    font-size: 1.3125rem;
  }
}
.image-display figcaption > span {
  display: inline-block;
  position: relative;
}
.image-display figcaption > span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  margin: 5px 0 0;
  background-color: var(--galerie-caption-bg);
  border-radius: 5px;
  transition: cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transition-duration: 0.1s;
}
.image-display .cover-count {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.image-display .cover-count .cover-count-inner {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background-color: rgb(var(--color-bg-rgb), 40%);
  border-radius: var(--figure-rounded-radius);
  padding: 1rem 2rem;
  transform: scale(0);
  opacity: 0%;
}
.image-display:hover figcaption {
  color: hsl(var(--root-light-hsl));
}
.image-display:hover figcaption > span::before {
  transform: scaleX(1);
}
.image-display:hover .cover-count-inner {
  opacity: 100%;
  transform: scale(1);
}

.loaded .image-display.entered {
  animation: move-in 1s;
  animation-fill-mode: forwards;
}

.tagline {
  grid-row-end: span 2;
  justify-self: center;
  align-self: center;
  text-align: center;
  color: hsl(var(--root-light-hsl-darker));
  font-size: 1.5rem;
  font-style: italic;
}

.expositions {
  max-width: 60ch;
}
.expositions strong {
  font-size: larger;
}
/*# sourceMappingURL=galeries.css.map */
