@charset "UTF-8";
/* -------------------------------------------------- */
/* ---------- Typography ---------- */
/* ----- Import ----- */
@font-face {
  font-family: "Montserrat-regular";
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/Montserrat-Regular.ttf);
}
@font-face {
  font-family: "Montserrat-medium";
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/Montserrat-Medium.ttf);
}
@font-face {
  font-family: "Montserrat-semibold";
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/Montserrat-SemiBold.ttf);
}
@font-face {
  font-family: "Montserrat-bold";
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/Montserrat-Bold.ttf);
}
/* -------------------------------------------------- */
/* ---------- Font weight ---------- */
/* -------------------------------------------------- */
/* ---------- Couleurs ---------- */
/* -------------------------------------------------- */
/* ---------- Responsive variable ---------- */
/* -------------------------------------------------- */
/* ---------- Générale ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat-regular", sans-serif;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: #F2F2F2;
  color: #292929;
}

.section-inner {
  width: calc(100% - 2rem);
  margin: 0 auto;
}

.correct {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.incorrect {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

@media (min-width: 768px) {
  .section-inner {
    max-width: 748px;
  }
}
@media (min-width: 992px) {
  .section-inner {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .section-inner {
    max-width: 1180px;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

/* -------------------------------------------------- */
/* ---------- Titre ( Heading ) ---------- */
h1, h2, h3 {
  font-family: "Montserrat-regular", sans-serif;
}

h1 {
  font-size: 3.2rem;
  line-height: 4rem;
}

h2 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}

h3 {
  font-size: 2rem;
  line-height: 2.8rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }
  h2 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  h3 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
/* -------------------------------------------------- */
/* ---------- Paragraphe ---------- */
p,
a,
span {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  p,
  a,
  span {
    font-size: 1.8rem;
  }
}

/* -------------------------------------------------- */
/* ---------- Header du site ---------- */
/* -------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: linear-gradient(to bottom, #0063B0 0%, #0063B0 40%, transparent 100%);
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}
.header-logo {
  height: 4rem;
}
.header-logo img {
  height: 100%;
}
.header-menu {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 5rem;
  list-style: none;
}
.header-menu-item > a {
  text-decoration: none;
  color: #F2F2F2;
  font-weight: 600;
}

/* -------------------------------------------------- */
/* ---------- Footer du site ---------- */
/* -------------------------------------------------- */
.footer {
  background-color: #04084d;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.footer-wrapper {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10rem;
  padding: 4rem 0;
}
.footer-logo {
  height: 5.5rem;
}
.footer-logo > img {
  height: 100%;
}
.footer-menu {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10rem;
}
.footer-menu-partner, .footer-menu-map {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
}
.footer-menu-partner-title, .footer-menu-map-title {
  color: #F2F2F2;
}
.footer-menu-partner-list, .footer-menu-map-list {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 0.5rem;
}
.footer-menu-partner-item > a, .footer-menu-map-item > a {
  color: #F2F2F2;
  text-decoration: none;
}

/* -------------------------------------------------- */
/* ---------- Style des boutons ---------- */
/* -------------------------------------------------- */
.button, .button-secondary, .button-primary {
  padding: 1rem 2rem;
  color: #F2F2F2;
  background-color: #0063B0;
  border-radius: 10px;
  border: 1px solid #0063B0;
  font-size: 1.6rem;
  transition: all 0.2s ease-in-out;
}
.button-group {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: start;
}

input:disabled,
button:disabled {
  opacity: 0.6;
  user-select: none;
}

.button-primary:hover {
  color: #0063B0;
  background-color: #F2F2F2;
}

.button-secondary {
  color: #0063B0;
  background-color: #F2F2F2;
  border: 1px solid #0063B0;
}
.button-secondary:hover {
  color: #F2F2F2;
  background-color: #0063B0;
}

.link {
  font-size: 1.6rem;
  text-decoration: underline;
  color: #292929;
}

/* -------------------------------------------------- */
/* ---------- Page d'accueil du site ---------- */
/* -------------------------------------------------- */
body {
  position: relative;
}

main {
  z-index: 0;
}
main * {
  z-index: 2;
}

/* Section Banner */
.banner {
  background: linear-gradient(to top, #F2F2F2 0%, #61B3E3 10%, #0063B0 90%);
  min-height: 100vh;
  overflow: hidden;
}
.banner-wrapper {
  height: 100vh;
  width: 100%;
  position: relative;
}
.banner-wrapper > img {
  height: 70vh;
  position: absolute;
  bottom: 0rem;
  left: 70%;
  transform: translateX(-50%);
}
.banner-content {
  padding-top: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 2rem;
}
.banner-content-title {
  color: #F2F2F2;
  max-width: 50%;
}
.banner-content-description {
  color: #F2F2F2;
  max-width: 50%;
  font-weight: 500;
}
.banner-content-button * {
  text-decoration: none;
}

.informations {
  background: linear-gradient(to bottom, #F2F2F2 0%, #61B3E3 2%, #0063B0 5%, #04084d 95%);
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 5rem;
}
.informations .about,
.informations .goal {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 4.5rem;
}
.informations .about-content,
.informations .goal-content {
  max-width: 60%;
}
.informations .about-content > *,
.informations .goal-content > * {
  color: #F2F2F2;
}
.informations .about-content > h2,
.informations .goal-content > h2 {
  margin-bottom: 1.5rem;
}
.informations .about-content > p,
.informations .goal-content > p {
  margin-bottom: 1rem;
  line-height: 3rem;
}
.informations .about-illustration,
.informations .goal-illustration {
  width: 25rem;
  height: 25rem;
}
.informations .about-illustration > img,
.informations .goal-illustration > img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.informations .goal {
  flex-direction: row-reverse;
  justify-content: start;
  gap: 5rem;
}
.informations #aboutLink {
  position: absolute;
  transition: all 0.2s ease-in-out;
}

.bubble {
  position: absolute;
  bottom: 0; /* Positionne les bulles tout en bas de la page */
  width: 20px;
  height: 20px;
  background-image: url(../../images/bulle.png);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  animation: rise 5s linear infinite;
  user-select: none;
  z-index: 1;
}

@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  65% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(calc(100% - var(--banner-height) * 2));
    opacity: 0;
  }
}
.podcast {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.podcast-content-title {
  color: #F2F2F2;
  margin-bottom: 1rem;
}

/* -------------------------------------------------- */
/* ---------- Page d'education ---------- */
/* -------------------------------------------------- */
main {
  background: linear-gradient(to top, #61B3E3 0%, #0063B0 90%);
  position: relative;
}

.educativ-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.rules {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 2rem;
  margin-top: 15rem;
  color: #F2F2F2;
  width: 95%;
}
.rules-title {
  font-size: 3rem;
  font-weight: 700;
}
.rules-description {
  font-size: 2rem;
  font-weight: 600;
}

.img-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.img-container > img {
  height: 60rem;
  display: block;
}
.img-container > map {
  position: relative;
}
.img-container > map > area {
  cursor: pointer;
  display: block;
}
.img-container .popup-brain-quizz,
.img-container .popup-fishing {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  display: none;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
  border: 1px solid #0063B0;
  border-radius: 10px;
  width: fit-content;
  height: fit-content;
  background-color: white;
  width: 30rem;
}
.img-container .popup-brain-quizz-title,
.img-container .popup-fishing-title {
  font-size: 2rem;
}
.img-container .popup-brain-quizz-description,
.img-container .popup-fishing-description {
  font-size: 1.6rem;
}
.img-container .popup-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: #0063B0;
  display: none;
}

/* -------------------------------------------------- */
/* ---------- Style du quizz ---------- */
/* -------------------------------------------------- */
.quizz-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F2F2F2;
  border-radius: 10px;
  border: 1px solid #0063B0;
  height: 80vh;
  width: 60%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.quizz-wrapper .count-question {
  font-size: 1.6rem;
}

.question-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 3rem;
}
.question-wrapper .answer-list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
}
.question-wrapper .answer-list > form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.question-wrapper .answer-list label {
  text-align: center;
  font-size: 2rem;
  line-height: 2.5rem;
  width: 100%;
  padding: 1rem 2rem;
  outline: 2px solid #61B3E3;
  border-radius: 10px;
}
.question-wrapper .answer-list label.select {
  outline: 4px solid #0063B0;
}
.question-wrapper .question-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.question-title {
  text-align: center;
  margin: 0 4rem;
}

.results-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background-color: #F2F2F2;
  border-radius: 10px;
  border: 1px solid #0063B0;
  height: 80vh;
  width: 60%;
}
.results-wrapper .close-quizz {
  border: none;
  background-color: transparent;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.results-title {
  color: #04084d;
}

.jeu-peche {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F2F2F2;
  border-radius: 10px;
  border: 1px solid #0063B0;
  height: 100vh;
  width: 100%;
  display: none;
}
.jeu-peche .zone-peche {
  background-color: #61B3E3;
  width: 100%;
  height: 70%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.jeu-peche .zone-peche .item {
  cursor: pointer;
}
.jeu-peche .zone-peche .item[data-name=Poisson] {
  animation: roulis 4s infinite ease-in-out;
}
.jeu-peche .zone-depot {
  background-color: #F2F2F2;
  width: 100%;
  height: 30%;
  padding: 0 2rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.jeu-peche .item {
  width: 20rem;
  aspect-ratio: 1/1;
  cursor: default;
}

.result {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F2F2F2;
  border-radius: 10px;
  border: 1px solid #0063B0;
  height: 100vh;
  width: 100%;
  display: none;
  flex-direction: row;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.result .close-fishing {
  border: none;
  background-color: transparent;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 15rem;
  right: 2rem;
}

@keyframes roulis {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
@keyframes jumping {
  0% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-1rem);
  }
  30% {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=style.css.map */
