@charset "UTF-8";
/* Reset des marges, paddings et box-sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corps du document */
html,
body {
  min-height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
}

/* Titres */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  line-height: 1.2;
}

/* Listes */
ul,
ol {
  list-style: none;
}

/* Liens */
a {
  text-decoration: none;
  color: inherit;
}

/* Images et médias */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Formulaires */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Tableaux */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Sélecteurs globaux */
button {
  cursor: pointer;
  background: none;
  border: none;
}

html {
  font-size: 10px;
}

.list-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

body {
  font-family: "Poppins", serif;
  background-color: #fff3e0;
  font-size: 1.5rem;
  overflow-x: hidden;
}

ul {
  list-style: disc;
  padding-left: 2rem;
}

section.first {
  overflow: hidden;
}

.title {
  font-family: "Sanchez", serif;
  text-transform: uppercase;
  border-radius: 1rem;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

.title-page {
  padding: 0 1.5rem 0 1.5rem;
  font-size: 3rem;
  text-align: center;
  margin: 3rem 0 3rem 0;
}

.button {
  text-decoration: none;
  display: inline-block;
  background-color: #f4a261;
  color: #fff;
  padding: 0.5rem 1rem;
  transition: all 0.5s ease;
  border-radius: 1rem;
  margin: 0 auto;
  font-size: 1.8rem;
}
.button.--small {
  font-size: 1.5rem;
}
.button.--violet {
  background-color: #2a1e37;
}
.button.--violet:hover {
  background-color: #fccd60;
  color: #2a1e37;
}
.button:hover {
  background-color: #e76f51;
  transition: all 0.5s ease;
}

.tag {
  padding: 0.5rem 1rem;
  background-color: #e76f51;
  color: #fff;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-family: "Poppins", serif;
}
.tag.--yellow {
  background-color: #fccd60;
  color: #000;
}

nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  margin: 1.5rem;
}
nav ul {
  justify-content: center;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
nav li {
  padding: 3px;
}

.head {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 1.5rem;
}
.head img {
  max-height: 150px;
  max-width: 150px;
}
.head h1 {
  font-size: 4rem;
  background-color: #f6f1ed;
  border-radius: 1rem;
  padding: 0.5rem;
}
.head .legend {
  font-size: 2rem;
  background-color: #fccd60;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  position: relative;
  transform: rotate(-1deg);
  margin-bottom: 2rem;
}
.head .tag {
  transform: rotate(-7deg);
  position: relative;
  top: -2rem;
  right: -4rem;
  align-self: flex-end;
}
.head .text {
  display: flex;
  flex-direction: column;
}

#steps {
  max-height: 0;
  transition: all 0.25s ease;
}
#steps.open {
  max-height: 100000px;
  transition: all 0.25s ease;
}

.explainations {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.explainations .description {
  background-color: #f6f1ed;
  font-size: 2rem;
  border-radius: 1rem;
  margin: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.explainations .notices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.explainations .button {
  margin-top: 2rem;
}

.legend {
  list-style: none;
  text-align: center;
  font-size: 2rem;
}

.point {
  background-color: #e76f51;
  color: #fff;
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  margin: 2rem;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
}
.point .number {
  --ombre: rgba(0, 0, 0, 0.2);
  text-shadow: 8px 8px 0px var(--ombre);
  font-size: 8rem;
  font-family: "Chewy";
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 2rem;
}
.point .btns {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.point .btns a {
  text-decoration: none;
}
.point.--1 {
  box-shadow: 10px 10px 0px rgba(231, 111, 81, 0.2509803922);
}
.point.--1 .icon {
  background-image: url("../img/icon1.png");
}
.point.--1 .number {
  --ombre: rgba(0, 0, 0, 0.2);
}
.point.--2 {
  background-color: #f6f1ed;
  color: #000;
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.25);
}
.point.--2 .icon {
  background-image: url("../img/icon2.png");
}
.point.--2 .number {
  color: #e76f51;
  --ombre: rgba(0, 0, 0, 0.2);
}
.point.--3 {
  background-color: #f4a261;
  box-shadow: 10px 10px 0px rgba(244, 162, 97, 0.2509803922);
}
.point.--3 .icon {
  background-image: url("../img/icon3.png");
}
.point.--3 .number {
  color: #2a1e37;
  --ombre: rgba(0, 0, 0, 0.2);
}
.point.--4 {
  background-color: #2a1e37;
  box-shadow: 10px 10px 0px rgba(42, 30, 55, 0.2509803922);
}
.point.--4 .icon {
  background-image: url("../img/icon4.png");
}
.point.--4 .number {
  color: #e76f51;
  --ombre: #f4a26140;
}
.point .icon {
  height: 100px;
  width: 100px;
  margin-top: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1.4);
  transform-origin: center;
}
.point h2 {
  font-family: "Chewy";
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 3.2rem;
  line-height: 3.2rem;
}
.point p a {
  text-decoration: underline;
}
.point .tag {
  transform: rotate(2deg);
  display: inline-block;
  position: absolute;
  right: 2rem;
  top: 10rem;
}

.list-animals .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  max-width: 400px;
  position: relative;
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  margin: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card img {
  aspect-ratio: 16/12;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .name {
  font-family: "Sanchez";
  font-size: 3rem;
  font-weight: bold;
  color: #e76f51;
}
.card .code {
  position: absolute;
  top: 1rem;
  left: 1rem;
  height: 50px;
  width: 50px;
  background-image: url("../img/citrouille.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #2a1e37;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  font-weight: bold;
}
.card .infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 1.5rem;
}
.card .name,
.card .owner {
  margin-bottom: 1rem;
}
.card .owner,
.card .datas {
  font-size: 1.8rem;
  color: #000;
  font-weight: normal;
}

.carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
.carousel #carousel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.carousel .text {
  justify-content: center;
  text-align: center;
}
.carousel.hidden {
  display: none;
}
.carousel .desc {
  background: #f6f1ed;
  border-radius: 2rem;
  padding: 2rem;
  font-size: 1.5rem;
  min-width: 50vw;
  overflow-y: auto;
  max-height: 30vh;
}
.carousel .desc p {
  color: #000;
  font-size: 2rem;
  margin: 0;
  line-height: 1.5;
}
.carousel .desc i {
  font-size: 1.6rem;
}
.carousel .desc .single span {
  display: block;
  text-align: center;
}
.carousel .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 6rem;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.carousel img {
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.carousel p {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 20px;
  white-space: pre-line;
}
.carousel .prev,
.carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: #f4a261;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 50px;
  width: 50px;
}
.carousel .prev:hover,
.carousel .next:hover {
  background: #e76f51;
}
.carousel .prev {
  left: 20px;
}
.carousel .next {
  right: 20px;
}
.carousel .tag {
  position: absolute;
  top: 3rem;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .carousel img {
    max-height: 50%;
  }
  .carousel p {
    font-size: 1rem;
  }
}

.tag-code span {
  background-color: #f6f1ed;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  display: inline-block;
  color: #2a1e37;
}

footer {
  margin-top: 3rem;
  background-color: #f6f1ed;
  padding: 1.5rem;
  text-align: center;
}
footer a {
  color: #e76f51;
}

#resultats .list-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#resultats .card-win {
  color: #fff;
  background-color: #f4a261;
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  margin: 2rem;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
}
#resultats .card-win.--1 {
  background-color: #C2B067;
}
#resultats .card-win.--2 {
  background-color: #E0E0E0;
  color: #e76f51;
}
#resultats .card-win.--3 {
  background-color: #FCA956;
}
#resultats .card-win h2 {
  margin-bottom: 2rem;
  font-weight: bold;
  font-family: "Sanchez", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  text-transform: uppercase;
}
#resultats .card-win img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
#resultats .card-win .icon-emoji {
  font-size: 10rem;
  position: absolute;
  left: 3rem;
  bottom: 3rem;
}/*# sourceMappingURL=styles.css.map */