@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');

*{
	box-sizing: border-box;
	margin: 0;
	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: lightseagreen;
	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 apparaitre ou disparaitre le bouton*/

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

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

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

/*---------------	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: 20px;
}

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

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

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

header nav a:hover{
	border-bottom: 2px solid white;

}

#banniere{
	height: 700px;
	background-image: url(bandeau.jpg);
	background-size: cover;
	background-position: center;
}

.cont-bleu{
	background-color: rgb(46, 58, 62);
	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;
	color: white;
	padding: 20px;
	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;
}

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

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

.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: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

footer img{
	width: 30px;
	margin-top: 5px;
}

/*--------Responsive--------*/

@media screen and (max-width:1000px){
	.contenu{
	width: 100%;
	}

	header nav{
		display: none;
	}

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

	.hono{
		margin-bottom: 30px;
	}

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

	.col-contact1{
		width: 40%;
	}

	.col-contact2{
		width: 60%;
	}

	#burger{
	display: block;
	}

}





