@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", serif;
  	font-weight: 400;
  	font-style: normal;
  	scroll-behavior: smooth;
}

/*---------MENU BURGER----------*/
#burger{
	position: absolute;
	width: 100%;
	right: 0;
	top:0;
	font-size: 20px;
	display: none;
}

#burger nav{
	background-color:lightgrey ;
	width: 100%;
	text-align: center;
	padding: 20px 0;
	transition: transform 1s;
}

#open, #close{
	position: absolute;
	height: 40px;
	font-size: 50px;
	right: 20px;
	z-index: 1;
}

#burger a{
	color: black;
	text-decoration: none;
	display: block;
	padding: 10px 0;
}

/*Fait apparaître ou disparaître le bouton*/

#burger:target #open, #burger:not(:target) #close{
	display:none;
}

#burger:not(:target) .nav{
	transform: translate3d(0, -300px, 0);
}

#burger:target .nav{
	transform: translate3d(0, 0, 0);
}


/*---------FIN MENU BURGER----------*/

@keyframes fade{
	from {opacity:0}
	to {opacity:1}
}

.scroll-haut{
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: white;
	border: thin solid black;
	padding: 10px;
	font-size: 30px;
	border-radius: 10px;
	animation: fade;
	animation-timeline: scroll(y root);
}


header{
	text-align: center;
	margin-top: 30px;
}

header nav{
	background-color:lightseagreen;
	width: 1000px;
	margin: auto;
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
	padding: 20px;
}

a{
	text-decoration: none;
	color: black;
}

header nav a{
	color: white;
	height: 30px;
}

header nav a:hover{
	border-bottom: 3px solid black;
}

#banniere{
 background: url(images/bandeau.jpg) center/cover;
 height: 500px;
}

.cont-bleu{
	background-color: #2b3a3f;
	color: white;
}

.contenu{
	width: 1000px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

h1,h2{
	text-align: center;
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 500;
}

h3{
	text-align: center;
	text-transform: uppercase;
	background-color:lightseagreen;
	padding: 20px;
	color: white;
	margin-bottom: 20px;
}

.titre-hono{
	width: 100%;
	font-size: 30px;
	margin-top: 20px;
	padding: 10px;
	box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.3);
}

section{
	padding: 40px;
	text-align: center;
}

hr{
	height: 3px;
	width: 30%;
	background-color:lightseagreen;
	border: 0;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 40px;
}

.txt-vert{
	color: lightseagreen;
}

p{
	line-height: 1.8;
}

.bton{
	background-color: lightseagreen;
	padding: 10px 40px 10px 40px;
	color: white;
	border-radius: 10px;
	margin-top: 40px;
}

.cont-col{
 	display: flex;
 	gap: 60px;
}

.col{
/*	width: 30%;*/
flex-basis: fit-content;
}

.hono,.contact{
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
	align-items: center;
	margin-bottom: 20px;
}

.hono-col1{
	width: 48%;
	text-align: right;
}

.hono-col2{
	height: 3px;
	background-color: lightseagreen;
	width: 4%;
}

.hono-col3{
	width: 48%;
	text-align: left;
}

em{
	font-style: italic;
}

.col-contact1{
	width: 45%;
	text-align: right;
}

.col-contact2{
	width: 55%;
	text-align: left;
}

.hr-contact{
	width: 20%;
}

footer{
	background-color:lightseagreen;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

footer img{
	width: 30px;
}

/*-----------RESPONSIVE--------------*/

@media screen and (max-width:1000px){

	#burger{
		display: block;
	}

	.contenu{
		width: 100%;
	}

	header nav{
		display: none;
	}

	.cont-col,.hono{
		flex-direction: column;
	}

	.hono{
		margin-bottom: 50px;
	}

	.hono-col1,.hono-col3{
		width: 100%;
		text-align: center;
	}

	.col-contact1{
		width: 40%;
	}

	.col-contact2{
		width: 60%;
	}

}