@tailwind base;

* {
  margin: 0;
  padding: 0;
}
.main {
  font-style: normal;
  font-stretch: normal;
}

:root {
  /******** Colors *********/
  --padding: 1.5rem;
  --color-primary: #29e76b;
  --color-secondary: #ffffff;
  --color-text: #000;
  --color-background: #ffffff;

  --color-A: #574cfe;
  --color-B: #ff6d30;
  --color-C: #685100;
  --color-D: #cc9900;
  --color-E: #ff9bff;
  --color-F: #ff2f00;
  --color-G: #00ab00;
  --color-H: #29e76b; /* primary */

  /******** Margin/Padding *********/
  --space-1: 30px; /*rouge (unité de base )*/
  --space-2: 60px; /*gris*/
  --space-3: 90px; /*bleu marine*/
  --space-4: 120px; /*rose*/
  --space-5: 150px; /*jaune*/

  --space-menu: 20px; /*bloc vert*/
  --space-agenda: 8px; /*bloc cyan*/

  /******** Largeur breakpoint *********/
  --maxwidth-xxl: 1365px;

  /******** Tailles Typo *********/
  --typosize-h1: 110px; /* Titre 1 Taille*/
  --typointerline-h1: 110px; /* Titre 1 Interligne*/

  --typosize-chapeau: 50px; /* Chapeau Taille*/
  --typointerline-chapeau: 54px; /* Chapeau Interligne*/

  --typosize-h2: 50px; /* Titre 2 Taille*/
  --typointerline-h2: 54px; /* Titre 2 Interligne*/

  --typosize-p: 24px; /* Texte courant  Taille*/
  --typointerline-p: 28px; /* Texte courant  Interligne*/

  --typosize-medium_p: 32px; /* Texte courant  Taille*/
  --typointerline-medium_p: 36px; /* Texte courant  Interligne*/

  --typosize-btn: 50px; /* Bouton Taille*/

  /******** Tailles Typo Agenda *********/
  --typosize-infodate: 24px; /* Agenda InfoDate Taille*/
  --typosize-agenda-h3: 32px; /* Agenda Titre Event Taille*/
  --typointerline-agena-h3: 36px; /* Agenda Titre Event Interligne*/

  /******** Tailles Typo Footer *********/
  --typosize-footer-p: 18px; /* Footer Taille*/
  --typointerline-footer-p: 22px; /* Footer Interligne*/
}

html {
  color: var(--color-text);
  background: var(--color-background);
  padding: 0;
  margin: 0;
}

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

img {
  width: 100%;
}

body {
  width: 100%;
  margin: 0 auto;
}
li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: none;
}

p {
  text-align: justify;
}

.contact p {
  text-align: center;
}
.support p {
  text-align: center;
}

/* ------------- HEADER ------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Assurez-vous que le header est au-dessus de tout le reste */
  transition: top 0.3s; /* Ajoutez une transition fluide lors du défilement */

  padding-top: var(--space-menu);
  background-color: var(--color-primary);
}

.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out; /* Ajouter une transition pour un mouvement fluide */
}

.header .header-content {
  /*max-width: var(--maxwidth-xxl);*/
  margin: 0 auto; /* Centre le contenu horizontalement */
}

.header .menu .main_menu {
  /* display: inline; */
  /* flex-direction: row; */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: var(--typosize-p);
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
}
.header .menu .main_menu li .menu_item:hover {
  color: white;
}
.menu_item:hover {
  color: white;
}
.header .menu .main_menu li a:hover {
  color: white;
}
.menu_item {
  position: relative;
}

.menu ul {
  padding: 0;
  margin: 0;
}

.menu_item {
  position: relative;
  display: inline-block; /* assure que le conteneur s'adapte à la taille du contenu */
}

.menu_item_img {
  opacity: 0;
  position: absolute;
  min-width: 160px;
  width: 150%; /* ajuste la taille de l'image pour remplir le conteneur parent */
  height: 150%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu_item:hover .menu_item_img {
  opacity: 1;
}

#sub_menu_activite {
  display: contents;
}
.sub_menu ul {
  margin: 0;
  padding: 0;
  /* display: list-item; */
  /* display: block; */
  /* display: flex;
  flex-direction: column;
  align-items: flex-start; */
  /* justify-content: start;
  align-items: start;
  font-size: 1.22rem; */
}
.sub_menu li {
  text-align: start;
}
header .menu .sub_menu li :hover {
  color: white;
}
.show {
  display: block;
}

/* ------------- MAIN ------------- */
section:nth-child(even) {
  background-color: var(--color-primary);
}

section {
  width: 100%;
  /*padding-top: var(--space-3);
  padding-bottom: var(--space-4);*/
}

.header::before {
  content: '';
  position: absolute;
  bottom: -20px; /* Ajustez cette valeur pour définir la position de l'effet de peinture par rapport au bas de la section */
  left: 0;
  width: 100%;
  height: 20px; /* Ajustez la hauteur de l'effet de peinture selon vos préférences */
  background-image: url('../icons/brush-effect-2.png'); /* Chemin vers votre image */
  background-repeat: repeat-x; /* Répéter l'image horizontalement */
  background-position: center bottom; /* Positionner l'image au centre en bas */
  background-size: auto 100%; /* Ajuster la largeur de l'image pour s'adapter à la largeur de la section */
  mix-blend-mode: multiply; /* Mélange la texture avec le contenu en dessous */
  z-index: -1; /* Placez le pseudo-élément derrière le contenu de la section */
  mask-image: linear-gradient(
    to top,
    transparent,
    black
  ); /* Appliquer un masque pour masquer la texture en haut de la section */
}

.section-border-top {
  position: relative;
}

.section-border-top::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px; /* Ajustez la hauteur de l'effet de peinture selon vos préférences */
  background-image: url('../icons/brush-effect-3.png');
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 100%;
  mix-blend-mode: multiply;
  z-index: -1;
  mask-image: linear-gradient(to bottom, transparent, black);
}

.section-border-bottom::after {
  content: '';
  position: absolute;
  bottom: -20px; /* Ajustez cette valeur pour définir la position de l'effet de peinture par rapport au bas de la section */
  left: 0;
  width: 100%;
  height: 20px; /* Ajustez la hauteur de l'effet de peinture selon vos préférences */
  background-image: url('../icons/brush-effect-2.png'); /* Chemin vers votre image */
  background-repeat: repeat-x; /* Répéter l'image horizontalement */
  background-position: center bottom; /* Positionner l'image au centre en bas */
  background-size: auto 100%; /* Ajuster la largeur de l'image pour s'adapter à la largeur de la section */
  mix-blend-mode: multiply; /* Mélange la texture avec le contenu en dessous */
  z-index: -1; /* Placez le pseudo-élément derrière le contenu de la section */
  mask-image: linear-gradient(
    to top,
    transparent,
    black
  ); /* Appliquer un masque pour masquer la texture en haut de la section */
}

.section-content {
  max-width: var(--maxwidth-xxl);
  margin: 0 auto; /* Centre le contenu horizontalement */
  padding-top: 20px; /* Ajoute un peu d'espace autour du contenu */
  padding-bottom: 20px; /* Ajoute un peu d'espace autour du contenu */
}
.section-content-gallery {
  width: 100%;
  margin: 0 auto; /* Centre le contenu horizontalement */
}

.sec_padd1 {
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
  margin: 0;
}

hr {
  padding-top: var(--space-1);
  padding-bottom: 0;
  margin: 0;
  color: transparent;
  border: none;
}
.titre {
  padding-left: var(--space-3);
  padding-right: var(--space-3);
}

.icon-container {
  display: inline-flex;
  align-items: center;
  transform: translateY(14px);
}

.icon {
  height: 0.8em;
}
.info {
  padding-left: var(--space-3);
  padding-right: var(--space-3);
}
.tarifs {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: var(--space-5);
  padding-right: var(--space-5);

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--space-1);
  row-gap: var(--space-1);
}
.tarif {
  border: 1px solid var(--color-text);
  border-radius: 15px;
  padding: var(--space-2) var(--space-1) var(--space-1) var(--space-1);
  text-align: center;
}
.tarif:hover {
  border: 1px solid var(--color-secondary);
}

.tarif-co:hover a {
  color: var(--color-text) !important;
  background-color: #f4f4f4;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.tarif-co:hover {
  color: var(--color-text) !important;
  background-color: #f4f4f4;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.tarif_prix p {
  font-size: var(--typosize-h1);
  line-height: var(--typointerline-h1);
  font-weight: 100;
}
.grid_personnnes {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: var(--space-2);
  padding-right: var(--space-2);

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--space-2);
  row-gap: var(--space-1);
}
h1 {
  text-align: center;
  font-size: var(--typosize-h1);
  line-height: var(--typointerline-h1);
  font-weight: 100;
  margin: 0;
  padding: 0;
}
h2 {
  font-size: var(--typosize-h2);
  line-height: var(--typointerline-h2);
  text-align: center;
  padding: 0;
  margin: 0;
  font-weight: 100;
}

.link_blackToPrimary:hover {
  color: var(--color-primary);
}
.link_blackToSecondary:hover {
  color: var(--color-secondary);
}
.medium_p p,
.medium_p a,
.medium_p li {
  margin: 0;
  padding: 0;
  text-align: justify;
  font-size: var(--typosize-medium_p);
  line-height: var(--typointerline-medium_p);
}
.small_p,
.small_p p,
.small_p a {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: var(--typosize-p);
  line-height: var(--typointerline-p);
}
.small_p li {
  padding: 0;
  /* text-align: left; */
  /* list-style-type: none; */
}
.chapeau {
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}
.image {
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}
.chapeau p {
  font-size: var(--typosize-chapeau);
  line-height: var(--typointerline-chapeau);
  text-align: center;
  margin: 0;
  padding: 0;
}

main ul li {
  list-style-type: '- ';
  list-style-position: inside;
  margin-left: 10px;
}

button {
  margin: 0;
  text-align: center;
  border: black 1px solid;
  border-radius: 15px;
  background-color: transparent;
  cursor: pointer;
}

/* Style du bouton lorsqu'il est survolé */
button:hover {
  background-color: white; /* Ajoutez la couleur de fond blanche au survol */
  color: black;
}

/* Style du conteneur du bouton */
.bouton {
  text-align: center;
}
.btn_primary {
  background-color: var(--color-primary);
}
.btn_primary:hover {
  background-color: var(--color-secondary);
}
.btn_secondary {
  background-color: var(--color-secondary);
}
.btn_secondary:hover {
  background-color: var(--color-primary);
}

.two_col {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--space-3);
  row-gap: var(--space-2);
}
.h100 {
  height: 100%;
}
/* ------------- FOOTER ------------- */
.footer {
  background-color: var(--color-primary);
  width: 100%;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  line-height: var(--typointerline-footer-p);
}
.abonnez_vous input {
  max-width: 250px;
  background: none;
  border: none;
  border-bottom: #000 solid 1px;
  color: '#000';
}
.abonnez_vous input:focus {
  border-bottom: #000 solid 1px;
  outline: 0;
}

/* ------------- CAROUSEL ------------- */
.sec_carousel {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 auto;
  overflow-x: hidden;
}
.slider-wrapper {
  /* margin: 1rem; */
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
}

.slides-container {
  max-height: 600px;
  height: calc(100vh - 2rem);
  width: 100%;
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  overflow-y: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slides-container li {
  list-style-type: none;
}

.slide-arrow {
  position: absolute;
  display: flex;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 4rem;
  background-color: white;
  border: none;
  width: 2rem;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 100ms;
}

.slide-arrow:hover,
.slide-arrow:focus {
  opacity: 1;
}

#slide-arrow-prev {
  left: 0;
  padding-left: 0.25rem;
  border-radius: 0 2rem 2rem 0;
}

#slide-arrow-next {
  right: 0;
  padding-left: 0.75rem;
  border-radius: 2rem 0 0 2rem;
}

.slide {
  width: 100%;
  height: 100%;
  flex: 1 0 100%;
  overflow: hidden;
}
.slide img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* height: 100px; */
}

/* ----------------GALLERY------------------------*/

.gallery {
  background: transparent;
  width: 100%;
}

.gallery-cell {
  width: 33%;
  margin-right: 100px;
  margin-left: 100px;
}

@media screen and (max-width: 976px) {
  .gallery-cell {
    width: 50%;
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .gallery-cell {
    width: 80%;
    margin-right: 10px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 480px) {
  .gallery-cell {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

/* Appliquez le filtre grayscale à l'image par défaut */
.gallery-cell img {
  /*filter: grayscale(100%);*/
}

/* Retirez le filtre grayscale lorsque l'image est survolée */
.gallery-cell:hover img {
  filter: none;
}

/* cell number */
.gallery-cell:before {
  display: block;
  text-align: center;
  /*line-height: 600px;*/
  font-size: 80px;
  color: white;
}

/* Ajoutez un calque monochrome aux cellules non sélectionnées */
.gallery-cell {
  position: relative;
}

.gallery-cell.yellow-filter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    204,
    153,
    0,
    0.3
  ); /* Couleur monochrome semi-transparente rouge */
  z-index: 1; /* Assurez-vous que le calque est au-dessus de l'image */
}

/* Ajouter un filtre monochrome bleu aux cellules avec la classe .blue-filter */
.gallery-cell.blue-filter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    87,
    76,
    254,
    0.3
  ); /* Couleur monochrome semi-transparente bleue */
  z-index: 1; /* Assurez-vous que le calque est au-dessus de l'image */
}

/* Ajouter un filtre monochrome vert aux cellules avec la classe .green-filter */
.gallery-cell.green-filter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    41,
    231,
    107,
    0.3
  ); /* Couleur monochrome semi-transparente verte */
  z-index: 1; /* Assurez-vous que le calque est au-dessus de l'image */
}

/* Ajouter un filtre monochrome vert aux cellules avec la classe .green-filter */
.gallery-cell.orange-filter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    255,
    109,
    48,
    0.3
  ); /* Couleur monochrome semi-transparente verte */
  z-index: 1; /* Assurez-vous que le calque est au-dessus de l'image */
}

/* Supprimez le filtre lorsque la cellule est survolée */
.gallery-cell:hover::after {
  display: none;
}

@keyframes slideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Animation pour la sortie du header-1 */
@keyframes slideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

/* Ajout de la transition */
.header {
  transition: transform 0.3s ease;
}

.image-container {
  position: relative;
  overflow: hidden; /* Assurez-vous que le filtre reste dans la zone de l'image */
}

/*@media screen and (min-width: 1024px) {*/
.image-overlay-yellow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    204,
    153,
    0,
    0.3
  ); /* Couleur monochrome semi-transparente rouge */
  transition: opacity 0.3s ease; /* Ajouter une transition pour une apparence plus fluide */
  opacity: 1; /* Définir l'opacité initiale à 0 */
}

.image-overlay-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    87,
    76,
    254,
    0.3
  ); /* Couleur monochrome semi-transparente bleue */
  opacity: 1; /* Définir l'opacité initiale à 0 */
}

/* The .image-container class needs to be applied to a div wrapped around the image you want to apply this filter to */
.image-container-blue {
  display: inline-block;
  position: relative;
  line-height: 0;
  background: #ffffff;
}
.image-container-blue::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: lighten;
  background: #6254ff;
  opacity: 1;
}
.image-container-blue > img {
  -webkit-filter: contrast(120%) grayscale(100%) hue-rotate(0deg) invert(0%)
    opacity(100%) saturate(100%) sepia(0%);
  filter: contrast(120%) grayscale(100%) hue-rotate(0deg) invert(0%)
    opacity(100%) saturate(100%) sepia(0%);
  mix-blend-mode: none;
}

/* The .image-container class needs to be applied to a div wrapped around the image you want to apply this filter to */

/* The .image-container class needs to be applied to a div wrapped around the image you want to apply this filter to */
.image-container-yellow {
  display: inline-block;
  position: relative;
  line-height: 0;
  background: #f5eacc;
}
.image-container-yellow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
  background: #cc9e0d;
  opacity: 1;
}
.image-container-yellow > img {
  -webkit-filter: contrast(120%) grayscale(100%) hue-rotate(0deg) invert(0%)
    opacity(100%) saturate(100%) sepia(0%);
  filter: contrast(120%) grayscale(100%) hue-rotate(0deg) invert(0%)
    opacity(100%) saturate(100%) sepia(0%);
  mix-blend-mode: multiply;
}

/* The .image-container class needs to be applied to a div wrapped around the image you want to apply this filter to */

/* The .image-container class needs to be applied to a div wrapped around the image you want to apply this filter to */

/* The .image-container class needs to be applied to a div wrapped around the image you want to apply this filter to */
.image-container-orange {
  display: inline-block;
  position: relative;
  line-height: 0;
  background: #ffffff;
}
.image-container-orange::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
  background: #fd753b;
  opacity: 1;
}
.image-container-orange > img {
  -webkit-filter: contrast(120%) grayscale(100%) hue-rotate(0deg) invert(0%)
    opacity(100%) saturate(100%) sepia(0%);
  filter: contrast(120%) grayscale(100%) hue-rotate(0deg) invert(0%)
    opacity(100%) saturate(100%) sepia(0%);
  mix-blend-mode: none;
}

/* The .image-container class needs to be applied to a div wrapped around the image you want to apply this filter to */

/* The .image-container class needs to be applied to a div wrapped around the image you want to apply this filter to */
.image-container-green {
  display: inline-block;
  position: relative;
  line-height: 0;
  background: #089600;
}
.image-container-green::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
  background: #09ab00;
  opacity: 1;
}
.image-container-green > img {
  -webkit-filter: contrast(120%) grayscale(100%) hue-rotate(0deg) invert(0%)
    opacity(100%) saturate(100%) sepia(0%);
  filter: contrast(120%) grayscale(100%) hue-rotate(0deg) invert(0%)
    opacity(100%) saturate(100%) sepia(0%);
  mix-blend-mode: none;
}

.image-activity.image-container-yellow:hover,
.image-activity.image-container-blue:hover,
.image-activity.image-container-orange:hover,
.image-activity.image-container-green:hover {
  background: none !important; /* Assurez-vous que le fond du conteneur est transparent */
}

.image-activity.image-container-yellow:hover::after,
.image-activity.image-container-blue:hover::after,
.image-activity.image-container-orange:hover::after,
.image-activity.image-container-green:hover::after {
  opacity: 0 !important; /* Cachez le pseudoelement */
  background: none !important; /* Assurez-vous que le fond du pseudoelement est transparent */
  mix-blend-mode: normal !important; /* Rétablir le mode de fusion normal */
}

.image-activity.image-container-yellow:hover > img,
.image-activity.image-container-blue:hover > img,
.image-activity.image-container-orange:hover > img,
.image-activity.image-container-green:hover > img {
  -webkit-filter: none !important; /* Annuler tous les filtres appliqués aux images */
  filter: none !important;
  mix-blend-mode: normal !important; /* Rétablir le mode de fusion normal */
}

.card-image.image-container-yellow:hover,
.card-image.image-container-blue:hover,
.card-image.image-container-orange:hover,
.card-image.image-container-green:hover {
  background: none !important; /* Assurez-vous que le fond du conteneur est transparent */
}

.card-image.image-container-yellow:hover::after,
.card-image.image-container-blue:hover::after,
.card-image.image-container-orange:hover::after,
.card-image.image-container-green:hover::after {
  opacity: 0 !important; /* Cachez le pseudoelement */
  background: none !important; /* Assurez-vous que le fond du pseudoelement est transparent */
  mix-blend-mode: normal !important; /* Rétablir le mode de fusion normal */
}

.card-image.image-container-yellow:hover > img,
.card-image.image-container-blue:hover > img,
.card-image.image-container-orange:hover > img,
.card-image.image-container-green:hover > img {
  -webkit-filter: none !important; /* Annuler tous les filtres appliqués aux images */
  filter: none !important;
  mix-blend-mode: normal !important; /* Rétablir le mode de fusion normal */
}
/*}*/

.card-event-image {
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* Ratio 16:9 (9 / 16 * 100%) */
  overflow: hidden;
  position: relative;
}

.card-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.list ul li {
  list-style-type: '- ';
  list-style-position: inside;
  margin-left: 10px;
}

.list ul li::marker {
  text-indent: 5px !important;
}

.custom-button {
  background-color: transparent; /* Définir la couleur de fond du bouton comme transparent */
  border: none; /* Supprimer les bordures */
  cursor: pointer; /* Définir le curseur de la souris comme un pointeur */
  color: #000;
  margin: 0;
  text-align: center;
  border: black 1px solid;
  border-radius: 15px;
  background-color: transparent;
  cursor: pointer;
}

.custom-button:hover {
  background-color: #f4f4f4; /* Changer la couleur de fond au survol */
  color: #000 !important;
}

.custom-button:hover a {
  background-color: #f4f4f4; /* Changer la couleur de fond au survol */
  color: #000 !important;
}

.card a {
  color: #000 !important;
}

.card:hover a {
  color: var(--color-primary) !important;
}

.event-content h1 {
  color: #000 !important;
  font-weight: bold;
  text-align: start;
}

.event-content a {
  color: #000 !important;
}
