@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Raleway:wght@400;600&display=swap");
:root {
  --font-ff-marcellus: 'Marcellus', serif;
  --font-ff-raleway: 'Raleway', sans-serif;
  --font-w-regular: 400;
  --fs-400: 0.75rem;
  --fs-500: 1.125rem;
  --fs-600: 1.375rem;
  --fs-700: 1.75rem;
  --fs-800: 1.5625rem;
  --fs-900: 3rem;
  scroll-behavior: smooth;
}

@media (min-width: 64em) {
  :root {
    --fs-400: 1rem;
    --fs-500: 1.375rem;
    --fs-600: 1.625rem;
    --fs-700: 2rem;
    --fs-800: 2.125rem;
    --fs-900: 3.25rem;
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

[hidden] {
  display: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  user-select: none;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html,
body {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100vw;
  min-height: -webkit-fill-available;
  height: -webkit-fill-available;
}

img {
  user-select: none;
}

strong {
  font-weight: var(--font-weight-regular);
}

use {
  pointer-events: none;
}

ul {
  list-style: none;
  padding-inline-start: 0;
  margin-block-end: 0;
  margin-block-start: 0;
}

strong {
  color: var(--clr-main-accent);
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: var(--clr-main-secondary);
  border-radius: 12px;
}

::-webkit-scrollbar-thumb {
  background: var(--clr-main-white);
  border-radius: 12px;
}

input {
  color-scheme: dark;
  height: 2rem;
}

progress {
  color: var(--clr-main-white);
  background: var(--clr-main-black);
  border-radius: 2.5rem;
  padding: 0.3rem;
}

progress::-webkit-progress-bar {
  border-radius: 2.5rem;
  background: var(--clr-main-black);
  color: var(--clr-main-white);
}

progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background: var(--clr-main-accent);
  color: var(--clr-main-white);
  transition: width 300ms;
}

.theme__home {
  --clr-main-accent: #FFE08A;
  --clr-main-pink: #E9C5B4;
  --clr-main-white: #F6EEE4;
  --clr-main-black: #141414;
}

.title {
  text-align: left;
  font-weight: 100;
  font-size: 3.5rem;
  color: var(--clr-main-white);
}

.hide {
  visibility: hidden;
}

.animated {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 500ms, transform 500ms;
}

.animated__open {
  opacity: 1;
  transform: translateY(0);
}

.transition {
  position: fixed;
  inset: 0;
  background-color: var(--clr-main-black);
  pointer-events: none;
  transform: scaleX(0);
  transition: transform 300ms;
  transform-origin: right;
  z-index: 100;
}

.transition__open {
  transform-origin: left;
  transform: scaleX(1);
}

@media (min-width: 64em) {
  .title {
    text-align: center;
    font-size: 4.5rem;
  }
}
body {
  background-color: var(--clr-main-black);
  font-size: var(--fs-500);
  font-family: var(--font-ff-raleway);
  color: var(--clr-main-black);
  line-height: 1.5rem;
  transition: background-color 500ms;
}

h1, h2, h3, h4 {
  font-family: var(--font-ff-marcellus);
  font-size: var(--fs-900);
  text-align: center;
  line-height: 4rem;
}

.product {
  width: 5rem;
  cursor: pointer;
}

.carousel__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  height: 25rem;
  max-width: 45rem;
  overflow: hidden;
}

.carousel__item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}

.carousel__bubbles {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding-top: 0.5rem;
  gap: 0.5rem;
}

.carousel__bubble {
  width: 1rem;
  height: 1rem;
  border-radius: 4rem;
  opacity: 0.4;
  background-color: var(--clr-main-white);
  cursor: pointer;
}

.carousel__bubble-selected {
  opacity: 1;
  background-color: var(--clr-main-accent);
}

.button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  border: solid var(--clr-main-accent) 1px;
  border-radius: 4px;
  padding: 6px;
  cursor: pointer;
  color: var(--clr-main-white);
}

.button__link {
  color: var(--clr-main-white);
  text-decoration: none;
}

.button__link:visited {
  color: var(--clr-main-white);
}

.button__logo {
  color: var(--clr-main-accent);
  width: 2rem;
  height: 2rem;
}

.picture {
  object-fit: cover;
  border: solid var(--clr-main-white) 6px;
}

.picture__small {
  width: calc(50% - 4px);
}

.picture__large {
  width: 100%;
  height: 18rem;
}

.productpreview {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  gap: 0.5rem;
  min-width: 5rem;
}

.productpreview > * {
  pointer-events: none;
}

.productpreview__img {
  width: 5rem;
  height: 5rem;
}

.productpreview__price {
  width: 3rem;
  color: var(--clr-main-white);
  background-color: var(--clr-main-black);
  padding: 0.25rem;
  border-radius: 2rem;
}

.cartitem {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
  background-color: #222;
  width: 100%;
  height: 6rem;
}

.cartitem__img {
  width: 4rem;
}

.cartitem__name {
  width: 55%;
}

input[type=number] {
  width: 2rem;
}

.header {
  position: fixed;
  top: 0;
  background-color: var(--clr-main-black);
  color: var(--clr-main-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  z-index: 101;
}

.header__logo {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

.header__burger {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.header__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.header__button {
  width: 8rem;
  font-size: 1rem;
}

.header__menu {
  position: fixed;
  inset: 0;
  margin: auto;
  background-color: var(--clr-main-black);
  transform: translateY(-100%);
  font-family: var(--font-ff-marcellus);
  font-size: var(--fs-800);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  transition: transform 300ms ease;
}

.header__menu-open {
  transform: translateY(0);
}

.header__link {
  cursor: pointer;
  position: relative;
}

.header__link::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--clr-main-white);
  bottom: -0.5rem;
  transform: scaleX(0);
  transition: transform 250ms ease;
  transform-origin: right;
}

.header__link:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.header__icon {
  width: 2rem;
  height: 2rem;
}

@media (min-width: 48em) {
  .header__menu {
    inset: auto;
    top: 0;
    right: 0;
    font-size: var(--fs-600);
    width: 15vw;
    transform: translateX(100%);
    height: 100vh;
  }
  .header__menu-open {
    transform: translateX(0);
  }
}
.main {
  overflow: hidden;
  background-color: var(--clr-main-pink);
}

.footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  background-color: var(--clr-main-black);
  color: var(--clr-main-white);
}

.footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 15rem;
  width: 100%;
}

.footer__list > * {
  width: 25%;
  height: 100%;
  object-fit: cover;
}

.footer__logo {
  width: 6.5rem;
}

.footer__credits {
  padding: 0 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.home__about {
  padding: 1rem;
  padding-top: 5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--clr-main-black);
  color: var(--clr-main-white);
}

.home__about-logo {
  width: 80%;
  margin: auto;
}

.home__about-desc {
  max-width: 45rem;
}

.home__about-aurelie {
  width: 100%;
  max-width: 45rem;
}

.home__about-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  list-style: none;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.home__about-buttons > * {
  width: 100%;
}

.home__products {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}

.home__products-ad {
  width: 80%;
  max-width: 25rem;
}

.home__products-desc {
  text-align: center;
  width: 90%;
  max-width: 30rem;
}

.home__products-discover {
  border-radius: 0.5rem;
  width: 17rem;
  outline: none;
  height: 3rem;
  border: solid var(--clr-main-white) 2px;
  background-color: var(--clr-main-black);
  color: var(--clr-main-white);
  cursor: pointer;
}

.home__gallery-title {
  margin-bottom: 1rem;
}

.home__gallery-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 95%;
  max-width: 45rem;
  margin: auto;
}

.home__wedding {
  height: 100vh;
  margin-bottom: 5rem;
}

.home__wedding-title {
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.home__wedding-mirror {
  border: solid var(--clr-main-white) 10px;
  width: 80%;
  max-width: 35rem;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.home__wedding-infos {
  gap: 0.5rem;
  padding: 0.5rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  color: var(--clr-main-white);
  width: 100%;
  background-color: var(--clr-main-black);
  text-align: center;
}

.products {
  padding-top: 4rem;
  min-height: 95vh;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}

.products h2 {
  color: var(--clr-main-black);
}

.products__display {
  max-width: 45rem;
  width: 90%;
}

.products__display-header {
  width: 100%;
  display: grid;
  place-content: center;
  background-color: var(--clr-main-white);
  border-radius: 1rem 1rem 0 0;
}

.products__display-end {
  width: 100%;
  background-color: var(--clr-main-white);
  height: 3rem;
  margin-bottom: 5rem;
}

.products__row {
  height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: rgba(227, 223, 196, 0.3647058824);
  border-right: 8px solid var(--clr-main-white);
  border-top: 8px solid var(--clr-main-white);
  border-left: 8px solid var(--clr-main-white);
  padding: 0.5rem;
}

.products__cart {
  position: fixed;
  bottom: 0;
  width: 100vw;
  height: 5rem;
  background-color: var(--clr-main-black);
  color: var(--clr-main-white);
  padding: 0 1rem;
  gap: 0.5rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.products__cart-recap {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

.products__buy {
  position: absolute;
  right: 1rem;
}

.products__page {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  padding-top: 3rem;
  background-color: var(--clr-main-black);
  color: var(--clr-main-white);
  transform: translateX(-100vw);
  transition: transform 300ms ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 102;
}

.products__page h2 {
  color: var(--clr-main-white);
  width: 95%;
}

.products__page-open {
  transform: translateX(0);
}

.products__page-img {
  width: 100%;
  max-width: 30rem;
  max-height: 30rem;
}

.products__page-desc {
  margin: 0.75rem;
}

.products__page-close {
  position: absolute;
  top: 0.5rem;
  color: var(--clr-main-white);
  width: 2.5rem;
  height: 2.5rem;
  left: 0.5rem;
}

.products__label {
  height: 2rem;
}

.products__labels, .products__inputs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.5rem;
}

.products__inputs {
  align-items: flex-start;
}

.products__recap {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  padding-top: 3rem;
  overflow: auto;
  color: var(--clr-main-white);
  background-color: var(--clr-main-black);
  transform: translateX(100vw);
  transition: transform 300ms ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
}

.products__recap-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 3.5rem;
  height: 22rem;
  overflow: auto;
  width: 100%;
}

.products__recap-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}

.products__recap-close {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 4rem;
  left: 0.5rem;
  color: var(--clr-main-white);
  cursor: pointer;
}

.products__recap-open {
  transform: translateX(0);
}/*# sourceMappingURL=styles.css.map */