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

/* Groupe barre CV */
#sous_nav_menu {
	z-index: 290;
	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);
}


/* ------------ Introduction ------------- */

.section-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
	margin-top: -8rem;
	padding: 2rem;
}

.profile-image {
	width: 250px;
	height: 250px;
	object-fit: cover;
	flex-shrink: 0;
}

.profile-info {
	flex: 1;
	max-width: 600px;
}

.profile-info h3 {
	font-family: cursive;
	font-size: 2rem;
	margin-bottom: 1rem;
	color: red;
}

.profile-info .description {
	font-family: 'Andale Mono', monospace;
	font-size: 0.9em;
	line-height: 1.5;
	color: white;
	text-align: justify;
}


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

/* Section grille formations */
.section-formations {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
}

/* Grille de cartes formations */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

/* Catres des formations */
.card {
	background-color: rgba(28, 28, 30, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	text-decoration: none;
	color: inherit;
	display: block;
	cursor: pointer;
}

.card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 0, 0, 0.5);
	box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

/* Logo catres formations */
.card-logo {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.card:hover .card-logo {
	transform: scale(1.1);
	background: rgba(255, 0, 0, 0.1);
	border-color: rgba(255, 0, 0, 0.3);
}

.card-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
}

/* Textes catres formations */
.card h3 {
    font-family: cursive;
    font-size: 1.5em;
    color: #ff0000;
    margin: 0 0 10px 0;
    text-align: center;
}

.institution {
    font-family: 'Andale Mono', monospace;
    font-size: 1em;
    color: #ffffff;
    margin: 5px 0;
    text-align: center;
    opacity: 0.9;
}

.date {
    font-family: 'Andale Mono', monospace;
    font-size: 0.9em;
    color: #ff0000;
    margin: 5px 0 15px 0;
    text-align: center;
    opacity: 0.8;
}

.description-small {
    font-family: 'Andale Mono', monospace;
    font-size: 0.9em;
    color: #cccccc;
    line-height: 1.6;
    text-align: center;
    margin: 10px 0 0 0;
}

/* ---------- Version tablette ----------- */
@media (max-width: 1242px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----------- Version mobile ------------ */
@media (max-width: 665px) {
	.cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .card {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 1.3em;
    }
}


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

	/* --- Introduction --- */

	.section-info {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
		padding: 1.5rem;
		margin-top: -2rem;
	}

	.profile-image {
		width: 20rem;
		height: 20rem;
	}

	.profile-info h3 {
		font-size: 2rem;
	}
	.profile-info .description {
		font-size: 1em;
	}

	/* --- 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);
	}

}

