@charset "UTF-8";
/***********************
 * Variables globales
 **********************/
/***********************
 * Couleurs globales
 **********************/
/***********************
 * Imports
 **********************/
/*************************************************
 *
 * Fonts and Base Styles
 *
 *************************************************/
@import url("https://fonts.googleapis.com/css2?family=Bona+Nova:wght@400;700&family=Roboto:wght@300;400;500&display=swap");
/* Réinitialiser les marges, les espacements et définir box-sizing sur tous les éléments */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  height: 100%; }

@media (min-width: 768px) {
  html {
    font-size: 17px; } }

@media (min-width: 1024px) {
  html {
    font-size: 18px; } }

body {
  color: #2c3e50;
  background-color: #f8f9fa;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  margin: 0;
  padding: 0; }

.serif-font {
  font-family: 'Bona Nova', serif; }

/*************************************************
 *
 * Titres et liens
 *
 *************************************************/
h1, h2, h3, .title {
  font-family: 'Bona Nova', serif; }

h1, h2, h3, h4, h5, h6 {
  margin-bottom: .5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a252f;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.02em; }

h1 {
  font-size: 2.5rem;
  color: #011F26;
  margin-top: 2.5rem;
  margin-bottom: 1rem; }

h2 {
  margin-top: 2rem;
  font-size: 1.75em;
  color: #011F26; }

h3 {
  margin-top: 1.5rem;
  font-size: 1.4em; }

h4, h5, h6 {
  margin-top: 1rem;
  font-size: 1.1em; }

a {
  color: #e2970d;
  text-decoration: none;
  transition: all 0.3s ease; }

/* `:focus` is linked to `:hover` for basic accessibility */
a:hover,
a:focus {
  opacity: 0.8;
  color: #0a5f73; }

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #0c7c94;
  outline-offset: 2px; }

/* Selection Color */
::selection {
  background-color: #0c7c94;
  color: #ffffff; }

::-moz-selection {
  background-color: #0c7c94;
  color: #ffffff; }

/*************************************************
 *
 * Contenu styles utilisés par les classes sass
 *
 *************************************************/
/* Width & Margin Management */
.w-100 {
  width: 100px; }

.w-200 {
  width: 200px; }

.h-100 {
  height: 100%; }

.mr-1 {
  margin-right: 1rem; }

img {
  max-width: 100%;
  object-fit: contain; }

.no-margin {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important; }

/******************************************************
 *
 * General Layout
 *
 ******************************************************/
.grid {
  display: grid; }

.grid-2 {
  grid-template-columns: 1fr 1fr; }

.soft-flex {
  display: flex;
  gap: 2rem; }

.single-figure-container {
  display: flex;
  justify-content: center; }

.end-action-container {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 1rem;
  padding-top: 1rem; }

.site-header {
  background: #025E73;
  color: white;
  height: 10vh;
  position: sticky;
  top: 0;
  z-index: 90; }

.site-header__content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.site-header__title {
  margin-left: 80px;
  height: 100%;
  width: auto; }

.site-header__logo {
  width: auto;
  height: 100%;
  transition: all 0.5s ease; }

.site-header__nav a {
  color: white;
  text-decoration: none; }

.site-header__nav a:hover {
  opacity: 0.8;
  text-decoration: underline; }

.inline-menu-list {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  padding: 0;
  margin: 0; }
  .inline-menu-list li {
    margin-right: 1.5rem;
    display: flex;
    align-items: center; }
  .inline-menu-list li:last-of-type {
    margin-right: 0.8rem; }

.membership-header-button {
  font-size: 1rem;
  padding: .5rem 1.5rem;
  min-width: initial; }

.menu-burger {
  position: relative; }

@media (max-width: 1024px) {
  .site-header__title {
    padding-right: 1rem; }
  .site-header__nav {
    line-height: 2rem; } }

/****************************
 * Nouveau menu hamburger
 *
 ****************************/
.hamburger {
  position: absolute;
  left: -100vw; }

.hamburger + label {
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1;
  background: #fff;
  border-radius: 9999px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }

/* Design de base avec 3 lignes horizontales */
.hamburger + label span {
  background: #6753ea;
  width: 40px;
  height: 5px;
  position: relative; }

.hamburger + label span::before,
.hamburger + label span::after {
  position: absolute;
  background: #6753ea;
  width: inherit;
  height: inherit;
  content: ""; }

.hamburger + label span::before {
  top: -10px; }

.hamburger + label span::after {
  top: 10px; }

/* Design quand le menu est ouvert */
.hamburger:checked + label span {
  background: transparent; }

.hamburger:checked + label span::after,
.hamburger:checked + label span::before {
  top: 0; }

.hamburger:checked + label span::before {
  transform: rotate(45deg); }

.hamburger:checked + label span::after {
  transform: rotate(-45deg); }

/* Menu Slide */
nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 300px;
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(-100%);
  will-change: transform; }

nav ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 6rem; }

nav ul li {
  margin: 1rem; }

nav a {
  font-size: 1rem;
  color: white;
  opacity: 0;
  visibility: hidden; }

.hamburger:checked + label ~ nav {
  transform: unset;
  /*on revient à l'état initial*/ }

.hamburger:checked + label ~ nav a {
  visibility: visible;
  opacity: 1; }

/* Accessibilité */
.hamburger:focus-visible ~ label,
nav a:focus-visible,
nav a:focus {
  outline: 2px solid #6753ea;
  outline-offset: 4px; }

.hamburger:not(:focus-visible) ~ label,
nav a:not(:focus):focus-visible {
  outline: none; }

.hamburger:not(:focus-visible):focus ~ label {
  box-shadow: 0 0 0 4px #5740e7; }

@media (prefers-reduced-motion: no-preference) {
  .hamburger + label span {
    transition: background 10ms 300ms; }
  .hamburger + label span::before,
  .hamburger + label span::after {
    transition: top 300ms 350ms, transform 300ms 50ms; }
  .hamburger:checked + label span::after,
  .hamburger:checked + label span::before {
    transition: top 300ms 50ms, transform 300ms 350ms; }
  .hamburger:focus-visible ~ label,
  nav a:focus-visible,
  nav a:focus {
    transition: outline-offset .25s ease; }
  nav {
    transition: transform 0.5s; }
  nav a {
    transition: visibility 500ms,opacity 500ms 300ms; } }

@media (min-width: 768px) {
  nav {
    width: 400px; } }

@media (min-width: 1024px) {
  nav {
    width: 500px; } }

.button {
  display: inline-block;
  cursor: pointer;
  background-color: #F2A71B;
  color: white;
  padding: 0.5rem 1.8rem;
  text-transform: uppercase;
  text-decoration: none;
  user-select: none;
  min-width: 8rem;
  font-size: 1rem;
  border: 0;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent; }
  .button:hover {
    opacity: 0.8;
    background-color: #f6c15f;
    color: black;
    border: 1px solid rgba(1, 1, 1, 0.3);
    border-style: inset; }

.button.button-border {
  border: 1px solid #A56F09; }

.button.button-transparent {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid white; }
  .button.button-transparent:hover {
    background-color: transparent;
    opacity: 0.5;
    color: white; }

.button.button-light {
  background-color: transparent;
  border-color: #F2A71B;
  border-width: 1px;
  border-style: solid;
  color: #F2A71B; }
  .button.button-light:hover {
    background-color: transparent;
    color: white;
    background-color: #F2A71B; }

.button.button-sm {
  font-size: 1rem;
  font-weight: 500; }

/***************************************************************
 *
 * Gestion de l'image de présentation
 *
 **************************************************************/
.cover__container {
  position: relative;
  min-height: 40rem; }

.cover__back {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 0;
  z-index: 1; }

.cover__text-intro {
  position: relative;
  z-index: 2;
  background-color: #025E73;
  color: white;
  margin: 0;
  margin-bottom: 0; }

.cover__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(14, 14, 14, 0.2); }

.cover__content {
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; }

@keyframes cover_title_in {
  0% {
    left: -10rem; }
  100% {
    left: 0; } }

.cover__title-container {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  animation: cover_title_in 1s cubic-bezier(0.39, 0.58, 0.57, 1);
  background-color: rgba(1, 1, 1, 0.5); }

.cover__title {
  font-weight: bold;
  color: white;
  font-size: 3em;
  margin: 0;
  margin-bottom: 0;
  z-index: 2;
  display: block; }

.accent-separator {
  width: 100%;
  height: 0;
  border-bottom: 0.3rem solid #F2A71B; }

/******************************************************
 *
 * Gestion de la video intégrée
 *
 *****************************************************/
.dark-section, .landing-section, .trailer-section {
  background-color: #025E73;
  color: white;
  box-shadow: inset 0px 0px 20px 10px rgba(0, 0, 0, 0.2); }
  .dark-section h2, .landing-section h2, .trailer-section h2 {
    color: white; }

.trailer-section .video {
  z-index: 3;
  position: relative;
  border-radius: 16px; }

.landing-section {
  position: relative;
  overflow: clip; }
  .landing-section .section-title {
    padding-top: 2rem; }
  .landing-section .landing-section__content {
    z-index: 2;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem; }

/*****************************************************
 *
 * Requetes Media
 *
 *****************************************************/
@media (max-width: 1024px) {
  .cover__back {
    background-position-y: 0; }
  .cover__title {
    font-size: 2.5rem; } }

@media (min-width: 1024px) {
  .cover__back {
    background-position-y: -5em; } }

@media (min-width: 1600px) {
  .cover__back {
    background-position-x: center;
    background-position-y: -10em; } }

.page-container {
  width: 80%;
  margin: 0 auto; }

.page-container-large {
  width: 75%;
  margin: 0 auto; }

.page-full {
  padding: 0 2rem; }

@media (min-width: 1600px) {
  .page-container {
    width: 58%; } }

@media (min-width: 1024px) {
  .page-container {
    width: 65%; } }

@media (max-width: 1024px) {
  .page-container {
    width: 75%; } }

@media (max-width: 768px) {
  .page-container {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem; }
  .page-full {
    padding-left: 2rem;
    padding-right: 2rem; } }

@media (max-width: 450px) {
  .page-container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem; }
  .page-full {
    padding-left: 1rem;
    padding-right: 1rem; } }

body {
  min-height: 100%;
  display: flex;
  flex-direction: column; }

.footer-push {
  flex-grow: 1; }

.site-footer {
  border-top: 0.3rem solid #F2A71B;
  margin-top: 3rem;
  background-color: #025E73;
  color: white; }
  .site-footer a {
    color: white;
    text-decoration: none; }
  .site-footer a:hover {
    opacity: 0.8;
    text-decoration: underline; }

.site-footer__title-recall {
  width: 9em; }
  .site-footer__title-recall .site-footer__logo {
    height: 90%;
    width: 90%; }

.site-footer__content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0rem;
  padding-bottom: 0rem; }

.site-footer__links {
  padding-top: 0.5rem;
  align-content: center; }

.inline-footer-menu-list {
  display: block; }
  .inline-footer-menu-list li {
    float: left;
    width: 12rem;
    display: table-cell;
    /*display:inline-table-cell;*/ }

.site-footer-socials {
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-end;
  list-style-type: none; }
  .site-footer-socials li {
    margin-right: 1.5rem; }
  .site-footer-socials li:last-of-type {
    margin-right: 0; }
  .site-footer-socials a {
    display: flex;
    align-items: center;
    opacity: 0.8;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease; }
  .site-footer-socials a:hover {
    opacity: 1;
    transform: scale(1.1); }
  .site-footer-socials .site-footer-socials__logo {
    width: 2rem;
    height: 2rem;
    fill: white; }

.icon-twitter {
  fill: #37a7f2 !important; }

.icon-instagram {
  fill: #FDB9D6 !important; }

.icon-mastodon {
  fill: #aca4f0 !important; }

.icon-youtube {
  fill: #ff6767 !important; }

.icon-facebook {
  fill: #6ea5ff !important; }

@media (max-width: 768px) {
  .site-footer__content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; }
  .site-footer__title-recall {
    text-align: center; }
  .site-footer-socials {
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 .5rem; }
    .site-footer-socials li {
      margin-bottom: 1rem; }
  .inline-footer-menu-list {
    display: block;
    text-align: center; }
    .inline-footer-menu-list li {
      margin-right: 0; } }

/***********************
 * Components 
 **********************/
