
header {
  background-color: #ffffff;
  display: flex;
  justify-content: space;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
  position: relative;
  z-index: 2000;
}

header p {
  margin: 0px;
}

header img {
  width: 132px;
  height: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.menu {
margin-left: 157px;
font-size: 16px;
font-weight: 500;
font-family: Roboto, sans-serif;
color:rgb(0, 42, 127);
display: flex;
align-items: center;
gap: 14px;
}

.menu img {
display: block;
width: 16px;
height: 14px;
}

/* CSS du menu déroulant */
/* MENU DEROUlANT HAUT */
.menu-lateral {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  padding: 30px 20px;
  transition: top 0.35s ease;
  z-index: 5; /* en dessous du header quand fermé */
}

.menu-lateral.active {
  top: 0;
  z-index: 1000; /* au-dessus quand ouvert */
}

/* bouton fermeture */
.menu-close {
  font-size: 30px;
  cursor: pointer;
  margin-left: 40px;
}

/* liste */
.menu-lateral ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-lateral li {
  padding: 14px 0;
  font-size: 16px;
  color: rgb(0, 42, 127);
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

/* enjoy riding */
.menu-lateral li.enjoy {
  border-bottom: none;
  padding: 25px 0;
}

.menu-lateral li.enjoy img {
  width: 140px;
  display: block;
}

/* demande d'essai */
.menu-lateral li.essai {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.menu-lateral li.essai img {
  width: 18px;
}

/* CONTENEUR GLOBAL DU MENU */
.menu-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 40px;
}

/* COLONNE GAUCHE */
.menu-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-links li {
  padding: 16px 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: rgb(0, 42, 127);
  border-bottom: none;
  cursor: pointer;
}

/* enjoy riding */
.menu-links li.enjoy {
  border-bottom: none;
  padding: 30px 0;
}

.menu-links li.enjoy img {
  width: 120px;
}

/* demande d’essai */
.menu-links li.essai {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-family: 'Impact', sans-serif;
}

.menu-links li.essai img {
  width: 18px;
}

.menu-links li.essai a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgb(0, 42, 127);
}

/* COLONNE DROITE (IMAGES) */
/* COLONNE DROITE (IMAGES IMBRIQUÉES) */
.menu-visuels {
  position: relative;
  width: 520px;
  height: 520px;
}

/* image principale (la plus grande) */
/* COLONNE DROITE (IMAGES IMBRIQUÉES) */
.menu-visuels {
  display: grid;
  grid-template-columns: 360px 260px;
  grid-template-rows: 200px 200px;
  gap: 10px;
}

/* grande image à gauche */
.menu-visuels img:nth-child(1) {
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* images droite */
.menu-visuels img:nth-child(2),
.menu-visuels img:nth-child(3) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #F7F7F7;
}

/* ------------------
   HERO (IMAGE + TEXTE)
------------------ */
.hero {
  background-image: url("image/essai_bckgrd.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px 40px;
  text-align: center;
  color: #000;
}

.hero img {
  display: block;
  margin: 0px auto;
  width: 45px;
  height: 45px;
}

.hero h1 {
  color: rgb(0, 42, 127);
  font-family:'Impact', sans-serif;
  font-size: 38px;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 36px;
  margin: 10px 0;
  font-family:'Montserrat', sans-serif;
}

.etape {
  font-family:'Montserrat', sans-serif;
  color: rgb(0, 42, 127);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 15px 0 0;
}

.etape .current {
  font-family:'Montserrat', sans-serif;
  color: rgb(0, 42, 127);
  font-size: 36px;
  border: 1px solid rgb(0, 42, 127);
  padding: 3px 12px;
}

.hero h3 {
  color: rgb(0, 42, 127);
  font-size: 16px;
  margin: 0 0 15px;
}

/* ------------------
   LOCALISATION
------------------ */
.localisation {
  background-color: #0D3EBE;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
}

.localisation input::placeholder {
  font-family: 'Montserrat', sans-serif;
  font-weight: lighter;
  font-size: 16px;
}

.localisation p {
  margin-bottom: 15px;
  font-weight: bold;
}

.localisation input {
  padding: 12px;
  width: 250px;
  border: none;
  border-radius: 4px;
}

.localisation-box {
  background-color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 15px;
  width: 320px;             
  margin: 0 auto;
  border-radius: 4px;
  border: 3px solid rgb(221, 221, 221);
}

.localisation-box img {
  width: 22px;
  height: auto;
}


/* ------------------
   PERMIS
------------------ */
.permis {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  color: rgb(0, 42, 127);
  padding: 10px 20px 60px;
  background-color: #ffffff;
}

.boutons-permis {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.boutons-permis button {
  background-color: rgb(0, 42, 127);
  color: white;
  width: 60px;
  height: 60px;
  font-weight: bold;
  border: 1px solid #0A2A7F;
  margin: 1.2em;
  padding: 12px;
  font-size: 1.2em;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  background-color: #ffffff; 
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.footertop {
  background-color: #F7F7F7;
  display: flex;
  width: 80%;
  margin-top: 40px;
  flex-direction: column;
}

.followus {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 38px 10px 10px 10px;
}

.followus p {
  margin: 0;
}

.resociaux {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: 10px 10px 20px 10px;
}

.resociaux img {
  width: 30px;
  height: 30px;
  padding: 10px;
}

.footerbottop {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}

.footerbotbottom {
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 10px;
}

.footerbotbottom p {
  font-size: 12px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

