@keyframes rotation {
	from { transform: rotateX(0deg);}
	to { transform: rotateX(360deg);}
}

@keyframes bouge {
	0% {
		margin-left: 0px;
	}
	50% { 
		margin-left: 285px;
	}
	100% {
		margin-left: 0px;
	}
}

@keyframes brain {
	0% {
		filter: blur(0);
	}
	50% { 
		filter: blur(5px);
	}
	100% {
		filter: blur(0);
	}
}

body{
	background-color: #1a1a1a;
	font-family: Quicksand;
}

#corps{
	position: absolute;
	display: flex;
	flex-direction: column;
	width: 96%;
	height: 96%;
	top: 2%;
	left: 2%;
	overflow: hidden;
}

header{
	width: 100%;
	height: 50px;
	margin-top: 10px;
	margin-bottom: 20px;
	position: relative;
}

nav{
	display: flex;
	flex-grow: 2;
	border-radius: 25px;
	justify-content: end;
	gap: 25px;
}
#contact{
	width: 315px;
	height: 30px;
	display: flex;
	gap: 5px;
}
#contact div{
	color: white;
	height: 30px;
	width: 30px;
	font-size: 1.5em;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0px 0px 3px black;
}

#contactAnim{
	background-color: rgba(255, 255, 255, 0.2);
	position: absolute;
	width: 315px;
	height: 1px;
	right: 0;
	bottom: 0;
}
#contactAnim div{
	background-color: white;
	width: 30px;
	height: 1px;
	animation: bouge 5s alternate infinite;
}

#sociaux{
	width: 315px;
	height: 40px;
	position: absolute;
	display: flex;
	gap: 10px;
	right: 0;
	bottom: -50px;
	justify-content: flex-end;
}
#sociaux a{
	text-decoration: none;
}
#sociaux div{
	background-color: black;
	color: grey;
	font-size: 1.4em;
	text-align: center;
	width: 30px;
	height: 30px;
	box-shadow: 0px 0px 3px black;
	border-radius: 10px;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#sociaux div:hover{
	margin-top: 5px;
}

main{
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	flex-grow: 2;
}

#presentation{
	width: 400px;
	height: 450px;
	margin: auto;
}
#logo{
	background-color: #1a1a1a;
	width: 200px;
	height: 200px;
	margin: auto;
}
#logo img{
	width: 200px;
	opacity: 0.9;
	filter: drop-shadow(0 0 0.3rem grey);
}
#titre{
	background-image: linear-gradient(180deg, white, #1a1a1a);
	font-size: 2.5em;
	text-align: center;
	letter-spacing: 5px;
	margin-top: 0px;
	background-clip: text;
	color: rgba(0, 0, 0, 0);
	text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.5);
	margin-bottom: 50px;
}

.equalizer {
	position: relative;
	width: 100px;
	height: 100px;
	margin: auto;
}

.bar {
	background-image: linear-gradient(180deg, white, #1a1a1a);
	position: absolute;
	background-color: white;
	width: 1px; /* Barres plus fines */
	bottom: 50%;
	left: 50%;
	transform-origin: bottom center;
	border-radius: 1px;
	box-shadow: 0px 0px 3px rgba(255, 255, 255, 0.5);
	transition: height 0.3s ease-out; /* Animation plus lente */
}

#showButton{
	background-image: radial-gradient(#1a1a1a 50%, transparent);
	position: absolute;
	height: 80px;
	width: 80px;
	top: 10px;
	left: 10px;
	box-shadow: 0px 0px 5px #1a1a1a;
	border-radius: 50%;
	z-index: 2;
}
#showButton img{
	width: 70px;
	margin-top: 5px;
	margin-left: 5px;
	opacity: 0.7;
	transition: all 0.5s ease;
}
#showButton img:hover{
	width: 80px;
	margin-top: 0px;
	margin-left: 0px;
	opacity: 1;
	filter: drop-shadow(0 0 0.5rem grey);
}

footer{
	width: 100%;
	height: 50px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#localisation{
	height: 40px;
	width: 250px;
	display: flex;
}
#localisation img{
	width: 30px;
	align-self: center;
}
#localisation span{
	align-self: center;
	font-size: 20px;
	background-image: linear-gradient(180deg, white, #1a1a1a);
	letter-spacing: 5px;
	background-clip: text;
	color: rgba(0, 0, 0, 0);
	text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.5);
}

#boutonMenu{
	width: 40px;
	height: 40px;
}
#boutonMenu img{
	width: 40px;
	margin-top: 5px;
}

#menu{
	background-color: #111111;
	position: fixed;
	display: flex;
	flex-direction: column;
	width: 96%;
	height: 96%;
	top: -20%;
	left: 20%;
	border-radius: 20px;
	box-shadow: 0px 0px 5px black;
	z-index: 3;
	justify-content: center;
	flex-direction: row;
	opacity: 0;
	visibility: hidden;
	filter: blur(100px);
	transition: all 0.5s ease;
}
#titreMenu{
	background-color: #e0e0e0;
	width: 80%;
	height: 200px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	box-shadow: 0px 1px 3px rgba(255, 255, 255, 0.2);
}
#close{
	position: absolute;
	width: 50px;
	bottom: 10px;
	right: 10px;
}