/* phone */

.ytm-wrap2 {
	position: relative;
	display: inline-block;
	margin: 0px;
	float: right;
}
.ytm-btn2 {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.ytm-link2 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
}
.ytm-dropdown2 {
	position: absolute;
	top: 0;
	right: 45px; /* 40px bouton + 5px espace */
	background-color: #035CFE;
	color: white;
	padding: 10px;
	display: none;
	border-radius: 5px;
	white-space: nowrap;
	transition: opacity 0.3s ease;
	margin: 0 5px 0 0;
}

/* facebook */

.ytm-wrap6 {
	position: relative;
	display: inline-block;
	float: right;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.ytm-btn6 {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.ytm-link6 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
}
.ytm-dropdown6 {
	position: absolute;
	top: 0;
	right: 45px;
	background-color: #035CFE;
	color: white;
	padding: 10px;
	display: none;
	border-radius: 5px;
	white-space: nowrap;
	transition: opacity 0.3s ease;
	margin: 0 5px 0 0;
}

/* telegram */

.ytm-wrap4 {
	position: relative;
	display: inline-block;
	float: right;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.ytm-btn4 {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.ytm-link4 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
}
.ytm-dropdown4 {
	position: absolute;
	top: 0;
	right: 45px;
	background-color: #24A0DC;
	color: white;
	padding: 10px;
	display: none;
	border-radius: 5px;
	white-space: nowrap;
	transition: opacity 0.3s ease;
	margin: 0 5px 0 0;
}

/* whatsapp */

.ytm-wrap5 {
	position: relative;
	display: inline-block;
	float: right;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.ytm-btn5 {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.ytm-link5 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
}
.ytm-dropdown5 {
	position: absolute;
	top: 0;
	right: 45px;
	background-color: #25A216;
	color: white;
	padding: 10px;
	display: none;
	border-radius: 5px;
	white-space: nowrap;
	transition: opacity 0.3s ease;
	margin: 0 5px 0 0;
}

/* youtube */

.ytm-wrap3 {
	position: relative;
	display: inline-block;
	float: right;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.ytm-btn3 {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.ytm-link3 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
}
.ytm-dropdown3 {
	position: absolute;
	top: 0;
	right: 45px;
	background-color: #E3001A;
	color: white;
	padding: 10px;
	display: none;
	border-radius: 5px;
	white-space: nowrap;
	transition: opacity 0.3s ease;
	margin: 0 5px 0 0;
}

/* map */

/* Conteneur bouton + carte */
.mapUnique-wrapper {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	position: relative; /* Nécessaire pour la position absolue de la carte */
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: right;
}

/* Bouton */

#mapUnique-toggle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

#mapUnique-toggle img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Carte cachée par défaut */
.mapUnique-box {
  width: 400px;
  height: 300px;
  border: 2px solid #333;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  background: #fff;
  overflow: hidden;
  display: none;

  position: absolute; /* Ne pousse pas le contenu */
  right: 50px; /* Distance par rapport au bouton */
  bottom: 0; /* Aligne le bas avec le bouton */
  z-index: 999;
}

.mapUnique-box.active {
  display: block;
}

.mapUnique-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* boutonmenu */

/* Bouton hamburger fixé à gauche, centré verticalement */
#menuToggleBtn {
	position: fixed;
	top: 20%;
	left: 0px;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	cursor: pointer;
	background: black;
	padding: 5px;
	z-index: 9999;
}

#menuToggleBtn .bar {
  width: 100%;
  height: 4px;
  background: white;
}

/* Menu vertical */
#sideMenu {
	position: fixed;
	top: 35%;
	left: -220px; /* caché au départ */
	transform: translateY(-50%);
	width: 200px;
	background: black;
	color: white;
	transition: left 0.3s ease;
	z-index: 9998;
	padding: 10px 0;
	border-radius: 5px;
}

#sideMenu.active {
  left: 10px; /* même position que le bouton */
}

#menuCloseBtn {
	font-size: 24px;
	font-weight: bold;
	color: white;
	cursor: pointer;
	text-align: right;
	padding: 0 10px;
}

#sideMenu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

#sideMenu ul li {
  padding: 8px 15px;
}

#sideMenu ul li a {
  color: white;
  text-decoration: none;
  display: block;
}

/* Sous-menu Traduction corrigé */
.submenu {
  position: relative; /* parent relatif */
}

.submenu .dropdown {
  display: none;
  position: absolute; /* dropdown absolu */
  top: 100%;          /* juste en dessous du lien parent */
  left: 0;
  width: 100%;
  background: black;
  padding-left: 15px;
  z-index: 9999;
}

.submenu.open .dropdown {
  display: block;
}
