/* ============================================
   MOON'OZ - IMAGE PLACEHOLDERS
   ============================================
   Styles pour les images de fond et placeholders
   ============================================ */

/* Hero Background - Utilise une vraie photo de l'orchestre */
.hero-bg::before {
    background: 
        url('../doc-origin/photos/20240818_222023329_iOS.jpg') center/cover no-repeat;
    filter: brightness(0.3) saturate(0.8);
}

/* Fallback si l'image ne charge pas */
@supports not (background-image: url('../doc-origin/photos/20240818_222023329_iOS.jpg')) {
    .hero-bg::before {
        background: 
            radial-gradient(ellipse at 20% 80%, rgba(30, 58, 95, 0.4) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 50%, rgba(10, 15, 26, 1) 0%, rgba(30, 58, 95, 0.3) 100%),
            linear-gradient(180deg, #0a0f1a 0%, #1e3a5f 50%, #0a0f1a 100%);
        filter: none;
    }
}

/* Video Thumbnails - Maintenant avec vraies images Wix */
.video-thumbnail img {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a0f1a 100%);
    min-height: 200px;
}

/* Team member avatars - déjà stylisés avec des icônes */
/* Remplacer par des vraies photos quand disponibles */

/* Gallery images - Les vrais fichiers sont dans doc-origin/photos/ */
.gallery-item img {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a0f1a 100%);
}

/* Section décorative entre les sections */
.section-divider {
    width: 100%;
    height: 150px;
    background: url('../doc-origin/photos/20240818_222009414_iOS.jpg') center/cover no-repeat;
    filter: brightness(0.4);
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-bg-dark) 0%, transparent 20%, transparent 80%, var(--color-bg-dark) 100%);
}
