/* GLOBAL STYLE */
:root {
  --heritageBlack: #040409;
  --heritageWhite: #fbfbff;
  --heritageBrown: #6e5a47;
  --heritageBeige: #c3a26f;
  --heritageSecondaryBeige: #ede7df;
  --heritageBlue: #2a2e74;
  --heritageRed: #a31924;
  --heritagePink: #f07f88;
  --heritageGray: #b3b3b3;
  --heritageSecondaryGray: #2e3842;
  --titles-font-family: "vincente", serif;
  --subtitles-font-family: "aptly", sans-serif;
  --body-font-family: "Montserrat", Sans-serif;
  --body-font-size: 16px;
  --body-font-weight: 400;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: var(--heritageBlack);
  color: var(--heritageWhite);
  width: 100vw;
  overflow-x: hidden;
  scrollbar-color: var(--heritageBlack) var(--heritageWhite);
}
li {
  font-size: 16px;
  line-height: 190%;
}
.button {
  box-sizing: border-box;
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: var(--body-font-size);
  font-family: var(--subtitles-font-family);
  font-weight: var(--body-font-weight);
  padding: 5px;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.primaryButton {
  border-color: var(--heritageBrown);
  background-color: var(--heritageBrown);
}
.primaryButton:hover {
  background-color: white;
  color: var(--heritageBrown);
}
.secondaryButton {
  border-color: var(--heritageBeige);
  background-color: var(--heritageBeige);
}
.secondaryButton:hover {
  background-color: white;
  color: var(--heritageBeige);
}
.tricolorLine {
  height: 2px;
  width: 100%;
  display: block;
  background: linear-gradient(
    to right,
    var(--heritageBlue) 33%,
    var(--heritageWhite) 33%,
    var(--heritageWhite) 66%,
    var(--heritageRed) 66%
  );
  position: absolute;
  bottom: 0;
  left: 0;
}
.topTricolor > .tricolorLine {
  top: 0;
}
.buttonLink {
  display: block;
  background-color: transparent;
  border: 1px solid var(--heritageWhite);
  color: var(--heritageWhite);
  background-color: var(--heritageBlack);
  padding: 8px 100px 0px 100px;
  text-align: center;
  font-family: var(--subtitles-font-family);
  font-size: 24px;
  min-width: 240px;
  height: 48px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  box-sizing: border-box;
}
.buttonLink:hover {
  background-color: var(--heritageBrown);
  border-color: var(--heritageWhite);
  color: var(--heritageWhite);
}
.buttonLink:focus {
  background-color: var(--heritageBeige);
}
.topContainer > div > h2 {
  font-size: 36px;
  font-family: var(--titles-font-family);
  font-weight: 400;
  font-style: normal;
  display: block;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 25px 0;
  text-transform: uppercase;
}
.focusSection {
  border: 1px solid var(--heritageWhite);
  border-radius: 10px;
  box-sizing: border-box;
  margin: 0 15px;
  width: calc(100% - 30px);
  position: relative;
}
.desktopVersion {
  display: none;
}
.textList > li {
  margin: 10px 0;
}
h4 {
  font-size: 16px;
  color: var(--heritageBeige);
  margin: 0;
  align-self: flex-start;
}
@media screen and (min-width: 800px) {
  .buttonLink {
    padding: 7px 100px 0px 100px;
    font-size: 32px;
    height: 56px;
  }
  .smallButton {
    padding: 9px 0;
    height: 45px;
    font-size: 20px;
  }
  li {
    font-size: 20px;
  }
  .desktopVersion {
    display: unset;
  }
  .mobileVersion {
    display: none;
  }
  .focusSection {
    max-width: 600px;
    height: 400px;
  }
  h4 {
    font-size: 20px;
  }
}
/* INDEX STYLE */
main {
  padding: 0px;
  padding-top: 115px;
  overflow-x: hidden;
}
main > section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--subtitles-font-family);
  overflow-x: hidden;
}
@media screen and (min-width: 800px) {
  main > section {
    font-size: 20px;
  }
}
.topContainer {
  height: calc(100vh - 110px);
  background-image: url("../img/index/image6.png");
  background-size: cover;
  background-position: 25% 50%;
  background-repeat: no-repeat;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.topContainer > *:first-child {
  backdrop-filter: brightness(60%);
}
.topContainer > div:first-child {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.topContainer > div:first-child > .tricolorLine {
  position: static;
}
#topNameContainer {
  position: relative;
  height: 100%;
  width: 100%;
  font-size: 18px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  box-sizing: border-box;
}
#topNameContainer > h2 {
  margin: 0;
  padding: 0;
  font-family: var(--titles-font-family);
  font-size: 40px;
}
#topNameContainer > .tricolorLine {
  position: static;
  max-width: 300px;
  margin: 0;
  padding: 1px;
  box-sizing: border-box;
}
#topNameContainer > p {
  margin: 0;
  font-family: var(--subtitles-font-family);
  font-size: 22px;
  text-transform: uppercase;
}
#scrollDownIndicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}
#scrollDownIndicator > .material-symbols-outlined {
  font-size: 55px;
}
@media screen and (min-width: 800px) {
  .topContainer {
    height: 960px;
    background-position: center;
    background-image: url("../img/index/image6.png");
  }
  .topContainer > div:first-child > .tricolorLine {
    max-width: 770px;
  }
  #topNameContainer {
    font-size: 40px;
    backdrop-filter: none;
  }
  #topNameContainer > h2,
  .topContainer > div > h2 {
    font-size: 64px;
  }
  #topNameContainer > .tricolorLine {
    margin: 30px 0;
    max-width: 775px;
  }
  #topNameContainer > p {
    font-size: 32px;
  }
  #scrollDownIndicator {
    display: none;
  }
}
.textContainer {
  padding: 25px 15px;
  font-family: var(--subtitles-font-family);
  color: var(--heritageWhite);
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.subTitleContainer {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.subTitleContainer > h3 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  margin: 0;
  font-weight: normal;
  display: block;
  width: fit-content;
  text-transform: uppercase;
  z-index: 2;
  padding: 0 20px 0 0;
  background-color: var(--heritageBlack);
}
.titleLine {
  position: absolute;
  left: 30px;
  top: 50%;
  padding: 1px;
  width: calc(100% - 30px);
  transform: translateY(-50%);
  background-color: var(--heritageWhite);
  z-index: 1;
}
.textContainer > p {
  margin: 0 auto;
  text-align: justify;
  font-size: 16px;
  line-height: 190%;
  margin: 0;
  font-weight: 400;
  width: 100%;
}
.textContainer > img {
  width: 90%;
  object-fit: contain;
  border-radius: 13px;
}
@media screen and (min-width: 800px) {
  .textContainer {
    padding: 65px;
    font-size: 20px;
  }
  .subTitleContainer > h3 {
    font-size: 40px;
    padding-right: 80px;
  }
  .textContainer > p {
    max-width: 1200px;
    font-size: 20px;
  }
  .textContainer > img {
    max-width: 500px;
    border-radius: 20px;
  }
}
#iconsContainer {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  /* gap: 20px; */
}
.iconContainer {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  /* width: 30%; */
  box-sizing: border-box;
  margin-bottom: 20px;
}
.iconContainer > img {
  width: calc(20vw - 2px);
  min-width: 130px;
  max-width: 200px;
  height: calc(20vw - 2px);
  min-height: 130px;
  max-height: 200px;
  object-fit: contain;
}
.iconContainer > p {
  text-align: center;
}
#iconsContainer > .buttonLink {
  margin-bottom: 30px;
}
@media screen and (min-width: 800px) {
  .iconContainer {
    width: 20%;
    margin-bottom: 40px;
  }
  #iconsContainer > .buttonLink {
    margin-bottom: 40px;
  }
}
#picturesContainer {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.homePicture {
  display: block;
  height: 175px;
  width: 100%;
  max-width: 270px;
  border-radius: 12px;
  position: relative;
  background-color: var(--heritageBlack);
  background-size: cover;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}
.homePicture:hover,
.homePicture:focus {
  transform: scale(1.1);
}
#rdvLink {
  background-image: url("../img/index/image5.jpg");
  background-position: 50% 75%;
  align-self: flex-start;
}
#giftCardLink {
  background-image: url("../img/index/carte-cadeau.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  align-self: center;
}
#shopLink {
  background-image: url("../img/index/image7.jpg");
  background-size: 180%;
  background-position: 70% 20%;
  align-self: flex-end;
}
.homePicture > .cardLink {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--heritageBrown);
  border: none;
  color: var(--heritageWhite);
  text-align: center;
  font-family: var(--subtitles-font-family);
  font-size: 24px;
  font-weight: 400;
  padding: 5px;
  border-radius: 0 0 12px 12px;
  width: 100%;
  transition: all 0.3s ease;
  text-decoration: none;
  box-sizing: border-box;
  text-transform: uppercase;
}
.homePicture:hover > .cardLink,
.homePicture:focus > .cardLink {
  background-color: var(--heritageBeige);
}
.middleWhiteLine {
  padding: 1px;
  width: 100%;
  max-width: 290px;
  background-color: var(--heritageWhite);
}
.actuLink {
  font-family: var(--subtitles-font-family);
  font-size: 32px;
  font-weight: 400;
  color: var(--heritageWhite);
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 330px;
  height: 330px;
  border-radius: 15px;
  background-color: var(--heritageBlack);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
}
.actuLink:hover {
  transform: scale(1.1);
}
.actuLink > div {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.actuLink > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 330px;
  width: 330px;
  object-fit: cover;
  border-radius: 20px;
  z-index: 1;
}
.actuLink:hover .buttonLink {
  background-color: var(--heritageBrown);
  border-color: var(--heritageWhite);
}
.actuLink:focus .buttonLink {
  background-color: var(--heritageBeige);
}
@media screen and (min-width: 800px) {
  #picturesContainer {
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 40px;
  }
  .homePicture {
    max-width: 440px;
    height: 690px;
  }
  .homePicture > .cardLink {
    font-size: 32px;
    padding: 10px;
  }
  .middleWhiteLine {
    max-width: 1100px;
  }
  .actuLink {
    max-width: 900px;
  }
  .actuLink > div,
  .actuLink > img {
    position: static;
  }
}
.backButton {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.backButton > .material-symbols-outlined {
  font-size: 32px;
  color: var(--heritageBlack);
  transition: color 0.3s ease;
}
.backButton:hover > .material-symbols-outlined {
  color: var(--heritageBeige);
}
.backButton:focus > .material-symbols-outlined {
  color: var(--heritageBeige);
}
.disabledLink {
  pointer-events: none;
  background-color: var(--heritageSecondaryGray);
}
.removeItem {
  position: absolute;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--heritageGray);
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.removeItem:hover {
  color: var(--heritageBeige);
}
.removeItem:focus {
  color: var(--heritageBeige);
}
