/**************************************************************
 Cassiopée Formation (www.lesclesduchangement.com)
 Copyright 2025-2025 Develop'it
 
 Version : 1.0.0
 Date    : 13/05/2025
 Fichier : css/Entete.css
**************************************************************/

/*************************** Entete ***************************/
#Entete {
	display:block;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0;
	z-index: 2001;
	height:120px;
	pointer-events: none;
	background-color:rgba( 229,   0 ,125, 1.0);
	backdrop-filter: blur(3px);
	transition: all 0.3s ease;
}
#Entete .Logo {
	pointer-events: auto;
	width: 120px;
	height: 120px;
	margin-left: 30px;
	transition: all 0.3s ease;
}
#Entete.EnHaut {
	height:70px;
	background-color:rgba( 229,   0 ,125, 0.8);
}
#Entete.EnHaut .Logo {
	width: 65px;
	height: 65px;
}

@media only screen and (min-width:1024px) { /* large */
}

@media only screen and (max-width:1023px) { /* medium */
	#Entete {
		position: fixed;
		height: 100px;
	}
	#Entete.EnHaut .Logo {
		margin-top: 5px;
		margin-left: 5px;
	}
	#Entete .Logo {
		width: 80px;
		height: 80px;
		margin-top: 10px;
		margin-left: 10px;
	}
}

@media only screen and (max-width:639px) { /* small */
	#Entete, #Entete.EnHaut {
		position: fixed;
		height: 60px;
	}
	#Entete.EnHaut .Logo,
	#Entete .Logo {
		width: 50px;
		height: 50px;
		margin-top: 5px;
		margin-left: 5px;
	}
}
