/*============== 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 h1 {
  text-align: center;
}
.header h1 span {
  display: block;
  font-size: clamp(1rem, 8vw, 3.5rem);
}
.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: 3rem;
  padding-right: 40rem;
  gap: 1.5rem;
}
@media only screen and (max-device-width: 1081px) and (orientation: portrait) {
  .header__content {
    padding-right: unset;
  }
}
.header__burger {
  position: fixed;
  top: 1.5rem;
  left: 2rem;
  background-color: black;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__burger.is-visible {
  opacity: 0.6;
  visibility: visible;
}
.header__burger button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.header__burger img {
  height: 1.5rem;
  width: auto;
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #e7dfd4;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.8s ease-out;
  overflow-y: auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .header__overlay {
    width: 330px;
  }
}
.header__overlay.is-open {
  transform: translateX(0);
}
.header__overlay__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
}
.header__overlay__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.header__overlay__name {
  color: #2c2218;
  font-family: "Bonheur Royale", cursive;
  font-size: 2rem;
  margin: 0;
}
.header__overlay__subtitle {
  color: #2c2218;
  font-size: 0.75rem;
  opacity: 0.7;
  margin: 0.25rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.header__overlay__close {
  background: none;
  border: none;
  color: #2c2218;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.header__overlay__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.header__overlay__nav a {
  color: #2c2218;
  text-decoration: none;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-family: "Bonheur Royale", cursive;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .header__overlay__nav a {
    font-size: 2.5rem;
  }
}
.header__overlay__divider {
  border: none;
  border-top: 1px solid rgba(44, 34, 24, 0.5);
  margin: 2rem 0;
}
.header__overlay__flags {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__overlay__flags a {
  text-decoration: none;
  color: unset;
}
.header__overlay__flags img {
  height: auto;
  width: 25px;
  margin-left: 20px;
  margin-right: 20px;
}
.header__overlay__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.header__overlay__contact__label {
  color: #2c2218;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin: 0 0 0.5rem;
}
.header__overlay__contact a {
  color: #2c2218;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
}
.header__overlay__copyright {
  color: #2c2218;
  font-size: 0.75rem;
  opacity: 0.5;
  margin: 0;
}
.header__overlay__preview {
  display: none;
  position: fixed;
  top: 0;
  left: 330px;
  width: calc(100% - 330px);
  height: 100%;
  z-index: 199;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.8s ease-out;
}
@media (min-width: 1024px) {
  .header__overlay__preview {
    display: block;
  }
}
@media (max-width: 1024px) {
  .header__overlay__preview {
    display: none !important;
  }
}
.header__overlay__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.header__overlay__preview__name {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: black;
  font-family: "Bonheur Royale", cursive;
  font-size: 6rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  margin: 0;
}
.header__overlay__preview.is-open {
  transform: translateX(0);
}

#portfolio {
  padding-top: 8px;
  padding-left: 8px;
  padding-right: 8px;
  background-color: black;
}
#portfolio .gallery__item {
  position: relative;
  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;
}
#portfolio .gallery__item__icon {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  color: white;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.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:first-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery__panel__text h2 {
  margin-bottom: 1rem;
}
.gallery__panel__text .panel-description {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: white;
  font-size: clamp(1rem, 2vw, 1.6rem);
}
.gallery__panel__text .panel-description em {
  font-style: italic;
  font-weight: 300;
  font-family: "Lato", sans-serif;
}
@media (orientation: portrait) {
  .gallery__panel__text .panel-description {
    font-weight: unset;
  }
}
@media (orientation: portrait) {
  .gallery__panel__text {
    padding: 2rem;
  }
}
.gallery__panel__text__price {
  padding-top: 1rem;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: white;
  font-size: clamp(1rem, 2vw, 1.6rem);
}
@media (orientation: portrait) {
  .gallery__panel__text__price {
    font-weight: unset;
  }
}
.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;
  }
}
.gallery__panel__text__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.gallery__panel__order, .gallery__panel__show-more {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: none;
  border: 1px solid white;
  color: white;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  transition: all 0.3s ease;
}
.gallery__panel__order:hover, .gallery__panel__show-more:hover {
  background-color: white;
  color: black;
}
.gallery__panel__form {
  display: none;
  grid-column: 1/-1;
  margin-top: 2rem;
  padding: 2rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.gallery__panel__form.is-open {
  display: block;
}
.gallery__panel__form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.gallery__panel__form .contact-form__row {
  display: flex;
  gap: 1rem;
}
.gallery__panel__form .contact-form__row > div {
  flex: 1;
}
.gallery__panel__form .contact-form > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gallery__panel__form .contact-form > div label {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: white;
  font-size: clamp(1rem, 2vw, 1.6rem);
}
.gallery__panel__form .contact-form > div input,
.gallery__panel__form .contact-form > div textarea {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, 2vw, 1.6rem);
  padding: 0.5rem 0;
  width: 100%;
  outline: none;
}
.gallery__panel__form .contact-form > div input::placeholder,
.gallery__panel__form .contact-form > div textarea::placeholder {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}
.gallery__panel__form .contact-form > div input:focus,
.gallery__panel__form .contact-form > div textarea:focus {
  border-bottom-color: white;
}
.gallery__panel__form .contact-form > div textarea {
  resize: vertical;
  min-height: 120px;
}
.gallery__panel__form .contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.gallery__panel__form .contact-form__consent > div {
  display: flex;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.75rem;
}
.gallery__panel__form .contact-form__consent input[type=checkbox] {
  width: auto !important;
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: black;
}
.gallery__panel__form .contact-form__consent label {
  font-size: clamp(0.8rem, 2vw, 1rem) !important;
  font-weight: 300;
  color: black;
  cursor: pointer;
}
.gallery__panel__form .contact-form__consent label a {
  color: white;
  text-decoration: underline;
}
.gallery__panel__form .contact-form__submit {
  align-self: center;
  padding: 0.75rem 2rem;
  background: none;
  border: 1px solid white;
  color: white;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.gallery__panel__form .contact-form__submit:hover {
  background-color: white;
  color: black;
}
.gallery__panel__form .contact-form__success-msg {
  color: white;
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, 2vw, 1.6rem);
  align-self: center;
}

.newsletter {
  background-color: #e7dfd4;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.newsletter__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.newsletter__text {
  color: black;
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  margin: 0;
}
.newsletter__button {
  background: none;
  border: 1px solid black;
  color: black;
  font-family: "Lato", sans-serif;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter__button:hover {
  background-color: black;
  color: white;
}
.newsletter__form {
  display: none;
  width: 100%;
  max-width: 600px;
}
.newsletter__form.is-open {
  display: block;
}
.newsletter__form__success {
  color: black;
  font-family: "Lato", sans-serif;
  text-align: center;
  padding: 1rem;
}
.newsletter__form .subscriber-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter__form .subscriber-form__row {
  display: flex;
  gap: 1rem;
}
.newsletter__form .subscriber-form__row > div {
  flex: 1;
}
.newsletter__form .subscriber-form > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.newsletter__form .subscriber-form > div label {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: black;
  font-size: clamp(1rem, 2vw, 1.6rem);
}
.newsletter__form .subscriber-form > div input,
.newsletter__form .subscriber-form > div textarea {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: black;
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, 2vw, 1.6rem);
  padding: 0.5rem 0;
  width: 100%;
  outline: none;
}
.newsletter__form .subscriber-form > div input::placeholder,
.newsletter__form .subscriber-form > div textarea::placeholder {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.4);
}
.newsletter__form .subscriber-form > div input:focus,
.newsletter__form .subscriber-form > div textarea:focus {
  border-bottom-color: black;
}
.newsletter__form .subscriber-form > div textarea {
  resize: vertical;
  min-height: 120px;
}
.newsletter__form .subscriber-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.newsletter__form .subscriber-form__consent > div {
  display: flex;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.75rem;
}
.newsletter__form .subscriber-form__consent input[type=checkbox] {
  width: auto !important;
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: black;
}
.newsletter__form .subscriber-form__consent label {
  font-size: clamp(0.7rem, 2vw, 0.9rem) !important;
  font-weight: 300;
  color: black;
  cursor: pointer;
}
.newsletter__form .subscriber-form__consent label a {
  color: black;
  text-decoration: underline;
}
.newsletter__form .subscriber-form__submit {
  align-self: center;
  padding: 0.75rem 2rem;
  background: none;
  border: 1px solid black;
  color: black;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.newsletter__form .subscriber-form__submit:hover {
  background-color: black;
  color: white;
}
.newsletter__form .subscriber-form__success-msg {
  color: black;
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, 2vw, 1.6rem);
  align-self: center;
}

.footer {
  background-color: #e7dfd4;
  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: #2c2218;
  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: #2c2218;
  font-weight: 300;
  font-size: 1rem;
  margin-top: -2rem;
}
@media (orientation: portrait) {
  .footer__presentation-bis {
    font-size: 0.9rem;
  }
}
.footer__icons {
  display: flex;
  gap: 1.5rem;
}
.footer__icons a {
  color: #2c2218;
  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: #2c2218;
  font-size: 0.7rem;
  margin: 0;
}
@media (orientation: portrait) {
  .footer__copyright {
    font-size: 0.5rem;
  }
}

.legal {
  background-color: #e7dfd4;
  min-height: 100vh;
  padding: 4rem 2rem;
}
.legal__container {
  max-width: 800px;
  margin: 0 auto;
}
.legal__title {
  font-family: "Bodoni Moda", serif;
  color: #0c4e8d;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
  text-align: center;
}
.legal__section {
  margin-bottom: 3rem;
}
.legal__section h2 {
  font-family: "Bodoni Moda", serif;
  color: #0c4e8d;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  border-bottom: 1px solid rgba(12, 78, 141, 0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.legal__section h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #2c2218;
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
}
.legal__section p, .legal__section li {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: #2c2218;
  font-size: 0.9rem;
  line-height: 1.8;
}
.legal__section ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}
.legal__section a {
  color: #0c4e8d;
  text-decoration: underline;
}

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-300italic - 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: 300;
  src: url("../fonts/lato-v25-latin-300italic-fHvMP3R.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 */
