.elementor-511 .elementor-element.elementor-element-593e0f0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-511 .elementor-element.elementor-element-593e0f0.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-511 .elementor-element.elementor-element-593e0f0{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-c367d14 *//* ========== GALERIE SARL DDP ========== */
#galerie-ddp {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.galerie-header {
  text-align: center;
  margin-bottom: 50px;
}

.galerie-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.galerie-header h2 span {
  color: #2bb3c0;
}

.galerie-header p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

/* Grille */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Items */
.galerie-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 15px rgba(43, 179, 192, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galerie-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(43, 179, 192, 0.3);
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.galerie-item:hover img {
  transform: scale(1.08);
}

/* Overlay */
.galerie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 179, 192, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galerie-item:hover .galerie-overlay {
  opacity: 1;
}

.galerie-icon {
  font-size: 2.5rem;
  color: #fff;
  font-style: normal;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.galerie-item:hover .galerie-icon {
  transform: scale(1);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 85%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(43, 179, 192, 0.4);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  color: #2bb3c0;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(43, 179, 192, 0.3);
  border: 2px solid rgba(43, 179, 192, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #2bb3c0;
  border-color: #2bb3c0;
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  background: rgba(43, 179, 192, 0.4);
  padding: 6px 18px;
  border-radius: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .galerie-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  #galerie-ddp {
    padding: 50px 15px;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .galerie-header h2 {
    font-size: 1.6rem;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 70vh;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}/* End custom CSS */