/*!
Theme Name: Personnalisation Qokoon Générique
Description: Thème générique développé par l'agence Qokoon
Author : Agence Qokoon
Author URI : www.qokoon-web.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: qokoon-generic

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------*/
img {
    max-width: 100%;
    height: auto;
}


/****** GALERIE ********/
.acf-gallery {
    list-style-type: none; /* Retirer le style de liste */
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Autoriser le retour à la ligne */
  }
  
  .acf-gallery li {
    flex: 31.333%; /* 3 images par ligne, mettez 25% pour en avoir 4 */
    padding: 1%;
  }

  .lightbox {
    display: none; /* cachée par défaut */
    position: fixed; /* fixée et qui prend tout l'écran */
    z-index: 1000; /* Pour être sûr de passer au dessus du reste */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,.7); /* noire avec transparence */
    background-size: contain; /* l'image occupe tout l'espace disponible */
    background-repeat: no-repeat; 
    background-position: center;
    cursor: pointer; /* Le curseur a la même forme que sur un lien */
  }