@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;
	padding: 0;
	box-sizing: border-box;
	font-weight: 400;
	font-family: "poppins", sans-serif;
}



/*...............................................Début menu burger........................................ */
#burger {
	/*Permet que la div se place tout au dessus des éléments sans intervenir avec eux*/
	display: none;
	position: absolute;
	width: 100%;
	font-size: 20px;
	color: black;
	height: 500px;
	right: 0;
	top: 0;
}

#burger .nav-smart{
	position: absolute;
	background: #e4e3e1;
	width: 100%;
	text-align: center;
	padding: 20px 0;
	transition: transform 0.4s;
}


#open, #close{
	position: absolute;
	height: 45px;
	/*Passage au premier ou second plan / 1 = 1er plan*/
	z-index: 1;
	right: 20px;
	font-size: 50px;
}

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


/*Faire disparaître ou apparaître le bouton burger*/
/*Si burger apparaît dans l'url, bouton open disparaît et si burger n'apparaît pas dans l'url, bouton close disparaît*/
#burger:target #open, #burger:not(:target) #close{
	display: none;

}

/*Si #burger n'apparaît pas dans l'url, cela place la nav en dehors de la fenêtre*/
#burger:not(:target) .nav-smart{
	transform: translate3d(0px, -270px, 0px);
}

}


/*...................................................Fin menu burger ...................................................................*/

strong{
	font-weight: bolder;
}


#logo{
	width: 150px;
	height: 32px;
	background:url(../images/logo.webp) no-repeat;
}

.contenu{
	width: 1000px;
	margin: auto;
	display:flex;
	justify-content: space-between;
	align-items: center;
	min-height: 100px;
	gap: 40px;
}

.align-haut{
	align-items: start;
}

header,footer,.gris{
	background-color: #e4e3e1;
}

header nav{
	display: flex;
	width: 450px;
	justify-content: space-between;
}

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

header a{
	font-size: 18px;
	transition: 0.5s;
}

header a:hover{
	color: #dc7f53;
}

.orange{
	color: #dc7f53;
}

#banniere-accueil{
	height: 90vh;
	background: url(../images/fond.webp) center/cover no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}

#banniere-accueil h1{
	font-weight: 500;
}

.banniere{
	height: 480px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

#banniere-propos{
	background: url(../images/fond-propos.webp) center/cover no-repeat;
}



h1{
	font-size: 72px;
	text-align: center;
	line-height:1.1;
}

h2{
	margin: 40px 0;
	text-align: center;
	font-size: 60px;
}

.bouton{
	color: black;
	text-decoration: none;
	border: thin solid black;
	padding: 10px;
}

#produits{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.col{
	flex-basis: 0;
	flex-grow: 1;
}

.col-img{
	width: 300px;
	height: 330px;
	border-radius: 10px;
}

#col-img1{
	background: url(../images/bloc1.webp) center/cover no-repeat;
}

#col-img2{
	background: url(../images/bloc2.webp) center/cover no-repeat;
}

#col-img3{
	background: url(../images/bloc3.webp) center/cover no-repeat;
}

#nouveautes .col p{
	margin-top:20px;
	text-align: center;
}


#nouveautes .contenu{
	align-items: start;
}

#mission .col{
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 20px;
}

.img-rond{
	border-radius: 50%;
	width: 430px;
	height: 430px;
	background: url(../images/bloc4.webp) center/cover no-repeat;
}

#mission{
	margin-top: 40px;
}


#savoir{
	background-color:#dc7f53;
	margin-top: 40px;
}

#savoir h2{
	font-size: 48px;
	color: white;
}

#savoir .bouton{
	color: white;
	border: thin solid white;
}

footer{
	padding: 40px;
}


footer nav{
	display: flex;
	flex-direction: column;
	padding-left: 15px;
	gap: 10px;
	margin-top: 15px;
}

.reseaux{
	display: flex;
	justify-content: end;
	gap: 15px;
	margin-top: 15px;
}

.reseaux img{
	width:30px;
}

footer p{
	text-align: right;
}


/*-----------PAGE PRODUIT---------------------*/

#banniere-produits{
	background: url(../images/fond-produit.webp) center/cover no-repeat;
}

#brac{
	background: url(../images/produit1.webp) center/cover no-repeat;
}

#moderna{
	background: url(../images/produit2.webp) center/cover no-repeat;
	order: -1;
}

#spectra{
	background: url(../images/produit3.webp) center/cover no-repeat;
}

#donna{
	background: url(../images/produit4.webp) center/cover no-repeat;
	order: -1;
}


.img-prod{
	width: 400px;
	height: 400px;
	border-radius: 10px;
}

.sect-prod .contenu{
	gap: 180px;
}

.sect-prod h2{
	font-size: 28px;
	text-align: left;
	margin-top: 0;
}

.sect-prod{
	padding: 40px;
}

/*-----------PAGE CONTACT---------------------*/

#banniere-contact{
	background: url(../images/fond-contact.webp) center/cover no-repeat;
}

#contact{
	text-align:center;
}

#contact img{
	width: 80px;
}

#map{
	margin: 50px 0;
}

iframe{
	border-radius: 10px;
}

#img-form{
	border-radius: 10px;
	width: 410px;
	height: 520px;
	background: url(../images/produit3.webp) center/cover no-repeat;
}

#formulaire h2{
margin: 0;
font-size: 20px;
text-align: left;
margin-bottom: 30px;
}

#formulaire .contenu{
	gap: 150px;
}

input,label,textarea{
	width: 100%;
}

input, textarea{
	margin-bottom: 20px;
}

input{
	height: 30px;
}

textarea{
	height: 150px;
}

.bton-envoi{
	width: 120px;
	height: 50px;
	background-color:#dc7f53;
	color: white;
	border: none;
}

#horaires .contenu{
	gap: 0;
	text-align: center;
}

#horaires{
	margin-bottom: 40px;
}

hr{
	margin:10px 0;
}


/* MEDIA QUERIES - Responsive design / Toujours en bas ......................................................................*/
/*Lorsque l'écran arrive à +1000px, les propriétés suivantes se mettent en place */
@media screen and (max-width: 1000px){

	#burger{
		display: block;
	}





	.contenu{
		width: 100%;
		flex-direction: column;
		padding: 0 20px;
	}

	.col-img{
		width: 100%;
	}

	.img-rond{
		width: 340px;
		height: 340px;
	}

	#mission .col{
		align-items: center;

	}


	h2{
		font-size: 30px;
	}



	h1{
		font-size: 40px;
	}

	#banniere-accueil{
		height: 30vh;
	}



	header nav{
		display: none;
	}



	#savoir{
		padding: 40px 0;
	}



	#savoir h2{
		margin: 0;
	}


	footer nav, footer p{
		text-align: center;
		padding: 0;

	}


	.reseaux{
		justify-content: center;
	}



	/*....................................Produits.........................................*/


	.sect-prod .contenu{
		gap: 20px;
	}


	#moderna, #donna{
		order: 0;
	}


	#horaires .contenu{
		flex-direction: row;
		flex-wrap: wrap;
		gap: 40px;
		align-items: start;
	}
	

	header .contenu{
		justify-content: center;
	}










}