/*	======================================================================================================================
**
**  CSS Global du site florencegiraud.com
** Version : février 2016
**	
	====================================================================================================================== */


/*	======================================================================================================================
	Global
	====================================================================================================================== */
body{
	background-image:url('../images/accueil_parallax.jpg');
	margin:0;
	background-attachment: fixed;
}

#tout{
	margin-left: auto;
	margin-right: auto;
	max-width:1000px;
}

#cv_resume , #competences, #contact, #contact_form, header, nav, nav ul, h2, footer p, #localisation{
	text-align:center;
}

#corps {
    background-color: #edf6b9;
    padding: 20px;
}

.top{
	position:fixed;
	right:1em;
	bottom:1em;
	background:none;
	border:none;
}

/*En-tête*/
header{
	background-image:radial-gradient(#3C3F48, #33363D);
	opacity:0.7;
	min-height:100px;
	font-family:"Centaur", serif;
	font-size:2em;
	color: white;
	text-shadow: 0px 3px 0px black;
	margin-top:0;
	padding-top:1%;
}

header h1{
	margin-top:0;
	margin-bottom:0;
	padding-bottom:2%;
}


/*	======================================================================================================================
	Menu navigation
	====================================================================================================================== */

nav{
	background-image:linear-gradient(#AFCB29, #7C8F1C);
}

nav a{
	text-decoration:none;
	display:block;
	padding:10px 30px;
	color:white;
}

nav, nav ul{
	margin:0px;
	padding:0px;
	list-style:none;
}

nav ul{
	position:absolute;
	overflow:hidden; /*cache les sous-menus*/
	left: 0px;
	right: 0px;	
	max-height:0px;
	-moz-transition: 0.7s ease-in-out; /*Pour firefox*/
	-webkit-transition: 0.7s ease-in-out; /*Pour Google Chrome*/
	transition: 0.7s ease-in-out; /*Pour IE*/
}

nav ul a{
	padding:10px 0px;
}

nav li{
	display:inline-block;
	position:relative;
}

/*les sous menus*/
nav ul li{
	display:inherit; /*permet de couvrir l'ensemble des lignes*/
}

nav ul li:last-child{
	border-radius:0 0 5px 5px;
}

nav li:hover ul{
	max-height:15em;
}

nav li li{
	background-image:radial-gradient(#AFCB29, #c7da69);
}

nav li:hover li a{
	color:white; 
	text-transform:inherit;
}

nav li:hover a, nav li li:hover a{
	color:black; /*Retour à la couleur*/
}

/*	======================================================================================================================
	Corps de la page
	====================================================================================================================== */
	
aside, section, footer p{
	font-family: "century schoolbook", serif;
}

section{
	margin-bottom:5%;
	border-radius:15px ;
	padding:2%;
}

h2{
	color:#AFCB29;
	text-shadow: grey 1px 1px 1px;
	text-transform: uppercase;
}

.lien_black{
	color:black;
	font-weight:bold;
}

section a{
	color:white;
	text-decoration:none;
}

.lien_formation{
	float:right;
}

/*spécifiques à la page cv + competences*/

#competences ul{
	list-style-type:none;
}


/*	======================================================================================================================
	Pied de page
	====================================================================================================================== */
footer p
{
	font-size:1.2em;
	background-color: #ecf5b6;
}




