@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.ttf') format('truetype');
}

html, body {
	padding: 0px;
	margin: 0px;
	background-color: rgb(199, 225, 225);
	font-family: Comic Sans MS;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

img {
	border-radius: 20px;
}

/* static */
/*image + nav*/

.en_tete {
	display: flex;
	background-color: rgb(133, 175, 183);
	padding: 0 20px;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
	height: 10vh;
	min-height: 50px;
	box-sizing: border-box;
}

.titre img {
	padding: 0px;
	margin: 0px;
	height: 7.5vh;
	min-height: 37.5px;
	width: auto;
	border-radius: 10px;
	border: solid rgb(0,0,0) 2px;
}

.active {
	background-color: rgb(197, 237, 237);
}

#menu-btn {
	display: none;
	font-size: 24px;
	background: rgb(255, 255, 255);
	border: 2px solid rgb(0, 0, 0);
	border-radius: 5px;
	cursor: pointer;
}

#menu-tgl {
	display: none;
}

@media screen and (min-width: 851px) {
	nav ul {
		display: flex;
		flex-direction: row;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	nav ul li {
		display: flex;
	}

	nav ul li a {
		display: flex;
		align-items: center;
		padding: 10px 1rem;
		text-decoration: none;
		color: rgb(0, 0, 0);
	}

	nav ul li:hover {
		transition: background-color 0.4s ease;
		background-color: rgb(197, 237, 237);
	}
}

 /* Quand la fenêtre fait moins de 800px */
@media screen and (max-width: 850px) {
	#menu-btn {
		display: inline-block;
		position: absolute;
		padding: 0 10px;
		right: 20px;
	}

	nav {
		display: none;
	}

	#menu-tgl:checked + #menu-btn + nav {
		display: block;
		z-index: 1000;
	}

	#menu-tgl:checked + #menu-btn + nav ul {
		display: flex;
		position: fixed;
		flex-direction: column;
		list-style: none;
		margin: 0;
		padding: 0;
		left: 0;
		top: 0;
		width: 70%;
		height: 100%;
		background-color: rgb(133, 175, 183);
		border-right: 2px solid rgb(0, 0, 0);
	}

	#menu-tgl:checked + #menu-btn + nav ul li a {
		display: flex;
		align-items: center;
		padding: 10px 1rem;
		text-decoration: none;
		color: rgb(0, 0, 0);
	}

	#menu-tgl:checked + #menu-btn + nav ul li:hover {
		transition: background-color 0.4s ease;
		background-color: rgb(197, 237, 237);
	}
}

/* footer */

footer p {
	margin: 0 0;
}

@media screen and (min-width: 851px) {
	footer {
		background-color: rgb(133, 175, 183);
		height: 7vh;
		min-height: 30px;
		display: flex;
		justify-content: space-evenly;
		align-items: center;
	}
}

@media screen and (max-width: 850px) {
	footer {
		background-color: rgb(133, 175, 183);
		height: 25vh;
		min-height: 30px;
		display: flex;
		flex-direction : column;
		justify-content: space-evenly;
		align-items: center;
	}
}


/*
footer {
	background-color: rgb(133, 175, 183);
	height: 25vh;
	min-height: 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
}

footer .important {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
*/


/* section */

section {
	box-sizing: border-box;
	width: 94%;
	min-height: 77vh;
	max-width: 1300px;
	margin: 3vh auto;
	background-color: rgb(133, 175, 183);
	padding: 10px;
}


@media screen and (min-width: 701px) {
	section .right{
		float: right;
		width: 25%;
		height: auto;
	}
	.right img{
		box-sizing: border-box;
		padding-left: 10px;
		width: 100%;
		height: auto;
	}
	section .left{
		float: left;
		width: 25%;
		height: auto;
	}
	.left img{
		box-sizing: border-box;
		padding-right: 10px;
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 700px) {
	section .right{
		width: 100%;
		height: auto;
		display: flex;
		justify-content: center;
	}
	.right img{
		width: 85%;
		height: auto;
	}
	section .left{
		width: 100%;
		height: auto;
	}
	.left img{
		width: 85%;
		height: auto;
	}
}


section h1 {
	text-align: center;
}

section .petit {
	font-size: 10px;
}

section p {
	margin: 0px;
}

section ul li {
	margin: 10px 0px;
}

.souligne {
	text-decoration: underline;
}

/* .accueil = section pour la page accueil */

.titre2 {
	display: flex;
	flex-direction: center;
}

.titre2 img {
	margin: 0 auto;
	height: 150px;
	width: auto;
	border-radius: 10px;
	border: solid rgb(0,0,0) 2px;
}

.centrer2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

 /* Quand la fenêtre fait moins de 900px */
@media screen and (max-width: 900px) {
    .centrer2 {
      flex-direction: column;
    }
    .centrer2 img:first-child {
      order: -1; /* Première image en haut */
	  max-width: 700px;
	  width: 90%;
	  height: auto;
    }
    .centrer2 img:last-child {
      order: 1; /* Deuxième image en bas */
	  max-width: 700px;
	  width: 90%;
	  height: auto;
    }
}

/* .massage = section pour la page massage */

.massage h1 {
	text-align: center;
	text-decoration: underline;
}

.massage p {
	margin: 0px;
}

.massage ul li {
	margin: 10px 0px;
}

@media screen and (min-width: 701px) {
	.cadre {
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		align-items: center;
		gap: 20px;
	}
	.cadre img {
		margin: auto;
		width: 30%;
		height: 30%;
	}
}

@media screen and (max-width: 700px) {
	.cadre {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
	.cadre img {
		width: 80%;
		height: auto;
		margin: auto;
	}
	.cadre div {
		margin: auto;
	}
}

.cadre ul {
	border-radius: 20px;
	background-color: rgb(197, 237, 237);
}

.cadre .centrer {
	background-color: rgb(197, 237, 237);
}

/* .atelier_signe = section pour la page massage */

.cadre .centrer {
	border-radius: 20px;
	width: 100%;
	height: 100%;
}

.centrer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.centrer p {
	margin: 3px auto;
}

/* .contact = section pour la page massage */


.logo_insta {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.logo_insta img{
	border-radius: 0px;
	height: 20px;
	width: auto;
}

/* .a_propos = section pour la page massage */

.list {
	z-index: 1;
	position: absolute;
	height: 120px;
	width: auto;
	transform: translateX(-36px) translateY(-37px);

}

.a_propos p {
	margin: 30px 0;
}

.a_propos .justify_align p {
	text-align: justify;
}

.haut {
	z-index: 1;
	position: absolute;
	height: 200px;
	width: auto;
	right: 0px;
	transform: translateX(px) translateY(-37px);
}