@charset "UTF-8";
/* ---------------------------------------------------------
   FONT: KABEL — Webfont complète (WOFF2, WOFF, TTF, EOT)
   --------------------------------------------------------- */
@font-face {
  font-family: "Kabel";
  src: url("../fonts/Kabel_md.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/Kabel_md.eot?#iefix") format("embedded-opentype"), url("../fonts/Kabel_md.woff2") format("woff2"), url("../fonts/Kabel_md.woff") format("woff"), url("../fonts/Kabel_md.ttf") format("truetype");
  /* Legacy fallback */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
#imgGal {
  width: 98%;
  max-width: 1280px;
  /* padding: 2rem 1rem; */
  margin: 0 auto;
}
#imgGal .hidim {
  display: none;
}
#imgGal .container-gal {
  display: grid;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (max-width: 639px) {
  #imgGal .container-gal {
    width: 96%;
  }
}
@media (min-width: 640px) {
  #imgGal .container-gal {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  #imgGal .container-gal {
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1.5rem;
  }
}
@media (min-width: 1440px) {
  #imgGal .container-gal {
    grid-template-columns: 1fr 1.2fr 1fr 1.3fr;
    gap: 1.75rem;
  }
}
#imgGal .container-gal .gallery-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  #imgGal .container-gal .gallery-column {
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  #imgGal .container-gal .gallery-column {
    gap: 1.5rem;
  }
}
#imgGal .container-gal img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1), 0 0.15rem 0.3rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: block;
  background: #f0f0f0;
}
#imgGal .container-gal img.size-small {
  max-height: 250px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  #imgGal .container-gal img.size-small {
    max-height: 300px;
  }
}
#imgGal .container-gal img.size-large {
  grid-row: span 2;
}
@media (min-width: 640px) {
  #imgGal .container-gal img.size-large {
    max-height: 600px;
  }
}
#imgGal .container-gal img.size-xlarge {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 639px) {
  #imgGal .container-gal img.size-xlarge {
    grid-column: span 1;
    grid-row: span 1;
  }
}
#imgGal .container-gal img.loading {
  opacity: 0.3;
  filter: blur(5px);
}
#imgGal .container-gal img.loaded {
  opacity: 1;
  filter: blur(0);
}
#imgGal .container-gal img:hover {
  transform: translateY(-0.5rem) scale(1.02);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15), 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  z-index: 10;
}
#imgGal .container-gal img.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}
#imgGal .load-more-container {
  display: none !important;
}
#imgGal .loading-indicator {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 0.9rem;
}
#imgGal .loading-indicator::after {
  content: "...";
  animation: dots 1.5s steps(4, end) infinite;
}
@keyframes dots {
  0%, 20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%, 100% {
    content: "...";
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 249, 252, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  gap: 1.5rem;
}
.loader .spinner {
  animation: rotate 2s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.loader .spinner .track {
  fill: none;
  stroke: rgba(102, 126, 234, 0.15);
  stroke-width: 4;
}
.loader .spinner .progress {
  fill: none;
  stroke: rgba(30, 30, 30, 0.7);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  /* Commence vide (100%) */
  transition: stroke-dashoffset 0.3s ease;
  transform-origin: center;
  transform: rotate(-90deg);
  /* Commence en haut */
}
.loader .loader-text {
  font-size: 1.2rem;
  color: rgba(30, 30, 30, 0.7);
  font-weight: 600;
  letter-spacing: 0.5px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
#site-content.fade-in {
  animation: fadeInUp 1.618s ease-out;
}

/*# sourceMappingURL=imagesGalerie.css.map */
