/*============== Fonts ==============*/
/*============== Colors ==============*/
/*============== Text Colors ==============*/
/*============== Text & Title Sizes ==============*/
/*============== Mixins ==============*/
.header {
  position: relative;
  height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  /* iPads (portrait) ----------- */
}
.header__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.header__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4rem;
  padding-right: 30rem;
  gap: 1.5rem;
}
@media only screen and (max-device-width: 1081px) and (orientation: portrait) {
  .header__content {
    padding-right: unset;
  }
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: black;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 0.75rem 2rem;
  font-family: "Bonheur Royale", cursive;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (orientation: portrait) {
  .header__nav {
    font-family: "Bodoni Moda", serif;
    gap: 0.5rem;
  }
}
.header__nav.is-visible {
  opacity: 0.7;
  visibility: visible;
}
.header__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.6rem;
}
@media (orientation: landscape) {
  .header__nav a {
    font-size: 2rem;
  }
}
.header__nav a:hover {
  opacity: 0.7;
}
.header__nav span {
  color: #fff;
  font-size: 0.5rem;
}
@media (orientation: landscape) {
  .header__nav span {
    font-size: 2rem;
  }
}

#portfolio {
  padding: 8px;
  background-color: black;
}
#portfolio .gallery__item {
  width: calc(33.333% - 8px);
  margin-bottom: 8px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  #portfolio .gallery__item {
    width: 100%;
  }
}
#portfolio .gallery__item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery__panel {
  display: none;
  grid-column: 1/-1;
  background-color: black;
  position: relative;
}
.gallery__panel.is-open {
  display: grid;
}
@media (orientation: landscape) {
  .gallery__panel.is-open {
    grid-template-columns: 65vh 1fr;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (orientation: portrait) {
  .gallery__panel.is-open {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.gallery__panel__image {
  margin-left: 2em;
  margin-right: 2em;
  align-self: center;
}
@media (orientation: landscape) {
  .gallery__panel__image {
    margin-left: 2em;
    margin-right: 2em;
  }
}
.gallery__panel__image img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.gallery__panel__text {
  padding: 6rem;
}
.gallery__panel__text div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery__panel__text h2 {
  margin-bottom: 1rem;
}
.gallery__panel__text p {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: white;
  font-size: clamp(1rem, 2vw, 1.6rem);
}
@media (orientation: portrait) {
  .gallery__panel__text p {
    font-weight: unset;
  }
}
@media (orientation: portrait) {
  .gallery__panel__text {
    padding: 2rem;
  }
}
.gallery__panel__close {
  cursor: pointer;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  line-height: 1;
  padding: 0;
}
@media (orientation: portrait) {
  .gallery__panel__close {
    font-size: 2rem;
    padding-left: 1rem;
  }
}

.footer {
  background-color: black;
  padding-top: 2rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer__text {
  font-family: "Bonheur Royale", cursive;
  color: #0c4e8d;
  font-size: 5rem;
  margin: 0;
}
@media (orientation: portrait) {
  .footer__text {
    font-size: 2.5rem;
  }
}
.footer__presentation {
  font-family: "Lato", sans-serif;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-top: -1rem;
}
@media (orientation: portrait) {
  .footer__presentation {
    font-size: 1rem;
  }
}
.footer__presentation-bis {
  font-family: "Lato", sans-serif;
  color: white;
  font-weight: 300;
  font-size: 1rem;
  margin-top: -2rem;
}
@media (orientation: portrait) {
  .footer__presentation-bis {
    font-size: 0.5rem;
  }
}
.footer__icons {
  display: flex;
  gap: 1.5rem;
}
.footer__icons a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
}
@media (orientation: portrait) {
  .footer__icons a {
    font-size: 1.5rem;
  }
}
.footer__icons a:hover {
  opacity: 0.7;
}
.footer__copyright {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: white;
  font-size: 0.7rem;
  margin: 0;
}
@media (orientation: portrait) {
  .footer__copyright {
    font-size: 0.5rem;
  }
}

body {
  background-color: #f5f5f5;
}

main {
  display: flex;
  flex-direction: column;
}

/*============== Typography ==============*/
/* bonheur-royale-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Bonheur Royale";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/bonheur-royale-v15-latin-regular-EVqUqJ1.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* creme-espana-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Creme Espana";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/creme-espana-BrwRpuA.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/lato-v25-latin-300-kgbxK91.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lato-v25-latin-regular-CzNc_Ij.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/lato-v25-latin-700-5CmM-eX.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/lato-v25-latin-700italic-MqwAszF.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bodoni-moda-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/bodoni-moda-v28-latin-regular-Fg2vIbg.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bodoni-moda-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Bodoni Moda";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/bodoni-moda-v28-latin-800italic-vJ5o2ab.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
h1 {
  font-family: "Bonheur Royale", cursive;
  font-size: clamp(2.8rem, 10vw, 6rem);
  color: #0c4e8d;
}

h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: white;
  font-weight: 800;
  font-style: italic;
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
