@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
}

html {
  background-color: #1c1d1f;
}

body {
  min-width: 320px;
  margin: 0 auto;
  padding: 0;
}

h1, h2, h3 {
  font-family: "Grenze Gotisch", serif;
}

p, a {
  font-family: "Quicksand", serif;
}

p {
  color: #e7e2dc;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

.contenu-principal {
  min-height: calc(100vh - 64px - 107px);
}

.flag {
  max-width: 7rem;
  margin-left: -10px;
}

.menu-item-has-children > a {
  display: none;
}

.page-main-content {
  margin: 4rem 2rem 0rem 2rem;
}
.page-main-content p, .page-main-content a, .page-main-content h1, .page-main-content h2, .page-main-content h3, .page-main-content h4, .page-main-content h5 {
  padding-bottom: 0.5rem;
}
.page-main-content h2, .page-main-content h3, .page-main-content h4 {
  color: rgb(214, 196, 172);
}
.page-main-content h2 {
  font-size: 2rem;
}
.page-main-content h3 {
  font-size: 1.5rem;
}

/* Menu */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  height: fit-content;
  width: fit-content;
  background-color: #1c1d1f;
  z-index: 100;
}
.navigation__nav {
  position: absolute;
  top: 0;
  left: -100vw;
  padding-top: 3rem;
  list-style: none;
  background-color: #1c1d1f;
  transition: left 0.25s ease-in;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: left;
}
.navigation__logo {
  height: 10vh;
}
.navigation__logo-container {
  position: relative;
  align-self: center;
}
.navigation__checkbox {
  display: none;
}
.navigation__label {
  position: fixed;
  right: 0;
  top: 0;
  padding: 0rem 1rem;
  font-size: 3rem;
  font-weight: bold;
  color: rgb(214, 196, 172);
  background-color: #1c1d1f;
  cursor: pointer;
  z-index: 1;
}
.navigation .menu-item-has-children li {
  padding: 1rem 0;
}
.navigation .menu-item-has-children {
  padding: 0 1rem;
}
.navigation li {
  padding: 0.75rem 1rem;
}
.navigation .navigation__label::after {
  content: "≡";
}
.navigation__checkbox:checked + .navigation__label::after {
  content: "✕";
  font-size: 2.5rem;
}
.navigation__checkbox:checked ~ .navigation__nav {
  left: 0;
  transition: left 0.25s ease-out;
}
.navigation__checkbox:checked ~ .navigation__nav__label {
  padding-bottom: 0.5rem;
}
.navigation li a {
  font-family: "Grenze Gotisch", serif;
  font-size: 1.5rem;
  color: rgb(214, 196, 172);
  text-decoration: none;
  padding: 0.5rem;
}

@media only screen and (min-width: 1044px) {
  .menu-item-has-children li {
    padding: 0.75rem 1rem;
  }
  .menu-item-has-children {
    padding: 0.75rem 1rem;
  }
  .menu-item-has-children > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    cursor: default;
  }
  .menu-item-has-children > a::after {
    content: "▼";
    font-size: 0.8rem;
    transition: transform 0.3s ease-in-out;
  }
  .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
  }
  .navigation {
    background-color: rgba(28, 29, 31, 0.7058823529);
    width: 100vw;
    max-height: 4rem;
    position: fixed;
    margin: 0 auto;
    margin-right: 15rem;
    z-index: 101;
  }
  .navigation__checkbox {
    display: none;
  }
  .navigation__label {
    display: none;
  }
  .navigation__nav {
    padding: 0;
  }
  .navigation__logo-container {
    width: 3rem;
    margin-right: auto;
    margin-left: 5rem;
    padding: 1rem;
  }
  .navigation__logo {
    height: auto;
  }
  .navigation__ul {
    margin-right: 5rem;
  }
  .navigation__ul .sub-menu {
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }
  .navigation__ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navigation__nav {
    width: 100%;
    max-height: 4rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    left: 0;
    height: fit-content;
    background-color: rgba(28, 29, 31, 0.7058823529);
    backdrop-filter: blur(20px);
    z-index: 100;
  }
  .navigation__nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  .navigation__nav ul li ul {
    background-color: rgba(28, 29, 31, 0.7058823529);
    position: absolute;
    display: flex;
    flex-direction: column;
    top: -9rem;
    z-index: 99;
  }
  .navigation__nav ul li--list {
    display: block;
    padding-right: 0;
  }
  .navigation__nav ul li--end {
    margin-right: 5rem;
  }
  .navigation__nav ul li__label {
    display: block;
    color: rgb(214, 196, 172);
    cursor: pointer;
  }
  .navigation__nav ul li__label::before {
    padding-right: 0.25rem;
    display: inline-block;
  }
  .navigation__nav ul li__label::after {
    font-size: 1rem;
    content: "▼";
    display: inline-block;
    transition: transform 0.3s ease-in-out;
  }
  .navigation__nav ul li__checkbox:checked + .navigation__nav ul li__label::after {
    transform: rotate(180deg);
  }
  .menu-item-has-children > a {
    pointer-events: none;
    cursor: default;
  }
}
.menu-item > a {
  padding-right: 30px;
  text-decoration: none;
  color: #e7e2dc;
  font-size: 13px;
}

.menu-item > a:hover {
  color: rgb(214, 196, 172);
}

.footer {
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: #1c1d1f;
  gap: 4rem;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  line-height: 1rem;
}
.footer__lien {
  padding-right: 30px;
  text-decoration: none;
  color: #e7e2dc;
  font-size: 13px;
}
.footer__lien:hover {
  color: rgb(214, 196, 172);
}

.footer__logo img {
  width: 6rem;
}

@media (min-width: 816px) {
  .footer {
    padding-left: 6rem;
  }
  .footer__menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .footer__logo img {
    width: 4rem;
  }
  nav a {
    flex-direction: row;
    text-decoration: none;
  }
}
/* Banniere principal */
.banniere-accueil {
  display: flex;
  align-items: center;
  position: relative;
  background-image: url("../img/asset/fond.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  padding: 0 4rem;
}
.banniere-accueil__titre {
  color: rgb(214, 196, 172);
  font-size: 3rem;
}
.banniere-accueil__texte {
  font-family: "Quicksand", serif;
  color: #e7e2dc;
  text-align: left;
  max-width: 550px;
}

@media screen and (max-width: 1300px) {
  .banniere-accueil {
    background-size: contain;
  }
  .banniere-accueil__contenu {
    padding-top: 10rem;
  }
}
@media (width > 1400px) {
  .banniere-accueil {
    background-position: right;
  }
}
.missions {
  padding: 5rem 0;
  max-width: 100vw;
  display: flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  background-color: #1c1d1f;
}
.missions__content {
  display: flex;
  align-items: center;
}
.missions__titre {
  font-size: 2rem;
  color: rgb(214, 196, 172);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin: 1rem;
}
.missions__description {
  color: #e7e2dc;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  max-width: 600px;
}
.missions__description p {
  height: auto;
  max-width: 250px;
  margin: 1rem;
}
.missions__bouton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 0.6rem;
  background-color: #b54142;
  color: #e7e2dc;
  text-transform: uppercase;
  border: none;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  justify-content: center;
  width: fit-content;
}
.missions div button {
  margin: 1rem;
}

@media only screen and (max-width: 941px) {
  .missions {
    /*responsive image size*/
  }
  .missions__content {
    flex-direction: column;
  }
  .missions div .missions_photo {
    width: 100%;
    max-width: 100vw;
  }
}
.join {
  display: flex;
  justify-content: space-around;
  align-content: center;
  background-color: #b54142;
}
.join__photo {
  min-height: 15rem;
  max-height: 16rem;
}
.join__contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.join__titre {
  padding: 1rem;
  font-size: 3rem;
  color: rgb(214, 196, 172);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.join__bouton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 0.6rem;
  background-color: rgb(214, 196, 172);
  color: #b54142;
  text-transform: uppercase;
  border: none;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  justify-content: center;
  width: fit-content;
  padding-bottom: 1rem;
  font-weight: bold;
  font-family: "Quicksand", serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.join__photo img {
  width: 25vw;
  height: auto;
}
.join__image {
  padding-top: 1rem;
}
.join__texte {
  width: 25vw;
  color: rgb(214, 196, 172);
  text-align: center;
  line-height: 1.2rem;
  padding-bottom: 1rem;
}

@media only screen and (width < 566px) {
  .missions__description {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (width < 1300px) {
  .join__photo--mobile {
    display: none;
  }
}
@media only screen and (width < 1100px) {
  .join {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .join__titre h2 {
    font-size: 4rem;
  }
  .join__texte {
    width: auto;
    padding: 1rem;
  }
  .join__photo img {
    width: 30vw;
  }
}
@media only screen and (width < 600px) {
  .join {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .join__titre h2 {
    font-size: 2rem;
  }
  .join__photo img {
    width: 50vw;
  }
}
.media {
  padding: 1rem;
  display: flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  background-color: #1c1d1f;
}
.media__bouton {
  cursor: pointer;
}
.media__titre {
  font-size: 2rem;
  color: rgb(214, 196, 172);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin: 1rem;
}
.media__description {
  color: #e7e2dc;
}
.media .media_list {
  display: flex;
  justify-content: flex-start;
  max-width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 1rem;
}
.media__image {
  width: 100px;
}
.media__contenu {
  color: #e7e2dc;
  align-self: flex-end;
  position: relative;
  z-index: 2;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.media__contenu__titre {
  font-family: "Quicksand", serif;
  text-transform: uppercase;
}
.media__label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.media__categories {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.media__categories p {
  background-color: #e7e2dc;
  padding: 0.5rem;
  margin: 0.3rem;
  font-size: xx-small;
  color: black;
  border-radius: 0.3rem;
}
.media__article {
  position: relative;
  background-color: aliceblue;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-image: url("/img/pictos/news_nuage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 150px;
  width: 300px;
  transition: 0.25s transform;
  display: flex;
  background-color: rgb(214, 196, 172);
  min-width: 70vw;
}
.media__article:hover {
  transform: scale(1.05);
}
.media__article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(97, 96, 96, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 0.5rem;
  pointer-events: none;
}

@media only screen and (max-width: 900px) {
  .media__categories {
    padding-left: 0;
  }
}
.newsletter {
  display: flex;
  justify-content: center;
  background-color: #1c1d1f;
  width: 100%;
  background-image: url("../img/asset/chaines-x.png");
  background-repeat: no-repeat;
  background-size: 100% 490px;
  background-position: center;
}
.newsletter__contenu {
  display: flex;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  background-color: #b54142;
  padding: 4vw;
}
.newsletter__titre {
  color: rgb(214, 196, 172);
  font-size: 2rem;
  padding-bottom: 1.5rem;
  text-align: center;
}
.newsletter__contenu-principal {
  flex-direction: column;
  gap: 4rem;
}
.newsletter__reseaux-sociaux {
  text-align: center;
}
.newsletter__texte {
  color: rgb(214, 196, 172);
  padding-bottom: 1rem;
}
.newsletter__icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.newsletter__icon {
  width: 80px;
  height: 100px;
  transition: transform 0.2s ease;
}
.newsletter__icon:hover {
  transform: scale(1.1);
}
.newsletter__form {
  max-width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgb(214, 196, 172);
  background-color: transparent;
  font-family: "Quicksand", serif;
  color: rgb(214, 196, 172);
}
.newsletter__input::placeholder {
  color: #e5ddd3;
  opacity: 0.7;
}
.newsletter__input:focus {
  outline: none;
  border-color: #ffffff;
}
.newsletter__bouton {
  display: flex;
  align-items: center;
  min-width: 100%;
  padding: 0.7rem 1rem;
  background-color: rgb(214, 196, 172);
  color: #b54142;
  font-weight: bold;
  font-family: "Quicksand", serif;
  cursor: pointer;
}

@media screen and (min-width: 900px) {
  .media {
    overflow-x: hidden;
  }
  .media .media_list {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
  .media__article {
    min-width: 0;
  }
  .newsletter {
    padding: 5rem 0;
    background-color: #1c1d1f;
  }
  .newsletter__description {
    color: #b54142;
  }
  .newsletter__contenu {
    background-color: #b54142;
    padding: 2rem 6rem;
  }
  .newsletter__contenu-principal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }
  .newsletter .newsletter__icon {
    width: 70px;
  }
}
/*prochains evenements*/
.evenements {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.evenements__titre {
  font-size: 2rem;
  color: rgb(214, 196, 172);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding-top: 2rem;
}
.evenements__liste {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
.evenements__liste--index {
  justify-content: flex-start;
  max-width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 1rem;
}
.evenements__bouton {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 0.6rem;
  background-color: #b54142;
  color: #e7e2dc;
  text-transform: uppercase;
  border: none;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.evenements__image {
  width: 100px;
  border: black;
}

@media (width > 2000px) {
  .evenements__titre {
    padding-top: 8rem;
  }
}
.evenement {
  margin: 1rem;
}
.evenement__titre {
  font-family: "Quicksand", serif;
  padding-bottom: 0.5rem;
}
.evenement__categorie {
  font-size: 0.5rem;
}
.evenement__article {
  transition: 0.25s transform;
  display: flex;
  color: #e7e2dc;
  position: relative;
  border-radius: 0.5rem;
}
.evenement__article:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
.evenement__article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(97, 96, 96, 0) 0%, rgba(154, 152, 152, 0.05) 60%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 0.5rem;
  z-index: 1;
  pointer-events: none;
}
.evenement__date {
  background-color: black;
  position: absolute;
  top: -5px;
  left: -5px;
  padding: 0.5rem;
}
.evenement__contenu {
  padding: 1rem;
  color: #e7e2dc;
  text-transform: uppercase;
  align-self: flex-end;
  position: relative;
  z-index: 2;
}
.evenement__categories {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.evenement__categorie {
  background-color: black;
  padding: 0.25rem 0.5rem;
  margin: 0.2rem;
  font-size: xx-small;
  color: #e7e2dc;
  border-radius: 0.3rem;
}
.evenement__categorie--prix {
  background-color: #e7e2dc;
  color: black;
}

.evenement__article {
  min-height: 400px;
  width: 300px;
  background-size: cover;
}

@media (width > 1500px) {
  .evenement__article {
    min-height: 400px;
    width: 300px;
  }
  .evenement__bouton {
    margin-bottom: 0;
  }
  .evenement__date p {
    font-size: 1rem;
  }
  .evenement__titre {
    font-size: 1.2rem;
  }
  .evenement__categorie {
    font-size: 0.7rem;
  }
}
button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 0.6rem;
  background-color: #b54142;
  color: #e7e2dc;
  text-transform: uppercase;
  border: none;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.banniere-contact {
  min-height: 30vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-section {
  display: flex;
  flex-direction: column;
  background-color: #1c1d1f;
  color: #e5e5e5;
  padding: 2rem 1rem;
  margin: -2rem 1rem 0;
  position: relative;
}
.contact-section__title {
  color: rgb(214, 196, 172);
  font-size: 8.5vw;
  margin-bottom: 1rem;
  position: relative;
}
.contact-section__description {
  font-family: "Quicksand", serif;
  font-size: 0.9rem;
  color: #e7e2dc;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.contact-section__image {
  width: 60px;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form__label {
  font-family: "Quicksand", serif;
  font-size: 0.9rem;
  font-weight: 500;
}
.contact-form__input, .contact-form__select, .contact-form__textarea {
  font-family: "Quicksand", serif;
  padding: 0.75rem;
  background-color: #2a2b2d;
  border: 1px solid #3a3b3d;
  border-radius: 4px;
  color: #e5e5e5;
  font-size: 0.9rem;
}
.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-form__privacy {
  font-family: "Quicksand", serif;
  font-size: 0.8rem;
  color: rgb(214, 196, 172);
  order: 2;
}
.contact-form__link {
  color: #b54142;
  text-decoration: none;
}
.contact-form__link:hover {
  text-decoration: underline;
}
.contact-form__submit {
  font-family: "Quicksand", serif;
  background-color: #b54142;
  color: rgb(214, 196, 172);
  border: none;
  padding: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
  order: 1;
}
.contact-form__submit:hover {
  background-color: rgb(214, 196, 172);
  color: #b54142;
}

.required {
  color: #b54142;
  padding-left: 0.2rem;
}

.contact-section__address {
  margin-top: 2rem;
  padding: 1rem;
  border: 0.5px solid white;
  font-style: normal;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Desktop styles */
@media (min-width: 800px) {
  .banniere-contact {
    min-height: 100vh;
    background-position: top;
  }
  .contact-section {
    max-width: 800px;
    margin: 0 auto;
    border: solid 1px #1c1d1f;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
    top: -320px;
  }
  .contact-section__title {
    font-size: 4rem;
  }
  .contact-section__address {
    margin-bottom: 2rem;
  }
  .contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .contact-form__footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .contact-form__privacy {
    padding-bottom: 2rem;
    order: 1;
    flex: 1;
  }
  .contact-form__submit {
    order: 2;
    width: auto;
    padding: 0.75rem 2rem;
  }
  .contact-section__description {
    max-width: 450px;
  }
  .contact-section__image {
    width: 100px;
  }
}
.contenu-principal--blog {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.prochainement, .archive {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}
.prochainement__header, .archive__header {
  margin-bottom: 2rem;
}
.prochainement__evenements__liste, .archive__evenements__liste {
  margin-left: 8rem;
  margin-right: 8rem;
  justify-content: center;
}
.prochainement__evenements__liste .evenement__date, .archive__evenements__liste .evenement__date {
  font-size: 0.75rem;
}
.prochainement__titre, .archive__titre {
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: rgb(214, 196, 172);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.button-archive {
  display: none;
}

.voir-archives {
  display: none;
  text-align: center;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .voir-archives {
    display: block;
  }
}
/* Par défaut (desktop), tout est visible */
.js-prochainement,
.js-archive {
  display: flex;
}

/* Affichage du bouton uniquement en mobile */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .archive {
    margin-top: 0;
  }
  /* Cacher les boutons sur desktop, les afficher sur mobile */
  .mobile-only {
    display: block;
  }
  /* Prochainement affiché par défaut, archive cachée */
  .js-prochainement {
    display: flex;
  }
  .js-archive {
    display: none;
  }
  /* Quand la classe active est sur le <main> */
  .js-archive-active .js-prochainement {
    display: none;
  }
  .js-archive-active .js-archive {
    display: flex;
  }
  .js-archive-active .js-toggle-archives {
    display: none;
  }
  .js-archive-active .js-toggle-prochainement {
    display: block;
  }
  .js-toggle-prochainement {
    display: none;
  }
}
@media (width < 816px) {
  .prochainement__titre, .archive__titre {
    font-size: 2rem;
  }
  .prochainement__header, .archive__header {
    width: 80vw;
    align-self: flex-start;
    margin-left: 6vw;
  }
  .prochainement__evenements__liste, .archive__evenements__liste {
    margin-left: 0rem;
    margin-right: 0rem;
    justify-content: center;
  }
  .prochainement__evenements__liste .evenement__article, .archive__evenements__liste .evenement__article {
    width: 80vw;
    height: 100vw;
  }
  .button-archive {
    cursor: pointer;
    display: block;
  }
  .archive {
    display: none;
  }
  .button-archive:focus + .archive {
    display: block;
  }
}
/* Hero Section */
.hero {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
}
.hero__content {
  flex: 1;
  padding-left: 4rem;
}
.hero__title {
  font-family: "Grenze Gotisch", serif;
  font-size: 4rem;
  color: rgb(214, 196, 172);
}
.hero__flag {
  width: 100px;
  padding-bottom: 1rem;
}
.hero__text {
  font-family: "Quicksand", serif;
  font-size: 1rem;
  color: #e7e2dc;
  max-width: 600px;
}
.hero__image {
  flex: 1;
  margin-top: 5rem;
  width: 100vw;
}
.hero__illustration {
  width: 100vw;
  height: auto;
}

/* Ambition Section */
.ambition {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ambition__image {
  flex: 1;
  height: auto;
}
.ambition__title {
  font-family: "Grenze Gotisch", serif;
  font-size: 3rem;
  color: rgb(214, 196, 172);
}
.ambition__flag {
  width: 100px;
  padding-bottom: 1rem;
}
.ambition__content {
  flex: 1;
  gap: 4rem;
  padding-left: 4rem;
}
.ambition__subtitle {
  color: #e7e2dc;
  font-family: "Quicksand", serif;
  font-size: 1rem;
  padding-bottom: 0.2rem;
  font-weight: bold;
}
.ambition__text {
  padding-bottom: 1rem;
  font-size: 1rem;
}
.ambition__illustration {
  height: auto;
}

/* Engagements Section */
.engagements {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Prestations Section */
.prestations {
  padding: 2rem;
  background-color: #b54142;
}

.prestations__title {
  font-family: "Grenze Gotisch", serif;
  font-size: 3rem;
  color: rgb(214, 196, 172);
  padding-bottom: 2rem;
  text-align: center;
}

.prestations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.prestations__item {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.prestations__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.prestations__subtitle {
  color: #e7e2dc;
  font-family: "Quicksand", serif;
  font-size: 1.2rem;
}

/* Prestations-bis Section */
.prestations-bis {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prestations-bis__content {
  padding: 2rem 4rem;
}
.prestations-bis__image {
  flex: 1;
}
.prestations-bis__title {
  font-family: "Grenze Gotisch", serif;
  font-size: 3rem;
  color: rgb(214, 196, 172);
}
.prestations-bis__flag {
  width: 100px;
  padding-bottom: 1rem;
}
.prestations-bis__content {
  flex: 1;
  gap: 4rem;
  padding-right: 4rem;
}
.prestations-bis__subtitle {
  color: #e7e2dc;
  font-family: "Quicksand", serif;
  font-size: 1rem;
  padding-bottom: 0.2rem;
  font-weight: bold;
}
.prestations-bis__text {
  padding-bottom: 1rem;
  font-size: 1rem;
}
.prestations-bis__illustration {
  max-width: 800px;
  height: auto;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    height: auto;
  }
  .hero__content {
    padding-right: 4rem;
    margin-bottom: 4rem;
  }
  .ambition {
    flex-direction: column;
    align-items: baseline;
  }
  .ambition__illustration {
    max-width: 100vw;
  }
  .ambition__content {
    padding: 2rem 4rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .engagements {
    flex-direction: column-reverse;
  }
  .engagements__content {
    padding: 2rem 4rem;
  }
  .prestations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .prestations__item {
    padding: 1rem;
  }
  .prestations__title {
    padding-bottom: 0;
  }
  .prestations__icon {
    margin-bottom: 0;
  }
  .prestations-bis {
    flex-direction: column;
    align-items: baseline;
  }
  .prestations-bis__illustration {
    max-width: 100vw;
  }
  .prestations-bis__content {
    padding: 2rem 4rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .prestations__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.chiffres {
  display: flex;
  flex-direction: column;
  background-color: #b54142;
  padding: 4rem;
}
.chiffres__title {
  color: rgb(214, 196, 172);
  font-size: 3rem;
  text-align: center;
  padding-bottom: 1rem;
}
.chiffres__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.chiffres__number {
  color: white;
  font-size: 4rem;
}

.engagements-event {
  padding: 0;
}
.engagements-event__title {
  font-size: 2.5rem;
  color: rgb(214, 196, 172);
}
.engagements-event__flag {
  width: 100px;
  padding-bottom: 1rem;
}
.engagements-event__illustration {
  max-width: 100vw;
}
.engagements-event__content {
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem 4rem;
}

@media screen and (min-width: 1000px) {
  .chiffres__content {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }
  .engagements-event {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .engagements-event__illustration {
    max-width: 650px;
    height: auto;
  }
  .engagements-event__content {
    flex: 1;
    gap: 4rem;
    padding: 1rem 4rem;
  }
}
.adherent__header, .adherent__main-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.adherent__header__title, .adherent__main-content__title {
  font-size: clamp(4rem, 5vw, 3rem);
  color: rgb(214, 196, 172);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding-bottom: 1rem;
}
.adherent__header__image, .adherent__main-content__image {
  width: 50vw;
}
.adherent__header__content, .adherent__main-content__content {
  padding: 3rem;
  padding-bottom: 0rem;
}
.adherent__header__text, .adherent__main-content__text {
  line-height: 1.25rem;
}

.adherent__header__content {
  max-width: 50rem;
}

.adherent__main-content__image {
  padding-bottom: 2rem;
}

strong {
  font-weight: 700;
}

@media (width < 1080px) {
  .adherent__header__content, .adherent__main-content__content {
    padding: 2rem 0rem;
  }
  .adherent__header__image, .adherent__main-content__image {
    width: 75vw;
    padding: 0rem;
  }
  .adherent__header__content, .adherent__main-content__content {
    margin: auto;
    width: 80vw;
  }
  .adherent__header__text, .adherent__main-content__text {
    max-width: 80vw;
  }
  .adherent__header__title, .adherent__main-content__title {
    font-size: 2rem;
  }
  .adherent__header {
    flex-direction: column-reverse;
  }
  .adherent__header__content {
    padding-bottom: 4rem;
    padding-top: 0rem;
  }
  .adherent__main-content {
    flex-direction: column;
  }
  .adherent__main-content__image {
    padding-bottom: 0.5rem;
  }
  .adherent__main-content__content {
    padding-top: 0rem;
  }
}
.news-header {
  justify-self: center;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
.news-header__flag {
  max-width: 7rem;
  margin-left: -10px;
}
.news-header__title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  color: rgb(214, 196, 172);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.news {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0 3rem;
  gap: 2rem;
}
@media screen and (min-width: 900px) {
  .news {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 3rem;
  }
}

.news__container__article {
  min-height: 250px;
  min-width: 250px;
  max-width: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #e7e2dc;
  padding: 0.5rem;
  border-radius: 0.75rem;
  justify-content: flex-end;
  background-color: rgb(214, 196, 172);
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.25s transform;
}
@media screen and (min-width: 900px) {
  .news__container__article {
    width: 400px;
    max-width: none;
  }
  .news__container__article:hover {
    transform: scale(1.05);
  }
}
.news__container__article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(97, 96, 96, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 0.5rem;
  pointer-events: none;
}
.news__container__article__titre {
  font-family: "Quicksand", serif;
  text-transform: uppercase;
  z-index: 2;
  margin-bottom: 0.25rem;
  padding: 5px;
  font-size: 1rem;
}
@media screen and (min-width: 1500px) {
  .news__container__article__titre {
    font-size: 1.2rem;
  }
}

.categories-news {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.categories-news__type {
  background-color: #e7e2dc;
  padding: 0.5rem;
  margin: 0.3rem;
  font-size: xx-small;
  color: black;
  z-index: 2;
  border-radius: 0.3rem;
}

@media (min-width: 1500px) {
  .new__article__titre {
    font-size: 1.2rem;
  }
  .new__article__type {
    font-size: 1rem;
  }
}
.podcast__background {
  display: none;
}
.podcast__image {
  width: 100%;
  background-color: rgb(214, 196, 172);
}
.podcast__container {
  padding: 0 2rem;
}
.podcast__title {
  font-family: "Quicksand", serif;
  font-size: 1.5rem;
  color: #e7e2dc;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.podcast__tag {
  font-family: "Quicksand", serif;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  background-color: #e7e2dc;
  border-radius: 0.3rem;
}

.categories-single {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding-left: 0;
}
.categories-single__type {
  background-color: #e7e2dc;
  padding: 0.5rem;
  margin: 0.3rem;
  font-size: xx-small;
  color: black;
  z-index: 2;
  border-radius: 0.3rem;
  width: fit-content;
}

.event {
  padding: 2rem 2rem;
}
.event__schedule {
  font-family: "Quicksand", serif;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #e7e2dc;
}
.event__schedule-title {
  font-family: "Quicksand", serif;
  font-weight: bold;
}
.event__schedule-item {
  position: relative;
  padding-left: 0.5rem;
}
.event__schedule-item::before {
  content: "- ";
  position: absolute;
  left: 0;
}
.event__pokemon-title {
  font-family: "Quicksand", serif;
  font-weight: bold;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #e7e2dc;
}

@media screen and (min-width: 900px) {
  .podcast {
    backdrop-filter: blur(20px);
    padding: 0;
    overflow: hidden;
  }
  .podcast__background {
    display: block;
    position: absolute;
    width: 100%;
    background-color: rgb(214, 196, 172);
    filter: blur(10px);
  }
  .podcast__image {
    display: block;
    max-width: 515px;
    justify-self: center;
    margin-top: 20rem;
    position: relative;
    z-index: 10;
    margin-bottom: -1rem;
  }
  .podcast__container {
    position: relative;
    z-index: 2;
    background-color: #1c1d1f;
    padding: 0;
    padding-bottom: 0.4rem;
    width: calc(50vw + 250px);
  }
  .podcast__title {
    padding-left: 16rem;
  }
  .podcast__tag {
    margin-left: 16rem;
  }
  .categories-single {
    padding-left: 16rem;
  }
  .event {
    padding: 2rem 16rem;
  }
}
.single-event {
  padding: 1.5rem 1.5rem 0rem 1.5rem;
  position: relative;
}
.single-event__header {
  background-color: #1c1d1f;
  margin-bottom: 2rem;
}
.single-event__thumbnail {
  width: 100vw;
}
.single-event__date {
  width: fit-content;
  background-color: black;
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.single-event__title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-transform: uppercase;
  font-family: "Quicksand", serif;
}
.single-event__categories {
  display: flex;
  flex-wrap: wrap;
}
.single-event__category {
  display: inline;
  color: white;
  background-color: black;
  padding: 0.5rem;
  font-family: "Quicksand", serif;
  border-radius: 7px;
  margin-right: 1rem;
  margin-top: 1rem;
}
.single-event__category--price {
  color: black;
  background-color: white;
}
.single-event__text {
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.single-event__img {
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

@media (width > 900px) {
  .single-event {
    top: -12rem;
    padding: 0rem 10rem 0rem 0rem;
  }
  .single-event__thumbnail {
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-height: 100vh;
  }
  .single-event__header {
    position: relative;
    z-index: 3;
    border-radius: 0px 15px 0px 0px;
    padding-left: 10rem;
    margin: 0;
    padding-bottom: 2rem;
  }
  .single-event__content {
    background-color: #1c1d1f;
    position: relative;
    padding-left: 10rem;
  }
}
.adherent__main-content__bouton {
  display: flex;
  justify-content: center;
}

.partenaires {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  gap: 1rem;
}

.partenaire {
  padding: 0.5rem;
}

@media (min-width: 1400px) {
  .adherent__main-content__bouton {
    justify-content: start;
  }
  /*button {
      margin-bottom: 0;
  }*/
}
.img-partenaire {
  width: 100%;
  height: auto;
  max-width: clamp(80px, 8vw, 200px);
  max-height: clamp(80px, 8vw, 200px);
  object-fit: contain;
  margin: 0.5rem;
}

/* Optional: fine-tune for small screens */
@media (max-width: 600px) {
  .img-partenaire {
    max-width: 80px;
    max-height: 80px;
  }
}
/* Optional: fine-tune for large screens */
@media (min-width: 1200px) {
  .img-partenaire {
    max-width: 150px;
    max-height: 150px;
  }
}
.img-partenaire img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error__titre {
  font-size: 15rem;
  color: #b54142;
  padding-bottom: 3rem;
}
.error__text {
  margin: 0rem 1rem;
  font-size: 3rem;
  padding-bottom: 1rem;
  text-align: center;
}
.error__subtext {
  margin: 0rem 1rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 3rem;
  text-align: center;
}
.error__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 0.6rem;
  background-color: #b54142;
  color: #e7e2dc;
  text-transform: uppercase;
  border: none;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  justify-content: center;
  width: fit-content;
  padding-bottom: 1rem;
}/*# sourceMappingURL=styles.css.map */