* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a,
input,
textarea,
select,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

img,
video,
iframe {
  display: block;
  width: 100%;
  height: auto;
}

select,
button,
label,
input {
  cursor: pointer;
}

input[type="submit"],
button {
  border: none;
  background-color: transparent;
}

svg {
  line-height: 0;
}

ul,
ol {
  list-style-type: none;
}

body {
  overflow-x: hidden;
}

:root {
  -webkit-tap-highlight-color: transparent;
}

/*
* =====================================
* THEME
* =====================================
*/

@font-face {
  font-family: "Work Sans";
  src: url("./assets/fonts/WorkSans-Variable.ttf");
}

@font-face {
  font-family: "Cartograph CF";
  src: url("./assets/fonts/cartograph-cf-extra-bold-italic.ttf");
  font-style: italic;
  font-weight: 800;
}

@font-face {
  font-family: "Cartograph CF";
  src: url("./assets/fonts/cartograph-cf-heavy.ttf");
  font-style: normal;
  font-weight: 900;
}

:root {
  --c-accent: #bb8ef8;
  --c-black: #181818;
  --c-white: #ffffff;
  --c-light-gray: #efeeeb;

  --ff-sans: "Work Sans", serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --ff-cursive: "Cartograph CF", cursive;

  --container-columns: 12;
  --container-gap: 2rem;
  --container-x-padding: 2rem;
  --container-column-width: 5rem;

  --radius: 0.75rem;
}

::selection {
  background-color: rgba(187, 142, 248, 0.75);
  color: black;
}

.ff-sans {
  font-family: var(--ff-sans);
}

.ff-cursive {
  font-family: var(--ff-cursive);
  font-style: italic;
  font-weight: 800;
}

.text-accent {
  color: var(--c-accent);
}

.text-light-gray {
  color: var(--c-light-gray);
}

.text-white {
  color: var(--c-white);
}

.bg-accent {
  background-color: var(--c-accent);
}

.fs-90 {
  font-size: 5.625rem;
  line-height: 1;
  letter-spacing: -4.5px;
}

.fs-80 {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -2.4px;
}

.fs-48 {
  font-size: 3rem;
  line-height: 1.583333;
}

.fs-45 {
  font-size: 2.8125rem;
  line-height: 1.222222;
  letter-spacing: -2.25px;
}

.fs-35 {
  font-size: 2.1875rem;
  line-height: 1.142857;
  letter-spacing: -1.75px;
}

.fs-25 {
  font-size: 1.5625rem;
  line-height: 1;
  letter-spacing: -1.25px;
}

.fs-22 {
  font-size: 1.375rem;
  line-height: 1.454545;
  letter-spacing: -1.1px;
}

.fs-20 {
  font-size: 1.25rem;
  line-height: 1.5;
}

.fs-18 {
  font-size: 1.125rem;
  line-height: 1.333333;
  letter-spacing: -0.9px;
}

.fs-15 {
  font-size: 0.9375re;
  line-height: 1.466667;
  letter-spacing: -0.15px;
}

.fs-14 {
  font-size: 0.875rem;
  line-height: 1.142857;
}

@media (max-width: 768px) {
  .fs-90 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
  }
  .fs-80 {
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
  }
  .fs-48 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  .fs-45 {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
  }
  .fs-35 {
    font-size: 1.875rem;
    line-height: 1.2;
    letter-spacing: -1px;
  }
  .fs-25 {
    font-size: 1.375rem;
    line-height: 1.2;
    letter-spacing: -0.75px;
  }
  .fs-22 {
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
  }
  .fs-20 {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  .fs-18 {
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
  }
  .fs-15 {
    font-size: 0.9375rem;
    line-height: 1.4;
    letter-spacing: -0.15px;
  }
  .fs-14 {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}

.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-sans);
  color: var(--c-black);
}

.layers {
  display: grid;
}

.layers > .layer {
  grid-column: -1/1;
  grid-row: -1/1;
}

.layers > .layer.layer-bg {
  position: relative;
}

.layers > .layer.layer-bg::after {
  content: "";
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.layers > .layer.layer-fg {
  position: relative;
  z-index: 1;
}

.img-wrapper.img-wrapper-ratio > picture,
.img-wrapper.img-wrapper-ratio {
  overflow: hidden;
  position: relative;
  height: 0;
}

.img-wrapper.img-wrapper-ratio > picture {
  height: 100%;
  display: block;
}

.img-wrapper.img-wrapper-ratio > picture > img,
.img-wrapper.img-wrapper-ratio > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  inset: 0;
}

.container {
  --container-inner-width: ((var(--container-columns) - 1) * var(--container-gap)) + (var(--container-columns) * var(--container-column-width));
  width: 100%;
  max-width: calc((var(--container-x-padding) * 2) + var(--container-inner-width));
  margin-inline: auto;
  padding-inline: var(--container-x-padding);
}
.container.container-10 {
  --container-columns: 10;
}

.container.container-8 {
  --container-columns: 8;
}

.container.container-6 {
  --container-columns: 6;
}

.btn {
  --btn-bg: transparent;
  --btn-fg: inherit;
  --btn-outline-color: transparent;
  --btn-h-bg: hsl(from var(--btn-bg) h s calc(l - 5));
  --btn-h-fg: var(--btn-fg);
  --btn-h-outline-color: transparent;

  background-color: var(--btn-bg);
  color: var(--btn-fg);
  outline: 1px solid;
  outline-color: var(--btn-outline-color);
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding-block: 0.875rem;
  padding-inline: 2.8125rem;
  min-width: 11.3125rem;
  border-radius: 9999px;
  font-weight: 600;
  transition:
    outline-color 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease;
}

.btn:hover {
  background-color: var(--btn-h-bg);
  color: var(--btn-h-fg);
  outline-color: var(--btn-h-outline-color);
}

.btn:active {
  scale: 0.96;
}

.btn.btn-primary {
  --btn-bg: var(--c-accent);
  --btn-fg: black;
}

.btn.btn-tertiary {
  --btn-bg: var(--c-accent);
  --btn-fg: var(--c-white);
  --btn-h-bg: var(--c-black);
  --btn-h-fg: var(--c-white);
}

.btn.btn-outline {
  --btn-fg: #210548;
  --btn-outline-color: #210548;
  --btn-h-fg: var(--c-white);
  --btn-h-bg: var(--btn-outline-color);
}

.btn.btn-outline.btn-outline-white {
  --btn-fg: var(--c-white);
  --btn-outline-color: var(--c-white);
  --btn-h-fg: black;
  --btn-h-bg: var(--c-accent);
  --btn-h-outline-color: var(--c-accent);
}

/*
* =====================================
* HEADER
* =====================================
*/

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

header .content {
  display: flex;
  padding-block: 2rem;
  align-items: center;
  justify-content: space-between;
}

header .content img {
  max-width: 5rem;
}

header .content .lang-selector ul {
  display: flex;
  color: var(--c-white);
}

header .content .lang-selector ul li:not(.active, :hover) a {
  opacity: 0.3;
}

header .content .lang-selector ul li:not(:last-child) {
  padding-right: 0.625rem;
  border-right: 2px solid var(--c-accent);
}

header .content .lang-selector ul li:not(:first-child) {
  padding-left: 0.625rem;
}

@media only screen and (max-width: 768px) {
  header .content {
    padding-block: 1rem;
  }

  header .content img {
    max-width: 3.125rem;
  }
}

/*
* =====================================
* HERO
* =====================================
*/

section#hero .layers {
  min-height: 100vh;
  min-height: 100svh;
  min-height: max(500px, 100svh);
  min-height: clamp(500px, 100svh, 1080px);
}

section#hero .layers .layer.layer-bg::after {
  background-color: #00000066;
}

section#hero .layers .layer.layer-bg .img-wrapper {
  height: 100%;
}

section#hero .layers .layer.layer-fg .container .zones,
section#hero .layers .layer.layer-fg .container {
  height: 100%;
}

section#hero .layers .layer.layer-fg .zones {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--container-gap);
  flex-wrap: wrap;
}

section#hero .layers .layer.layer-fg .zones > .zone {
  flex-grow: 1;
  max-width: 26.875rem;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box {
  max-width: 26rem;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-text .text .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-text .text .text-wrapper .payoff {
  margin-bottom: 0.8rem;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box {
  background-color: var(--c-white);
  padding: 2rem;
  padding-top: 2.625rem;
  border-radius: var(--radius);
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .dates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .dates .date label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  position: relative;
  cursor: pointer;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .dates .date label > input {
  appearance: none;
  opacity: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  font-size: 9999px;
  cursor: pointer;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .dates .date label .title {
  color: #4b4652;
  text-transform: capitalize;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .dates .date label .date-wrapper {
  text-align: center;
  background-color: #f2f2f2;
  border-radius: var(--radius);
  padding-top: 0;
  padding-bottom: 0.875rem;
  padding-inline: 1rem;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .dates .date label .date-wrapper .month {
  text-transform: capitalize;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .dates .date label .date-wrapper svg {
  margin-top: 0.9375rem;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .dates .date label .date-wrapper .day {
  font-style: normal;
  font-weight: 900;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .guests {
  margin-top: 1.1875rem;
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--container-gap);
  border-top: 1px solid #18181833;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .guests > span {
  color: #4b4652;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .guests .counter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--container-gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .guests .counter .count {
  font-feature-settings: "tnum";
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .guests input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .guests .counter button {
  height: 3rem;
  width: 3rem;
  background-color: #f2f2f2;
  font-size: 1.3rem;
  line-height: 0;
  border-radius: 99px;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .guests .counter button:hover {
  background-color: #e9e9e9;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .guests .counter button:active {
  scale: 0.95;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .cta {
  margin-top: 1.25rem;
}

section#hero .layers .layer.layer-fg .zones > .zone.zone-box .box .cta .btn {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  section#hero .layers .layer.layer-fg .zones {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: 3.125rem;
    padding-top: 8.125rem;
  }

  section#hero .layers .layer.layer-fg .zones > .zone.zone-box,
  section#hero .layers .layer.layer-fg .zones > .zone {
    max-width: none;
    flex-grow: 0;
  }

  section#hero .layers .layer.layer-fg .zones > .zone.zone-text .text .text-wrapper {
    gap: 1rem;
  }
}

/*
* =====================================
* ABOUT
* =====================================
*/

section#about {
  padding-top: 6.375rem;
  padding-bottom: 2.6875rem;
}

section#about .zones {
  display: flex;
  flex-direction: column;
  gap: 6.875rem;
}

section#about .zones > .zone.zone-text .text .text-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3.34375rem;
}

section#about .zones > .zone.zone-text .text .text-wrapper .description p:not(:last-child) {
  margin-bottom: 1.2em;
}

section#about .zones > .zone.zone-gallery .images {
  display: flex;
  gap: 1.5625rem;
  overflow: auto;
  padding-inline: var(--container-x-padding);
  justify-content: start;
  height: 27.4375rem;
}

section#about .zones > .zone.zone-gallery .images::-webkit-scrollbar {
  display: none;
}

section#about .zones > .zone.zone-gallery .images > .img-wrapper {
  flex-shrink: 0;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

section#about .zones > .zone.zone-gallery .images > .img-wrapper > img {
  height: 100%;
}

section#about .zones > .zone.zone-cta {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  section#about {
    padding-top: 3.125rem;
    padding-bottom: 1rem;
  }

  section#about .zones {
    gap: 2rem;
  }

  section#about .zones > .zone.zone-text .text .text-wrapper {
    gap: 1.5rem;
  }

  section#about .zones > .zone.zone-gallery .images {
    height: 16rem;
  }
}

/*
* =====================================
* LOCATIONS
* =====================================
*/

section#locations {
  overflow: hidden;
}

section#locations .container {
  position: relative;
  padding-top: 11.5625rem;
  padding-bottom: 12.5625rem;
}

section#locations .text .text-wrapper {
  text-align: center;
}

section#locations .text .text-wrapper .locations {
  padding-top: 5.3125rem;
  padding-bottom: 4.5625rem;
}

section#locations .text .text-wrapper .locations ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  line-height: 1.177778;
}

section#locations .text .text-wrapper .locations ul li:hover {
  color: var(--c-accent);
  font-family: var(--ff-cursive);
}

section#locations .container .floating-img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  object-fit: cover;
}

section#locations .container .floating-img:nth-child(1) {
  top: 9.125rem;
  right: calc(70.125rem - var(--container-x-padding));
  width: 16rem;
}

section#locations .container .floating-img:nth-child(2) {
  bottom: 19.4375rem;
  right: calc(69.375rem - var(--container-x-padding));
  width: 13.6875rem;
}

section#locations .container .floating-img:nth-child(3) {
  top: 0;
  left: calc(66.9375rem + var(--container-x-padding));
  width: 19rem;
}

section#locations .container .floating-img:nth-child(4) {
  top: 32.25rem;
  left: calc(54.625rem + var(--container-x-padding));
  width: 12.5rem;
}

section#locations .container .floating-img:nth-child(5) {
  bottom: 0;
  left: calc(70rem + var(--container-x-padding));
  width: 16rem;
}

@media only screen and (max-width: 768px) {
  section#locations .container {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }

  section#locations .text .text-wrapper .locations {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/*
* =====================================
* ROLES
* =====================================
*/

section#roles {
  padding-top: 5.625rem;
  padding-bottom: 8.75rem;
}

section#roles .boxes {
  margin-inline: auto;
  max-width: 70.125rem;
  display: grid;
  --grid-item-width: 28.125rem;
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-item-width), 1fr));
  grid-template-columns: repeat(auto-fit, minmax(min(var(--grid-item-width), 100%), 1fr));
  gap: var(--container-gap);
}

section#roles .boxes .box {
  background-color: rgba(219, 200, 240, 0.86);
  color: #210548;
  border-radius: var(--radius);
  overflow: hidden;
}

section#roles .boxes .box:has(.layer.layer-bg .img-wrapper img) {
  color: var(--c-white);
}

section#roles .boxes .box .layers .layer.layer-bg::after {
  background-color: #00000080;
}

section#roles .boxes .box .layers {
  height: 100%;
}

section#roles .boxes .box .layers .layer.layer-bg .img-wrapper {
  height: 100%;
}

section#roles .boxes .box .layers .layer.layer-fg {
  padding-block: 5.125rem;
  padding-inline: 2rem;
  text-align: center;
}

section#roles .boxes .box .layers .layer.layer-fg .icon {
  max-width: 3.125rem;
  margin-bottom: 1.25rem;
  margin-inline: auto;
}

section#roles .boxes .box .layers .layer.layer-fg .title {
  margin-bottom: 1.875rem;
}

section#roles .boxes .box .layers .layer.layer-fg .cta {
  margin-top: 2.1875rem;
}

section#roles .boxes .box .layers .layer.layer-fg .description {
  max-width: 24.5625rem;
  margin-inline: auto;
}

section#roles .boxes .box:nth-child(2) .layers .layer.layer-fg .description {
  max-width: 19.6875rem;
}

@media only screen and (max-width: 768px) {
  section#roles {
    padding-top: 0;
    padding-bottom: 3.125rem;
  }

  section#roles .boxes .box .layers .layer.layer-fg {
    padding-block: 2rem;
  }
}

/*
* =====================================
* BANNER
* =====================================
*/

section#banner .layers {
  height: 0;
  min-height: 37rem;
}

section#banner .layers .layer.layer-bg .img-wrapper {
  height: 100%;
}

section#banner .layers .layer.layer-bg::after {
  background-color: #18181833;
}

section#banner .layers .layer.layer-fg > .container > .text,
section#banner .layers .layer.layer-fg > .container {
  height: 100%;
}

section#banner .layers .layer.layer-fg .text {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

section#banner .layers .layer.layer-fg .text .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  align-items: center;
}

/*
* =====================================
* FOOTER
* =====================================
*/

footer {
  padding-top: 7.1875rem;
  padding-bottom: 4rem;
}

footer .zones {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

footer .zones > .zone.zone-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--container-gap);
}

footer .zones > .zone.zone-head > :nth-child(1) {
  justify-self: start;
}

footer .zones > .zone.zone-head > :nth-child(2) {
  justify-self: center;
}

footer .zones > .zone.zone-head > :nth-child(3) {
  justify-self: right;
}

footer .zones > .zone.zone-head .infos {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.833333rem;
}

footer .zones > .zone.zone-head .infos .description {
  color: rgba(27, 23, 66, 0.5);
}

footer .zones > .zone.zone-head .infos .description p:not(:last-child) {
  margin-bottom: 1.2em;
}

footer .zones > .zone.zone-head .logo img {
  max-width: 4.75rem;
}

footer .zones > .zone.zone-head .socials {
  padding-top: 0.6875rem;
}

footer .zones > .zone.zone-head .socials ul {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

footer .zones > .zone.zone-head .socials ul li a {
  background-color: #f7f6f5;
  border-radius: 999px;
  height: 2.6875rem;
  width: 2.6875rem;
  display: grid;
  place-items: center;
}

footer .zones > .zone.zone-head .socials ul li a svg {
  max-width: 100%;
  line-height: 0;
  height: auto;
  max-height: 1.2rem;
}

footer .zones > .zone.zone-foot {
  text-align: center;
  color: #9399a5;
  font-size: 0.8125rem;
  line-height: 1.153846;
}

@media only screen and (max-width: 768px) {
  footer {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }

  footer .zones {
    gap: 2rem;
  }

  footer .zones > .zone.zone-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  footer .zones > .zone.zone-head .logo {
    order: -1;
  }

  footer .zones > .zone.zone-head .infos,
  footer .zones > .zone.zone-head .socials {
    padding-top: 0;
  }
}
