/*-----------------------------------------------------------------------------

Atelier__85 CSS Framework 2025 - V1.0

-------------------------------------------------------------------------------

By Nicolas EVARISTE (https://www.atelier85.fr)
© 2025 - All rights reserved - Toute reproduction interdite

------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 Variables
------------------------------------------------------------------------------*/
:root{
	--coul-1: #000000;	 					/* Couleur : Noir */
	--coul-2: #FFFFFF;						/* Couleur : Blanc*/
	
	--font-1: "stevie-sans", sans-serif;
	
	--100px: 100px;	
	--50px: 50px;	
	--25px: 25px;	
	--10px: 10px;
	--5px: 5px;
}

/*-----------------------------------------------------------------------------
 Reset
------------------------------------------------------------------------------*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
    vertical-align: middle;
}
h1, h2, h3, h4, h4, h5, h6 {
	margin: 0;
	font-size: inherit;
	font-weight: normal;
	padding: 15px 0;
}
form, figure{
	margin: 0;
	padding: 0;
}
iframe {
  border: 0;
  max-width: 100%;
}
pre{
	margin: 0;
	padding: 0;
}

strong{
	font-weight: 500;
}

/*-----------------------------------------------------------------------------
 Général
------------------------------------------------------------------------------*/

/* HTML / Body
--------------------------------------------------*/
html, body {
	height: 100%;
}
body {
	font-family: var(--font-1);
 	font-optical-sizing: auto;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.5;
	color: #000000;
	background: #ffffff;
	margin: 0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

/* WP
--------------------------------------------------*/
.wp-block-image{
	margin: 0;
	padding: 0;
	margin-top: 30px;
}
.wp-block-file{
	
}
.wp-block-gallery{
	
}
.wp-block-separator{
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	background: var(--coul-1);
	margin-top: 80px;
	margin-bottom: 80px;
}
.wp-block-spacer{
	
}
.wp-block-columns{
	
}
.wp-block-column{
	
}
h1.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading,
h5.wp-block-heading,
h6.wp-block-heading{
	
}
h1.wp-block-heading{
	font-size: 2.2rem;
	line-height: 1em;
	font-weight: 300;
	color: var(--coul-1);
}
h2.wp-block-heading{
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--coul-1);
}
h3.wp-block-heading{
	font-size: 1.5rem;
}
h4.wp-block-heading{
	font-size: 1.3rem;
}
h5.wp-block-heading{
	
}
h6.wp-block-heading{
	
}
figcaption{
	font-size: 14px;
	text-align: center;
	color: #afafaf;
}

/*-----------------------------------------------------------------------------
 Grid et Flex
------------------------------------------------------------------------------*/

/* Grille
--------------------------------------------------*/
.grid{
	display: grid;
}

/* Flex
--------------------------------------------------*/
.flex-col{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Colonnes
--------------------------------------------------*/
.col-1{
	grid-template-columns: 1fr;
}
.col-2{
	grid-template-columns: repeat(2, 1fr);
}
.col-3{
	grid-template-columns: repeat(3, 1fr);
}
.col-4{
	grid-template-columns: repeat(4, 1fr);
}
.col-6{
	grid-template-columns: repeat(6, 1fr);
}
.col-2_33-66{
	grid-template-columns: 33% 66%;
}
.col-2_66-33{
	grid-template-columns: 66% 33%;
}

/* Gap
--------------------------------------------------*/
.gap-100{
	grid-gap: var(--100px);
}
.gap-50{
	grid-gap: var(--50px);
}
.gap-25{
	grid-gap: var(--25px);
}

/*-----------------------------------------------------------------------------
 Alignements
------------------------------------------------------------------------------*/

/* Alignements - Grid
--------------------------------------------------*/
.align-middle{
	align-items: center;
}
.align-top{
	align-items: start;
}
.align-bottom{
	align-items: end;
}
.item-center{
	align-self: center;
  	justify-self: center;
}

/* Alignements - Textes
--------------------------------------------------*/
.txt-center{
	text-align: center;
}
.txt-justify{
	text-align: justify;
}
.txt-left{
	text-align: left;
}
.txt-right{
	text-align: right;
}

/* Alignements - Divers
--------------------------------------------------*/
.center{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

/*-----------------------------------------------------------------------------
 Liens et boutons
------------------------------------------------------------------------------*/

/* Liens
--------------------------------------------------*/
a.lien{
	display: inline-block;
	position: relative;
	color: inherit;	
	text-decoration: none;
}
a.lien::after{
    content: '';
    display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1px;
	margin-left: auto;
	margin-right: auto;
    transition: all 300ms;
	opacity: 0;
	width: 0;
	height: 1px;
	background: var(--coul-1);
}
a.lien:hover::after{
	opacity: 1;
	width: 100%;

}

/* Liens et Boutons - Boutons
--------------------------------------------------*/
.bt{
	display: inline-block;
	text-decoration: none !important;
	cursor: pointer;
	-webkit-appearance: none; 
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-width: 1px;
	border-style: solid;
	padding: 5px 15px 5px 15px;		/* --- A CUSTOMISER */
}
.cn-set-cookie.bt{
	border: none !important;
}
.cn-more-info.bt{
	background: none;
	color: #fff;
}

/*-----------------------------------------------------------------------------
 Effets / Animations
------------------------------------------------------------------------------*/

/* Hover
--------------------------------------------------*/
.hover-scale img,
.hover-scale svg{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.hover-scale img:hover,
.hover-scale svg:hover{
	transform: scale(1.1);
}
@-webkit-keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*-----------------------------------------------------------------------------
 Divers
------------------------------------------------------------------------------*/
.overflow-h{
	overflow: hidden;
}
.txt17{
	font-size: 17px;
}
.txt16{
	font-size: 16px;
}