
/* propriétés structure de la page */

body
{ 
	background-color: #EAE7DC; /* sable */
	
}

#bloc_page
{
	display: flex; /* c'est un conteneur */
	flex-direction: column; /* cas natel uniquement */
	justify-content: flex-start;
	width: 95%; /* à voir si c'est utile, défini la largeur en % */
	margin: auto; /* permet de centrer les blocs */
	
}

header
{
	display: flex; /* c'est un conteneur */
	flex-direction: row;
	min-height: 100px;
	justify-content: space-between;
	align-item: center;
}

.conteneur1
{
	display: flex;
	flex-direction: column;
	
}

.conteneur2
{
	display: flex;
	flex-direction: column;
	width: 100%;
}

section
{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	
	
}

.bienvenue
	/* texte, login ou image de bienvenue */
{
	min-height: 150px;
}

nav
{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	min-height: 300px;
}

li
{
	margin-right: 60px;
	text-align: center;
	list-style-type: none; /* permet de retirer la puce */
	margin-bottom: 10px;
	margin-top: 10px;
}

article
{
	/* pour les images on pourrait mettre les bords arrondi et l'ombre */
	/* pour l'image de bienvenue on pourrait ajouter la date style bouton rouge */ 
	width : 100%;
	margin-bottom: 50px;
}

.etiquette
{
	max-width: 80%;
	text-align: left;
	background-color: #D8C3A5; /* beige */
	border: 3px grey ridge;
	padding: 5px;
	opacity: 0.8;
}

/* propriétés images */

.image_puce
{
	height: 150px;
	width: 150px;
	border-radius: 75px 75px 75px 75px;
	background-color: white;
}

.image_puce_couleur
{
	height: 150px;
	width: 150px;
	border-radius: 75px 75px 75px 75px;
	background-color: #D8C3A5; /* beige */
}

.image_petite_puce
{
	height: 50px;
	width: 50px;
	float: left;
	margin-right: 10px;
}

.image_photo
{
	width : 100%;
	box-shadow: 4px 4px 10px black;
	border-radius: 5px 5px 5px 5px;
	border: none;
	}
	
.image_plan
{
	width : 100%;
	box-shadow: none;
	border-radius: 0px 0px 0px 0px;
	background-color: #D8C3A5; /* beige */
	border: 3px grey ridge;
	}

.image_accueil_client
{
	display: none;
	
	
	
	}
	
.image_contact /* photo portrait */
{
	height: 200px;
	margin-right: 10px;
	float: left;
	border: double;
	padding: 5px;
	box-shadow: 4px 4px 10px black;
	background-color: white;
	}

.image_logo /* logo header */
{
	height: 100px;
	width: 100px;
	box-shadow: 4px 4px 10px black;
	background-color: white;
	}
	
.image_partenaires
{
	height: 150px;
	width: 150px;
	float: left;
	margin-right: 10px;
}

.texte
{
	display: none;
}

input
{
	width : 100%;
	height: 80px;
	border-radius: 40px 40px 40px 40px;
	box-shadow: 4px 4px 10px black;
	text-align: center;
	font-size: 28px;
	font-style: italic;
	border: none;
}

input:focus
{
    outline: none;
	
}

input:focus::placeholder
{
       color:transparent;
}

::placeholder
{
	color: #E98074; /* rose */
}

/* propriétés textes */

@font-face {
		font-family: "bahnschrift";
		src: url("/font/bahnschrift.ttf") format("ttf");
}

@font-face {
		font-family: "gadugib";
		src: url("/font/gadugib.ttf") format("ttf");
}

@font-face {
		font-family: "The Yoshi";
		src: url("/font/The Yoshi.ttf") format("ttf");
}

p

{
	font-family: 'gadugib', Gadugi, 'Leelawadee UI Semilight', Verdana, sans-serif;
	text-decoration: none;
	font-weight: bold;
	text-align: justify;
	color: black; /* BLACK */
	font-size: 30px;
	text-decoration: none;

	}

strong /* général : mise en valeur (titre header, titres clients, titre contact) */
{
	color: #E98074; /* rose */
	}
	
em /* général : autre mise en valeur secondaire */
{
	color: #E98074; /* rose */
	}
	
mark /* petite note grise */
{
	font-family: 'gadugib', Gadugi, Verdana, sans-serif;
	font-size: 25px;
	text-decoration: none;
	font-weight: normal;
	background-color: transparent;
	text-transform: lowercase;
	color: #8E8D8A; /* gris */
}
	
h1 /* titre fabian spinelli architecte */
{
	font-size: 30px;
	font-family: 'roboto-condensed', 'Bahnschrift Condensed', Verdana, sans-serif;
	text-align: left;
	font-style: normal;
	text-transform: uppercase;
	color: #E85A4F; /* rose */
	}
	
h2 /* sous-titre */
{
	font-size: 20px;
	font-family: 'roboto-condensed', 'Bahnschrift Condensed', Verdana, sans-serif;
	text-align: left;
	font-style: normal;
	text-transform: lowercase;
	color: #E85A4F; /* rose */
	margin: 0;
	}	

	
a
{
	font-family: 'gadugib', Gadugi, Verdana, sans-serif;
	text-decoration: none;
	font-style: normal;
	font-weight: normal;
	text-align: justify;
	font-size: 30px;
	text-decoration: none;
	color: #8E8D8A; /* gris */
}

a:hover
{
	font-family: 'gadugib', Gadugi, Verdana, sans-serif;
	text-decoration: none;
	font-style: normal;
	text-align: justify;
	font-size: 30px;
	text-decoration: none;
	color: #E98074; /* rose */
}



