* {
	margin: 0;
	padding: 0;
}

body {
	background: #0f1923;
	display: flex;
	background-image: url("/img/neon.jpg")
}

/* [+] Nav bar par défaut */
#sse1 {
	background-color: #0f1923;
	height: 100px;
	padding: 15px;
	width: 100%;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-around;

}

#sses1 {
	margin: 5 auto;

}

#sses1 ul {
	position: relative;
	list-style-type: none;
	float: left;
	padding: 0;
	margin: 0;
	border-bottom: solid 1px #6C0000;

}

#sses1 li {
	float: left;
	padding: 0;
	margin: 0;


}

#sses1 li.highlight {
	background-color: #ff4655;
	top: 36px;
	height: 2px;
	border-bottom: solid 3px #ff4655;
	z-index: 2;
	position: absolute;
	overflow: hidden;
	margin-top: 3px;

}

#sses1 li a {
	height: 30px;
	padding-top: 8px;
	margin: 0 30px;
	color: #fff;
	font: normal 12px arial;
	text-align: center;
	text-decoration: none;
	float: left;
	display: block;
	position: relative;
	z-index: 2;
	font-size: 30px;
	font-family: 'VALORANT', sans-serif;

}


#heading {
	width: 100%;
	max-width: 400px;
	/* Largeur maximale de l'image */
	height: auto;
	margin-right: 50px;
}

#logo {
	width: 100%;
	max-width: 200px;
	/* Largeur maximale de l'image */
	height: auto;
}


#menu_de_base {
	border-radius: 10px;
	padding: 20px;
	/* Un peu plus de padding pour espacer les éléments */
	width: 100%;
	background: var(--element-bg);
	box-shadow: var(--element-shadow);
	position: fixed;
	/* Fixe le menu en haut */
	top: 0;
	/* Place le menu en haut */
	left: 0;
	/* Aligne le menu à gauche */
	z-index: 1000;
	/* Assure que le menu reste au-dessus des autres éléments */
}

/* [-] Nav bar par défaut */

body {
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	background: #0f1923;
	color: #fff;
	margin: 0 auto;
	transition: all 200ms ease-in;
}

:root {
	--body-bg: #292929;
	--body-text: #fff;
	--agent-shadow: drop-shadow(8px 0px 10px #000000);
	--element-bg: linear-gradient(180deg,
			rgba(103, 108, 111, 0.25) 0%,
			rgba(103, 108, 111, 0.215) 100%);
	--element-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
	--element-bg-hover: linear-gradient(180deg,
			rgba(103, 108, 111, 0.25) 0%,
			rgba(103, 108, 111, 0.4) 100%);
}



/* [+] Menu Burger pour les mobiles et écrans en dessous de 1200px 
  Source: https://codepen.io/erikterwan/pen/EVzeRP */
#menuToggle {
	display: block;
	position: relative;
	top: 50px;
	left: 50px;
	z-index: 1001;
	-webkit-user-select: none;
	user-select: none;
}

#menuToggle a {
	text-decoration: none;
	color: #232323;
	transition: color 0.3s ease;
}

#menuToggle a:hover {
	color: tomato;
}

#menuToggle input {
	display: block;
	width: 40px;
	height: 32px;
	position: absolute;
	top: -7px;
	left: -5px;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
	-webkit-touch-callout: none;
}

#menuToggle span {
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;
	background: #ff4655;
	border-radius: 3px;
	z-index: 1;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		opacity 0.55s ease;
}

#menuToggle span:first-child {
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
	opacity: 1;
	transform: rotate(45deg) translate(-2px, -1px);
	background: #232323;
}

#menuToggle input:checked~span:nth-last-child(3) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
	transform: rotate(-45deg) translate(0, -1px);
}

#menu {
	position: absolute;
	width: 300px;
	margin: -100px 0 0 -50px;
	padding: 50px;
	padding-top: 125px;

	background: #ff4655;
	list-style-type: none;
	-webkit-font-smoothing: antialiased;

	transform-origin: 0% 0%;
	transform: translate(-100%, 0);

	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
	padding: 10px 0;
	font-size: 22px;
	font-family: 'VALORANT', sans-serif;
}

#menuToggle input:checked~ul {
	transform: none;
}

#menu_mobile {
	display: none;
}

@media (max-width: 1200px) {
	#menu_mobile {
		display: block;
	}

	#heading_mobile {
		margin-left: 40%;
	}

	#menu_de_base {
		display: none;
	}
}
/* [-] Menu Burger */

#views {
	margin-top: 200px;
    min-height: 100px; /* Ajoutez une hauteur minimale */
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

footer {
    position: fixed;
    padding-left: 15px;
    padding-right: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#img_accueil{

    width: 100%;
    position: relative;
}


/* Styles pour les cartes d'agents */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin: 8px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    max-width: 100px;
    border-radius: 50%;
}

/* Styles pour la fenêtre modale */
/* Styles pour la fenêtre modale */
.selectedCard {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    background: #8a8686;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 80%;
    max-height: 90%;
    position: relative;
    overflow-y: auto; /* Permet de faire défiler le contenu si nécessaire */
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.modal-content h2,
.modal-content h3 {
    text-align: center;
}

.modal-content .agent-portrait {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px; /* Espacement entre le titre et l'image */
}

.abilities {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px; /* Espacement entre les abilities */
}

@media (min-width: 768px) {
    .abilities {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
    }
}

.ability {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease-in-out;
}

.ability:hover {
    transform: translateY(-5px); /* Effet de levitation au survol */
}

.ability img {
    width: 80px; /* Taille des images d'ability */
    height: 80px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.descPetite {
    font-size: 12px;
    text-align: justify; /* Justification du texte */
}


#selectedMap{

    display: flex;
    justify-content: center;
}

#map {
    /*margin-top: 40px;
    height: 500px;
    width: 100%;
    background-color: #e9ecef; */
	height: 500px;
	width: 1000px;
	align-items: center;
}