body::after{
	position: fixed;
	top: 5px;
	right: 10px;
	background: var(--Neutre);
	color: white;
	padding: 2px 6px;
	font-size: 12px;
	z-index: 2000;
}

body::after{ content: "Desktop XL"; }
@media(max-width: 1400px){ body::after{ content: "Desktop L"; } }
@media(max-width: 1200px){ body::after{ content: "Desktop M"; } }
@media(max-width: 1024px){ body::after{ content: "Tablette paysage / Desktop S"; } }
@media(max-width: 992px){ body::after{ content: "Tablette portrait"; } }
@media(max-width: 768px){ body::after{ content: "Mobile paysage"; } }
@media(max-width: 576px){ body::after{ content: "Mobile portrait"; } }
@media(max-width: 400px){ body::after{ content: "Mini écran"; } }

.crp{
	border: solid;
	border-color : red;
}

.crp div{
	border: solid;
	border-color : orange;
}

.pge{
	border: solid;
	border-color : blue;
}

.pge div{
	border: solid;
	border-color : green;
}

/***********
 * Accueil *
 ***********/
.accueil-container{
	padding: 1rem;
	max-width: 1280px;
	margin: 0 auto; 
}

.intro{
	text-align: center;
	margin-bottom: 2rem;
}

.services{
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.service-box{
	background-color: #f9f9f9;
	border-radius: 1rem;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	padding: 1.5rem;
	width: 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
	text-align: center;
}

.service-box .btn{
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	align-self: center;
}

.service-box h3{ margin-bottom: 0.5rem; }

.service-box p{ margin-bottom: 1rem; }

/***********
 * Contact *
 ***********/
.contact-container{
	max-width: 600px;
	margin: 30px auto;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
	background: white;
	text-align: center;
}

.contact-container h2{
	margin: 0 0 10px;
	font-size: 24px;
	color: var(--Primaire);
}

.contact-container p{ margin: 0 0 20px; }

/**************
 * Info cards *
 **************/
.info-grd{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 20px;
	margin: 20px 0;
}

.info-crd{
	background: #f9f9f9;
	border-radius: 12px;
	padding: 20px 10px;
	text-align: center;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%; 
}

.info-crd:hover{
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.info-crd .icon{
	font-size: 2em;
	margin-bottom: 10px;
}

.info-crd .valeur {
	font-size: 1.6em;
	font-weight: bold;
	color: #006699;
	margin: 0 0 10px 0;
}

.info-crd .label {
	font-size: 0.95em;
	color: #444;
	margin: 0;
}

/*******************
 * Acces Restreint *
 *******************/
.bnr{
	max-width: 1280px;
	margin: 30px auto;
	padding: 20px;
	background-color: #ffeecc;
	border: 2px solid #ffa500;
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.bnr h2{
	margin: 10px 0 5px;
	color: #cc6600;
}

.bnr p{ margin: 10px 0; }

.bnr .banner-img{
	width: 120px;
	height: auto;
	margin-bottom: 10px;
}