@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poiret+One&family=Quicksand:wght@300..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-collapse: collapse;
}

@font-face {
  font-family: "hawthorne-vintage";
  src: url("../fonts/hawthorne-vintage/Hawthorne Vintage.otf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Destine";
  src: url("../fonts/destine/Destine.otf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Elaine-kinandhita";
  src: url("../fonts/elaine-kinandhita/ElaineKinandhita.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

h1 {
  font-family: "hawthorne-vintage", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.875rem;
  line-height: 3rem;
  color: rgb(166, 91, 75);
  font-weight: 500;
}

h2 {
  color: white;
  background: rgb(215, 161, 132);
  padding: 0 2rem 0 2rem;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Destine";
  font-size: 2.875rem;
  line-height: 2.25rem;
  margin-top: 1.5rem;
  border-radius: 45% 15px 45% 25px;
  /* text-align: center; */
}

h3 {
  font-family: "Elaine-kinandhita";
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 2.25rem;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.5rem;
}

p,
th,
td,
li,
summary {
  font-family: "Quicksand", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-top: 0.75rem;
  list-style: none;
  text-align: justify;
}

a {
  text-decoration: none;
  font-family: "Destine";
  font-size: 2rem;
  line-height: 2.25rem;
  color: white;
}

p a {
  color: rgb(166, 91, 75);
  font-size: 1.15rem;
}

p a:hover {
  color: rgb(215, 161, 132);
}

strong {
  color: rgb(215, 161, 132);
  font-weight: bold;
}

article,
.next-event,
.atelier {
  background: white;
  border-radius: 25px;
  padding: 1rem;
}

article img {
  border-radius: 15px;
}

article li a {
  color: rgb(215, 161, 132);
  font-size: 1.15rem;
}

/* Géneral */
.main-container {
  display: grid;
  grid-auto-rows: minmax(80px, auto);
  grid-auto-columns: minmax(20px, auto);
  grid-gap: 1em;
  background: linear-gradient(to bottom, rgb(166, 91, 75), rgb(215, 161, 132));
  margin-top: 1em;
  border-radius: 2rem;
  padding: 1rem;
}

.main-container img,
.main-container source {
  max-width: 100%;
}

.presentation {
  grid-area: presentation;
}

.next-event {
  grid-area: next-event;
}

.atelier {
  grid-area: atelier;
}

.product-in-stock {
  grid-area: enStock;
}

.preorder {
  grid-area: preorder;
}

.carousel {
  position: relative;
  width: 100%;
  height: 320px;
  margin: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .carousel-wrapper {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%;
}
.carousel .carousel-item {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .carousel-item img {
  width: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 2em;
}
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.carousel button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.carousel button.prev {
  left: 10px;
}
.carousel button.next {
  right: 10px;
}
.carousel:hover button {
  opacity: 1;
}

.preorder .carousel {
  border-radius: 0;
  width: 100%;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10%;
  height: 10%;
  background: rgba(237, 237, 237, 0.5058823529);
  border-radius: 5%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 1s ease-in-out;
}

.overlay .button {
  background: rgb(215, 161, 132);
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.atelier-img-container:hover .overlay {
  opacity: 1;
}

.overlay .button:hover {
  background-color: #858585;
}

/*N'est pas pris en compte par tout les navigateur d'apès se que j ai vu*/
.overlay:has(.button:hover) {
  width: 100%;
  height: 100%;
}

.navigation-atelier,
.navigation-article {
  display: flex;
  justify-content: space-around;
  background: rgb(166, 91, 75);
  border-radius: 0 0 25px 25px;
  border-top: 1px dashed rgb(215, 161, 132);
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.navigation-atelier ul,
.navigation-article ul {
  display: flex;
  white-space: nowrap;
}
.navigation-atelier ul .logo-nav,
.navigation-article ul .logo-nav {
  display: none;
}
.navigation-atelier ul li a,
.navigation-article ul li a {
  color: white;
  padding: 0.5rem 3rem;
}
.navigation-atelier ul li a:hover,
.navigation-article ul li a:hover {
  color: #999;
}
.navigation-atelier ul li a.active,
.navigation-article ul li a.active {
  background-color: rgb(215, 161, 132); /* Rouge pour la page active */
  border-radius: 45%;
}

.article .navigation,
.atelier-page .navigation {
  border-radius: 25px 25px 0 0;
}

.info-page {
  display: block;
  grid-template-columns: 1fr 1fr;
}

header {
  text-align: center;
}
header a {
  text-decoration: none;
}
header a div img {
  width: clamp(100px, 20vw, 200px);
  height: auto;
}

/*============ Menu naviagation principale ==============*/
.navPrincipale nav {
  display: flex;
  justify-content: space-around;
  background: rgb(166, 91, 75);
  border-radius: 25px;
  padding: 5px 0 15px 0;
}
.navPrincipale nav ul {
  display: flex;
  white-space: nowrap;
}
.navPrincipale nav ul .logo-nav {
  display: none;
}
.navPrincipale nav ul li a {
  color: white;
  padding: 0.5rem 3rem;
}
.navPrincipale nav ul li a:hover {
  color: #999;
}
.navPrincipale nav ul li a.active {
  background-color: rgb(215, 161, 132); /* Rouge pour la page active */
  border-radius: 45% 15px 45% 25px;
}


.accueil .main-container {
  grid-template-areas: "presentation presentation atelier" "presentation presentation atelier" "presentation presentation next-event" "enStock enStock enStock" "preorder preorder preorder";
}

.accueil .next-event {
  margin-left: 0;
  margin-bottom: 0;
}

.accueil .atelier {
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
}

.accueil .product-in-stock {
  margin-top: 0;
  margin-bottom: 0;
}

.accueil .preorder {
  margin-top: 0;
}

.presentation {
  display: flex;
}
.presentation .video-container video {
  max-width: 30vw;
  max-height: 830px;
  float: right;
  padding: 1rem;
  border-radius: 45px;
}
.presentation li {
  margin-top: 30px;
}

.info-page {
  grid-area: info-page;
  background: white;
  border-radius: 25px;
}
.info-page #rubCentre {
  text-align: center;
}
.info-page a {
  white-space: nowrap;
}
.info-page a:hover {
  color: rgb(215, 161, 132);
}

.article .main-container {
  grid-template-areas: "info-page info-page info-page" "enStock enStock enStock" "preorder preorder preorder";
}

.presentationRub {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.presentationRub .presentationRubrique {
  border: 1px solid rgb(166, 91, 75);
  border-radius: 15px;
  padding: 10px;
}

.product-title {
  grid-column: span 2;
}

.second-title h3 {
  padding: 0;
}

.product-in-stock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.product-in-stock article,
.preorder article {
  position: relative;
  padding-bottom: 80px;
}

.product-title2 {
  grid-column: span 3;
}

.preorder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

span.icon {
  color: rgb(166, 91, 75);
}

section .accordion .conseil {
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 1rem;
}

details {
  margin-bottom: 0.4rem;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.accordion details {
  border: 1px solid rgb(166, 91, 75);
  border-radius: 8px;
}

details[open] {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

summary {
  cursor: pointer;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: rgb(215, 161, 132);
}

summary:hover {
  background-color: #f0f0f0;
  padding: 0.75rem 1rem;
  margin: 0rem;
}

.accordion p,
.accordion h3 {
  padding: 0 1rem;
}

.icon {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

details[open] > summary .icon {
  transform: rotate(90deg);
}

/* Positionnement absolu des prix en bas à droite de l'article */
.containerPrice {
  position: absolute;
  bottom: 15px; /* Placer en bas de l'article */
  right: 15px; /* Placer à droite de l'article */
  text-align: right; /* Aligner le texte à droite */
  margin: 10px; /* Espacement entre les prix et le bord */
  color: rgb(215, 161, 132);
}

/* Aligner la première colonne à gauche */
.price-table td:first-child {
  text-align: left; /* Aligner la description à gauche */
  padding-right: 20px;
}

.atelier-page .main-container {
  grid-template-areas: "atelier" "next-event";
  display: block;
}

.atelier-page article {
  margin-bottom: 15px;
}
.atelier-page article .carousel {
  float: left;
  max-width: 300px;
  height: 300px;
  margin: 2rem;
}
.atelier-page article .right {
  float: right;
}
.atelier-page article .right .rectangle {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.atelier-page article a {
  color: rgb(166, 91, 75);
  margin-left: 3rem;
  font-size: 1.3rem !important;
}
.atelier-page article .atelier-li a {
  color: rgb(166, 91, 75) !important;
  font-size: inherit;
}

.atelier-page .video-container video {
  max-width: 30vw;
  max-height: 300px;
  float: right;
  border-radius: 45px;
  margin: 2rem;
}

.atelier-info .img-banner {
  text-align: center;
  margin-bottom: 2rem;
}
.atelier-info .img-banner img {
  height: 100px;
  color: rgb(166, 91, 75);
}
.atelier-info .svg {
  color: rgb(166, 91, 75);
}
.atelier-info li {
  list-style: circle;
  margin-left: 40px;
}

.event .main-container {
  grid-template-areas: "next-event" "info-page";
}

.pEvent {
  background: white;
  border-radius: 25px;
  padding: 15px;
}

.next-event {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 0;
  overflow-x: auto;
}
.next-event table {
  text-align: center;
  margin-top: 15px;
}
.next-event table th,
.next-event table td {
  padding: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.438);
  text-align: center;
}
.next-event table thead {
  background-color: rgb(166, 91, 75);
  color: white;
}
.next-event table tbody tr:nth-child(odd) {
  border-color: rgba(255, 255, 255, 0.438);
}
.next-event table tbody tr:nth-child(even) {
  background-color: rgb(215, 161, 132);
  color: white;
}

.apropos {
  /* ===== CAROUSEL VIDEO ===== */
  /* Conteneur ratio */
}
.apropos section {
  padding: 15px;
  background-color: white;
  border-radius: 25px;
}
.apropos section .title-page {
  display: flex;
  justify-content: space-around;
}
.apropos section .title-page h2 {
  margin-top: 0;
  margin-bottom: 15px;
}
.apropos .carouselvideo {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.apropos .carouselvideo button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.apropos .carouselvideo button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.apropos .carouselvideo button.prevvid {
  left: 10px;
}
.apropos .carouselvideo button.nextvid {
  right: 10px;
}
.apropos .carouselvideo:hover button {
  opacity: 1;
}
.apropos .carousel-wrapper-video {
  display: flex; /* OBLIGATOIRE */
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.apropos .carousel-item-video {
  min-width: 100%; /* 1 vidéo = 1 slide */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease-in-out;
}
.apropos .carousel-item-video figure {
  width: 100%;
  max-width: 600px; /* ajuste si besoin */
  aspect-ratio: 9/16; /* format vidéo standard */
  background: black;
  overflow: hidden;
  border-radius: 12px;
}
.apropos .carousel-item-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  display: block;
}

.contact section {
  padding: 15px;
  background-color: white;
  border-radius: 25px;
}
.contact section h3.success {
  background: #a8c3a0;
  border: 2px solid green;
}
.contact section h3.error {
  background: #c97a63;
  border: 2px solid firebrick;
}
.contact section h3.success,
.contact section h3.error {
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 10px;
  border-radius: 15px;
}

.contact .title-page {
  display: flex;
  justify-content: space-around;
}
.contact .title-page h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

form {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* Boutons */
}
form label {
  margin-top: 10px;
  flex-basis: 20%; /* Taille fixe pour le label */
  text-align: right;
  padding-right: 10px;
  font-weight: bold;
  font-size: 1.125rem;
  color: #555;
  white-space: nowrap;
}
form input,
form textarea {
  flex-basis: 60%; /* Prend le reste de la ligne */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.125rem;
}
form textarea {
  resize: vertical;
  min-height: 100px;
}
form .honeypot {
  display: none;
}
form input[type=submit],
form input[type=reset] {
  flex-basis: 30%; /* Chaque bouton prend 48% pour être côte à côte */
  margin: 0 auto;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 17px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}
form input[type=submit] {
  background-color: rgb(215, 161, 132);
  color: white;
}
form input[type=submit]:hover {
  background-color: rgb(9, 138, 9);
}
form input[type=reset] {
  background-color: rgb(166, 91, 75);
  color: white;
}
form input[type=reset]:hover {
  background-color: #f13636;
}

footer {
  margin-top: 1rem;
  background: rgba(237, 237, 237, 0.5882352941);
  display: flex;
  padding: 1.5em;
  border-radius: 2em 2em 0 0;
}
footer ul {
  grid-template-columns: repeat(3, 1fr);
  flex: 1;
}
footer ul a {
  font-size: 1rem;
  color: black;
  line-height: 0;
  text-decoration: none;
}
footer .insta {
  color: #e1306c;
  font-size: 1rem;
  margin-right: 50%;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}
footer .insta p {
  margin-top: 0;
  padding-top: 0;
}

/* Bouton pour remonté en haut de la page */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 5px;
  width: 50px;
  height: 50px;
  background: rgba(215, 161, 132, 0.596);
  color: black;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 3s, transform 3s, background 1s;
}

.back-to-top:hover {
  background: rgba(166, 92, 75, 0.808);
  color: white;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(15px);
}

@media screen and (max-width: 1280px) {
  .accueil .main-container {
    display: grid;
    grid-template-areas: "presentation presentation" "enStock enStock" "preorder preorder" "atelier atelier" "next-event next-event";
  }
}
@media screen and (max-width: 1280px) {
  .navPrincipale .navigation {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
  }
  .navPrincipale .navigation ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(3, 1fr);
    flex: 1;
    justify-content: space-evenly;
    align-items: center;
  }
  .navPrincipale .navigation ul a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: color 0.3s;
  }
  .navigation-atelier,
  .navigation-article {
    border-radius: 25px;
  }
  /* Afficher le menu quand la classe 'open' est ajoutée */
  .navigation.open {
    transform: translateX(0);
  }
  /* Bouton burger */
  .burger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
  }
  .burger div {
    width: 100%;
    height: 5px;
    background: linear-gradient(to left, rgb(166, 91, 75), rgb(215, 161, 132));
    transition: transform 0.3s ease-in-out, opacity 0.3s;
    border-radius: 4px;
  }
  /* Animation du menu burger */
  .burger.open div:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
    background: rgb(166, 91, 75);
  }
  .burger.open div:nth-child(2) {
    opacity: 0;
  }
  .burger.open div:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
    background: rgb(215, 161, 132);
  }
  .main-container .presentation p {
    margin-top: 40px;
  }
  .main-container .presentation li {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1150px) {
  .main-container .presentation p {
    margin-top: 0;
  }
  .main-container .presentation li {
    margin-top: 0;
  }
}
@media screen and (max-width: 850px) {
  .accueil .main-container {
    display: grid;
    grid-template-areas: "presentation " "enStock " "preorder " "atelier " "next-event ";
  }
  .product-title,
  .product-title2 {
    grid-column: span 1;
    text-align: center;
  }
  .product-in-stock,
  .preorder {
    grid-template-columns: 1fr;
  }
  .accueil .dnone-accueil-md {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  form {
    flex-direction: column;
  }
  form label {
    display: block;
    text-align: center;
  }
  form input::-moz-placeholder {
    text-align: center;
  }
  form input::placeholder {
    text-align: center;
  }
  .presentationRub {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* espace entre les blocs, optionnel */
    padding: 1rem; /* optionnel pour un peu d'air autour */
  }
  .presentationRubrique {
    /* optionnel : pour que chaque bloc prenne toute la largeur */
    width: 100%;
  }
  .atelier-page article .carousel {
    float: none;
    margin: 0 auto;
  }
  footer .insta {
    margin-right: 20%;
  }
}
@media screen and (max-width: 625px) {
  .navigation-atelier ul,
  .navigation-article ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 540px) {
  tr td:first-child,
  tr th:first-child {
    display: none;
  }
  footer {
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
  footer ul {
    order: 1;
    flex: 1 1 auto;
  }
  footer .insta {
    order: 2;
    margin-right: 40%;
  }
  footer .logo {
    order: 0;
  }
}
@media screen and (max-width: 400px) {
  tr td:last-child,
  tr th:last-child {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */