/***** Palette de couleur *****/
:root{
    --blanc: #FFFAF1;
    --rose: #ffdfd1;
    --saumon:  #FCB5AA;
    --vert_clair: #8BD59E;
    --vert-foncé: #095D40;
}

/***** police de caractères *****/
@font-face{
    font-family: laobridge;
    src: url(LaObrige.otf);
}
@font-face{
    font-family: amperzand;
    src: url(Amperzand.ttf) ;
}

/***** body *****/
body {
    background-color: var(--blanc);
}

/**** titres *****/
h1 {
    font-family: laobridge;
    color: var(--vert-foncé)
}
h2 {
    font-family: amperzand; 
    color: var(--vert_clair)
}
h3 {
    font-family: amperzand; 
    color: var(--saumon)
}
h4 {
    font-family: amperzand; 
    color: var(--rose)
}
#menuBtn {
    width: 40px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s;
  }

  #sideMenu {
    height: 80%;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    background-color: var(--vert-foncé);
    color: white;
    overflow: scroll;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 3;
  }

  #sideMenu a {
    padding: 10px 20px;
    display: block;
    color: white;
    text-decoration: none;
  }

  #sideMenu a:hover {
    background-color: #575757;
  }

  .closeBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
  }

  #overlay {
    position: fixed;
    top: 20;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0);
    z-index: 2;
  }
  
  video {
    width: 960px;
    height: 540px;
   
  }
  .container {
    display: flex;
    width: 100vw; /* La largeur de l'écran */
    height: 100vh; /* La hauteur de l'écran, optionnel si tu veux qu'elle prenne toute la hauteur */
  }
  
  .col1 {
    width: 70%;
    background-color: var(--blanc); /* Juste pour la visibilité */
  }
  
  .col2 {
    width: 30%;
    background-color: var(--blanc); /* Juste pour la visibilité */

  }
  
  img {
    width: 100%; /* L'image s'adapte à la largeur de la colonne */
    height: auto; /* Garde le ratio de l'image */
    display: block; /* Enlève l'espace sous l'image */
  }
  
  video {
    width: 90%; /* La vidéo s'adapte à la largeur de la colonne */
    height: auto; /* Garde le ratio de la vidéo */
    display: block; /* Enlève l'espace sous la vidéo */
  }
  .menu-item {
    position: relative;
    cursor: pointer;
  }
  
  .menu-title {
    padding: 10px 20px;
    color: white;
    font-weight: bold;
  }
  
  .submenu {
    display: none;
    background-color: #0c6c4a;
  }
  
  .submenu a {
    padding-left: 40px;
    font-size: 0.95em;
  }
  
  .menu-item.active .submenu {
    display: block;
  }
  
    .image-fond {
      width: 100%;
      display: block;
    }

.click-zone {
  position: absolute;
  top: 174px;
  left: 499px;
  width: 51px;
  height: 25px;
  cursor: pointer;
  z-index: 10;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  display: inline-block;
  font-size: 18px;
  transition: transform 0.4s ease;
}

.arrow.rotate {
  transform: rotate(180deg);
}

.popup-image {
  position: absolute;
  top: 199px;
  left: 499px;
  opacity: 0;
  transform: translateY(-20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 11;

  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  pointer-events: none;
}
 .petit{
  width: 200px;
 }
.grand {
  width: 800px;

}

.popup-image.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mainImage {
  width:100%;
}
.image-wrapper {
  position: relative;
  width: 100%; /* ou une largeur fixe si vous voulez un comportement stable */
}