@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

:root {

/* POLICE OUTFIT */

--main-title-fontfamily: 'Outfit', sans-serif;
--main-text-fontfamily: 'Outfit', sans-serif;

/* Tailles */
--main-text-fontsize: 18px;
--main-text-fontweight: 500;
--main-text-lineheight: 1.7em;
--main-text-letterspacing: 0px;

--h1-fontsize: 40px;
--h1-lineheight: 1.1em;
--h1-letterspacing: 0px;
--h1fontweight: 700;
--h1texttransform: none;

--h2-fontsize: 30px;
--h2-lineheight: 1.2em;
--h2-letterspacing: 0px;
--h2fontweight: 700;
--h2texttransform: none;

--h3-fontsize: 24px;
--h3-lineheight: 1.4em;
--h3-letterspacing: 0px;
--h3fontweight: 700;
--h3texttransform: none;
}

/* Largeur à 1120px */
#yw-main .yw-main-content, section.full-width .container {
	width: 100%;
	flex: 1 auto;
	padding: 0;
	max-width: 1120px;
	border-radius: none;
}

h1 {
    font-family: var(--main-title-fontfamily);
    font-size: var(--h1-fontsize);
    color: var(--primary-color);
    line-height: var(--h1-lineheight);
	 letter-spacing: var(--h1-letterspacing);
	 font-weight: var(--h1fontweight);
    text-transform: var(--h1texttransform);
}

/* Modif de la couleur du H1 en #f0f7f0 (sinon le h1 du wiki est en primary color, soit #40bacb) */
.h1pagecarto {
    color: var(--neutral-light-color);
}

h2 {
    font-family: var(--main-title-fontfamily);
    font-size: var(--h2-fontsize);
    color: var(--primary-color);
    line-height: var(--h2-lineheight);
	 letter-spacing: var(--h2-letterspacing);
	 font-weight: var(--h2fontweight);
    text-transform: var(--h2texttransform);
}

h3 {
    font-family: var(--main-title-fontfamily);
    font-size: var(--h3-fontsize);
    color: var(--secondary-color-1);
    line-height: var(--h3-lineheight);
	 letter-spacing: var(--h3-letterspacing);
	 font-weight: var(--h3fontweight);
    text-transform: var(--h3texttransform);
}

/* Paragraphe <p> personnalisé */
.perso {
  font-family: var(--main-text-fontfamily);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom:30px;
}

/* opacité image de fond */
.image-opacity-25 {

    position: relative;

}

.image-opacity-25::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;

}

.image-opacity-25 * {
    
    position: relative;
    z-index: 2;

}

/* BAZAR */
/*.BAZ_fiche_titre {*/
/*		color:var(secondary-color-2);*/
/*		border-bottom:2px solid var(--primary-color);*/
/*}*/

/* Pas de fond gris sous les card */
.style-square .bazar-card .content {
  /* background-color: #f5f5f5b3; */
  background-color: transparent;
}


/*
Voici un exemple de css custom pour le theme margot, il agit sur les variables css non personnalisables dans le theme et permet de faire des css sur mesure.
Chaque ligne ci-dessous est à décommenter pour etre utilisée
Pour en savoir plus, voyez la documentation sur https://yeswiki.net/?DocumentationThemeMargot
*/

/* :root { */

/* couleur des titres */
/* --title-h1-color:var(--neutral-color); */
/* --title-h2-color:var(--primary-color); */
/* --title-h3-color:var(--secondary-color-1); */
/* --title-h4-color:var(--secondary-color-2); */
 
/* couleur pour les messages positifs par defaut vert */
/* --success-color: #3cab3b; */

/* couleur pour les messages d'erreur par defaut rouge */
/* --danger-color: #d8604c;  */

/* couleur pour les messages d'alerte par defaut orange */ 
/* --warning-color: #D78958; */

/* couleur de fond de la partie centrale votre wiki */
/* --main-container-bg-color:var(--neutral-light-color); */

/* couleur des liens */
/* --link-color: var(--primary-color);  */

/* couleur des liens au survol */
/* --link-hover-color: var(--primary-color);  */

/* couleur de la barre de menu */
/* --navbar-bg-color: var(--primary-color); */

/* --navbar-text-color: var(--neutral-light-color); */

/* --navbar-link-color: var(--neutral-light-color); */

/* --navbar-link-bg-color: transparent; */

/* --navbar-link-hover-color: rgba(255,255,255,0.85); */

/* --navbar-link-bg-hover-color: transparent; */

/* --navbar-border: none; */

/* --navbar-border-radius: 0; */

/* --navbar-shadow: none; */

/* --header-bg-color: var(--neutral-light-color); */

/* --header-text-color: var(--neutral-color); */

/* --header-title-color: var(--primary-color); */

/* couleur de fond du pied de page */
/* --footer-bg-color: transparent; */

/* --footer-text-color: var(--main-text-color); */

/* --footer-title-color: var(--main-text-color); */

/* --footer-border: 3px solid var(--neutral-soft-color); */

/* --btn-border: none; */

/* --btn-border-radius: .5em; */

/* --checkbox-color: var(--primary-color); */

/* } */