/* a propos Page Styles */
.about {
  padding: var(--spacing-xl) 0;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content h1 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.about-content > p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

/* Video Container */
.video-container {
  margin: var(--spacing-xl) 0;
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-container iframe {
  display: block;
  border-radius: var(--border-radius-md);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.about-item {
  background-color: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.about-item h2 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.about-item p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.about-item ul {
  list-style: disc;
  margin-left: var(--spacing-lg);
  color: var(--color-text-light);
}

.about-item ul li {
  margin-bottom: var(--spacing-xs);
}

/* Gallery Section */
.gallery-section {
  margin-top: var(--spacing-xl);
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content > p {
    font-size: 1.1rem;
  }

  .video-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

 /* Modal élégante version améliorée (identique à produit) */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      inset: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(6px);
      justify-content: center;
      align-items: center;
      padding: 20px;
      animation: fadeIn 0.25s ease-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-content {
      max-height: 70vh;
      max-width: 80vw;
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
      animation: zoomIn 0.25s ease-out;
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.85);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .close {
      position: fixed;
      top: 25px;
      right: 35px;
      font-size: 45px;
      font-weight: bold;
      color: #ffffff;
      cursor: pointer;
      user-select: none;
      transition: 0.2s;
      z-index: 10000;
      text-shadow: 0 0 10px rgba(0,0,0,0.4);
    }

    .close:hover {
      color: #d2d2d2;
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .modal-content {
        width: 90vw;
        max-height: 70vh;
      }

      .close {
        top: 10px;
        right: 15px;
        font-size: 38px;
      }
    }

    /* Images de la galerie cliquables */
    .gallery-img {
      cursor: pointer;
      transition: transform .3s ease, box-shadow .3s ease;
      border-radius: 6px;
    }

    .gallery-img:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    /* Bouton "Contactez-moi" */
    .contact-button {
      display: inline-block;
      padding: 8px 16px;
      background-color: #000000; /* Marron artistique */
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-family: 'Roboto', sans-serif;
      font-weight: 500;
      transition: background-color 0.3s ease;
      margin-top: 10px;
    }

    .contact-button:hover {
      background-color: #3c3c3c;
      color: #ffffff;
    }

    /* Style pour la grille de la galerie */
    .gallery-item {
      margin-bottom: 30px;
      padding: 15px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
    }