/* ============================================
   LOADER POUR CHARGEMENT GALERIE
   ============================================ */

.galerie-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.galerie-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   HEADER PERSONNALISÉ DANS FANCYBOX
   ============================================ */

.galerie-custom-header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    text-align: center;
    pointer-events: none;
    color: white;
}

.galerie-header-nom {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.galerie-header-date {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .galerie-custom-header {
        top: 10px;
    }
    
    .galerie-header-nom {
        font-size: 1.2rem;
    }
    
    .galerie-header-date {
        font-size: 0.9rem;
    }
}

/* ============================================
   PERSONNALISATION FANCYBOX (optionnel)
   ============================================ */

/* Ajuster la taille des miniatures si besoin */
.fancybox__thumbs {
    --fancybox-thumbs-width: 96px;
    --fancybox-thumbs-ratio: 1;
}

/* Style des légendes */
.fancybox__caption {
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
}
