/* ---------- Téléchargement CV ---------- */

/* Groupe barre CV */
.sous_nav_grp {
	z-index: 300;
	margin: -13vw auto 15vw auto;
}

/* Barre CV */
.sous_nav {
	padding: 0.5em;
}

.tire_sous_nav {
	float: left;
	padding: 0.5em 0 0.5em 1em;
	color: white;
}

.lien_sous_nav {
	float: left;
	background-color: rgba(174, 29, 15, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	padding: 0.5em 1em;
	border-radius: 10em;
	color: white;
	text-decoration: none;
	margin-left: 0.7em;
	box-shadow: 
		inset 0.1px 0.1px 2px rgba(255, 255, 255, 0.5), /* bevel */
		0 4px 6px rgba(0, 0, 0, 0.5); /* shadow */
	transition: transform 0.3s, background-color 0.3s;
}

.lien_sous_nav:hover {
	background-color: rgba(74, 9, 5, 0.7);
	transform: scale(1.03, 1.07);
}


/* --------- Textes introduction --------- */

/* Biographie */
.bio {
	font-family: Andale Mono, Arial;
	text-align: center;
	margin-left: 10vw;
	margin-right: 10vw;
	line-height: 30px;
	color: white;
}


/* ----------- Mes formations ------------ */

/* Paragraphe mes formations */
.formations {
	font-family: Andale Mono, Arial;
	text-align: center;
	margin-left: 10vw;
	margin-right: 10vw;
	line-height: 30px;
	color: white;
}

/* Liens mes formations */
.formations a {
	text-decoration: none;
	color: white;
}

/* Liens mes formations - pointeur dessus */
.formations a:hover {
	color: gray;
}


/* ---------- Timeline Parcours ---------- */

/* Frise chronologique */
.timeline {
	position: relative;
	padding: 20px 0;
	margin: 20px 0;
}

/* Ligne verticale frise chronologique */
.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	width: 2px;
	height: 100%;
	background: red;
	transform: translateX(-50%);
}

/* Évènements gauche (paires) */
.event {
	position: relative;
	margin: 20px 0;
	padding-left: 5vw;
	font-size: 1.5vw;
	text-align: left;
}

/* Évènements droit (impaires) */
.event:nth-child(odd) {
	padding-left: 55vw;
	padding-right: 5vw;
	text-align: right;
}

/* Dates évènements */
.event h3 {
	color: red;
}

/* Textes évènements */
.event p {
	font-family: Andale Mono, Arial;
	font-size: 0.9em;
}

/* Textes évènements */
.tl_type {
	color: white;
}

/* Textes évènements */
.tl_location {
	color: silver;
}

/* Textes évènements */
.tl_skills {
	color: gray;
}

/* Point frise chronologique */
.event .dot {
	position: absolute;
	left: 50%;
	top: 10px;
	width: 12px;
	height: 12px;
	background: red;
	border-radius: 50%;
	transform: translate(-50%,-50%);
}


/* ---------- Section logiciels ---------- */

/* Texte catégorie de logiciel */
.categorie_app {
	font-family: Andale Mono, Arial;
	text-align: center;
}

/* Texte catégorie de logiciel - lien */
.categorie_app a {
	color: red;
	text-decoration: none;
	transition: color 0.3s;
}

/* Texte catégorie de logiciel - pointeur dessus */
.categorie_app a:hover {
	color: grey;
}

/* Groupe logo logiciel */
.groupe_app {
	width: 100vw;
	margin-bottom: 2vw;
	text-align: center;
	display: inline-block;
}

/* Groupe logo logiciel */
.groupe_lien_app {
	display: inline-block;
}

/* Groupe logo logiciel - lien */
.groupe_logo a {
	text-decoration: none;
}

/* Logiciel */
.logo_app {
	float: left;
	width: 10vw;
	height: 11vw;
	margin-left: 1vw;
	text-decoration: none;
	transition: transform 0.5s;
}

/* Logo logiciel */
.logo_app img {
	width: 7.3vw;
	scale: 90%;
}

/* Nom logiciel */
.logo_app p {
	font-family: Andale Mono, Arial;
	color: white;
	text-align: center;
	font-size: 1.3vw;
	margin-top: -0.4vw;
}

/* Logo logiciel - pointeur dessus */
.groupe_lien_app a:hover {
	transform: scale(1.15);
}


/* ----------- Version mobile ------------ */
@media only screen and (max-width: 738px) {
	/* Sous-titres - categories */
	h2 {
		font-size: 30px;
	}

	/* Groupe barre CV */
	.sous_nav_grp {
		margin-top: -5vw;
		padding: 1vw;
	}

	/* Barre CV */
	.sous_nav {
		font-size: 3vw;
		padding: 2vw;
	}

	.lien_sous_nav:hover {
		background-color: rgba(174, 29, 15, 0.7);
		transform: none;
	}

	.bio {
		text-align: justify;
		margin-left: 5vw;
		margin-right: 5vw;
	}

	/* --- Timeline Parcours --- */

	/* Ligne verticale frise chronologique */
	.timeline::before {
		left: 20px;
	}

	/* Évènements paires (À gauche sur ordinateur) */
	.event {
		padding-left: 40px;
		padding-right: 20px;
		font-size: 1em;
	}

	/* Évènements impaires (À droite sur ordinateur) */
	.event:nth-child(odd) {
		text-align: left;
		padding-left: 40px;
	}

	/* Point frise chronologique */
	.event .dot {
		left: 20px;
	}

	/* --- Section logiciels --- */

	/* Texte catégorie de logiciel - pointeur dessus */
	.categorie_app a:hover {
		color: red;
	}

	/* Groupe logo logiciel */
	.groupe_app {
		overflow-x: hidden;
	}

	/* Groupe logo logiciel */
	.groupe_lien_app {
		max-width: 85vw;
	}

	/* Logiciel */
	.logo_app {
		width: 20vw;
		height: 29vw;
		margin-left: 1vw;
	}

	/* Logo logiciel */
	.logo_app img {
		width: 20vw;
	}

	/* Nom logiciel */
	.logo_app p {
		font-size: 2.9vw;
	}

	/* Logo logiciel - pointeur dessus */
	.logo_app:hover {
		transform: scale(1);
	}

}

