.photo-intro {
    text-align: center;
    padding: 3rem 1rem;
  }
  
  .photo-intro h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .photo-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    text-align: justify;
  }
  
  /* Galerie */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  
  /* Lightbox */
  .image-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 2rem;
  }
  
  .image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .image-modal .close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }


  .photo-albums {
    text-align: center;
    margin-bottom: 5%;
  }
  
  .photo-albums h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  
  .album-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .album-buttons .btn-dark {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    background-color: #111;
    color: #fff;
    border: 2px solid #111;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .album-buttons .btn-dark:hover {
    background-color: #fff;
    color: #111;
  }



  .photo-albums {
    text-align: center;
    margin-top: 4rem;
  }
  
  .photo-albums h3 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }
  
  .album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .album-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1; /* carré */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-decoration: none;
  }
  
  .album-card:hover {
    transform: scale(1.05);
  }
  
  .album-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    padding: 1rem 0;
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  
  
  
  .album-overlay span {
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  
  