
    *,
    *::after,
    *::before {
      box-sizing: border-box;
    }

    body {
      font-family: 'lato', sans-serif;
      margin: 0;
      color: black;
      background-color: white;
      font-weight: 600;
      width: 100%;
      overflow-x: hidden;
      overflow-y: hidden;
      height: 100vh;
      background: black;
    }

#ouverture {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: black;
  z-index: 1002;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: height 1.5s ease, background 1.5s ease;
}


    .container {
      width: 100vw;
      height: 100vh;
      height: -webkit-fill-available;
      position: absolute;
      left: 0;
      top: 0;
      user-select: none;
      overflow: hidden;
    }

    .center {
      height: 100vh;
      position: absolute;
      left: 50%;
      top: 28%;
      transform: translate(-50%);
      user-select: none;
    }

    .items {
      transform-origin: center 200vh;
      transform: rotate(0);
      user-select: none;
      display: flex;
    }
.alinea {
    padding-left: 20px;
    font-size: 16px !important;
}
    .item {
      position: absolute;
      user-select: none;
      cursor: pointer;
      transform: translateX(-50%);
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card {
      display: block;
      width: 430px;
      height: 610px;
      color: #fff;
      user-select: none;
      border-radius: 17px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      border: 10px solid #b1bfd5;
    }

    .image {
      height: 100%;
      width: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      filter: grayscale(100);
      transition: filter 0.3s ease;
    }

    .image:hover {
      filter: grayscale(0);
    }

.sous-titre {
  position: absolute;
  bottom: 0;
  background-color: #eee;
  width: 100%;
  color: black
}
.sous-titre h2, .sous-titre p {
  font-weight: normal;
  padding: 0 10px;
}
.sous-titre h2 {
  font-size: 16px;
  padding-top: 10px;
  
  color: black;
}
.sous-titre p {
  font-size: 16px;
  padding-bottom: 10px;
  
}
.modal-content-4 p {color: white;}
.sous-grid {
            display: grid;
            /*! grid-template-columns: repeat1fr; */ /* 2 colonnes égales */
            gap: 20px;
            width: 100%;
        }
    .card-sous-grid img {
    position: relative;
    padding: 20px 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2em;
}

/* Styles pour la modale VIDEO */
    .video-button {
      background: none;
      border: none;
      cursor: pointer;
      text-decoration: underline;
      color: blue;
      font: inherit;
      padding: 0;
      margin-right: 20px;
    }
    
    .video-button:hover {
      color: darkblue;
    }

    /* Styles pour la modale VIDEO */
    #section-video {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(23, 33, 42, 0.95);
      z-index: 9999;
      cursor: pointer;
    }

    #video-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 640px;
      background: #000;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    #youtube-video {
      position: relative;
      padding-bottom: 56.25%; /* Ratio 16:9 */
      height: 0;
      overflow: hidden;
    }

    #youtube-video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    /* Bouton fermeture */
    .close-modal {
      position: absolute;
      top: -40px;
      right: 0;
      color: white;
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
      background: rgba(0,0,0,0.5);
      width: 35px;
      height: 35px;
      text-align: center;
      line-height: 35px;
      border-radius: 50%;
    }

    .close-modal:hover {
      background: rgba(0,0,0,0.8);
    }


    @media screen and (max-height: 1000px) {
      .card {
        width: 350px;
        height: 497px;
        
      }
    }

    @media screen and (max-height: 800px) {
      .card {
        width: 300px;
        height: 400px;
      }
    }

    a {
      color: black;
      opacity: 80;
      text-decoration: underline;
    }

    /* Modal Styles  */
    .modal-overlay {
      font-family: 'lato', sans-serif;
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      overflow-y: auto;
    }

    .modal-container {
      position: relative;
      width: 90%;
      max-width: 1200px;
      margin: 40px auto;
      animation: slideIn 0.4s ease;
      overflow: hidden;
      pointer-events: none;
    }
.modal-container-video {
      position: relative;
      width: 90%;
      max-width: 1200px;
      margin: 40px auto;
      animation: slideIn 0.4s ease;
      overflow: hidden;
    }

    @keyframes slideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 0px;
      right: 0px;
      color: #b81c1c;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
      z-index: 1001;
      transition: all 0.3s ease;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-close:hover {
      transform: rotate(90deg);
    }

 
    /* Layouts personnalisés */
    .layout-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 40px;
      /*pointer-events: none;*/
    }
.layout-grid-1 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      padding: 40px;
  color: white
    }
.layout-grid-video {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 40px;
      /*pointer-events: none;*/
    }

    .layout-single {
      padding: 40px;
      text-align: center;
    }

    .layout-sidebar {
      display: grid;
      grid-template-columns: 1fr 0.5fr;
      gap: 30px;
      padding: 40px;
    }
.video-container-spectacle iframe{
  width: 80vw;
  height: 60vh
}
    .gallery-mini {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-top: 20px;
    }

    .gallery-mini img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .gallery-mini img:hover {
      transform: scale(1.05);
    }

    .info-box {
      /*! background: rgba(255,255,255,0.2); */
      padding: 20px;
      border-radius: 15px;
      margin: 20px 0;
      color: white
    }
.marge {
  padding-top: 20px;
}
.info-box p, .en-cadre p {
  font-weight: normal;
} {
  font-weight: normal;
}

    .quote {
      font-style: italic;
      font-size: 1.2em;
      border-left: 4px solid;
      padding-left: 20px;
      margin: 20px 0;
    }

    .stats {
      display: flex;
      justify-content: space-around;
      margin: 30px 0;
      text-align: center;
    }

    .stat {
      font-size: 2em;
      font-weight: bold;
    }

    .stat-label {
      font-size: 0.8em;
      opacity: 0.9;
    }

    @media (max-width: 768px) {
      #ouverture img {
width: 90%
}
      
      .layout-grid, .layout-sidebar {
        grid-template-columns: 1fr;
        padding: 20px;
      }
      
      .modal-container {
        width: 95%;
        margin: 20px auto;
        pointer-events: none;
      }
      .layout-grid-1 {
      grid-template-columns: 1fr;
     
    }
    }

    /* Scroll hint */
    .scroll-hint {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 12px 24px;
      border-radius: 30px;
      font-size: 14px;
      z-index: 100;
      /*pointer-events: none;*/
      animation: fadeOut 3s ease-out forwards;
      font-weight: normal;
      white-space: nowrap;
    }

    @keyframes fadeOut {
      0% { opacity: 1; transform: translateX(-50%) translateY(0); }
      70% { opacity: 1; transform: translateX(-50%) translateY(0); }
      100% { opacity: 0; transform: translateX(-50%) translateY(20px); visibility: hidden; }
    }

    /*button {
      background: rgba(255,255,255,0.3);
      border: 2px solid white;
      padding: 10px 20px;
      border-radius: 25px;
      color: inherit;
      cursor: pointer;
      font-size: 1em;
      transition: all 0.3s ease;
      margin-top: 20px;
    }*/

    button:hover {
     
      color: white;
      transform: translateY(-2px);
    }

    h1, h2, h3 {
      margin-top: 0;
      color: white;
    }
  