/* ============================================
   HERO SECTION SOUMETTRE MA FICHE
   ============================================ */

.hero-soumettre {
    position: relative;
    background: linear-gradient(135deg, #0a2e1a 0%, #0a7734 50%, #064d22 100%);
    color: #fff;
    margin-bottom: 2rem;
    padding: 30px 0 30px;
    text-align: center;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
}

/* SVG Background */
.hero-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-film-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.bg-cameras {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.bg-spotlight {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: auto;
    opacity: 0.4;
}

.hero-soumettre .container {
    position: relative;
    z-index: 2;
}

/* Badge étape */
.badge-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.badge-step i {
    font-size: 0.9rem;
}

/* Titre */
.hero-title {
    font-size: clamp(2rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Description */
.hero-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

.hero-description strong {
    color: #FFD700;
    font-weight: 700;
}

/* Breadcrumb */
.hero-breadcrumb {
    display: inline-flex;
    justify-content: center;
    margin-top: 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #FFD700;
    transform: translateX(-2px);
}

.breadcrumb-item.active {
    color: #FFD700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-sep {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Vague décorative */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* Animation des SVG */
@keyframes floatCamera {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bg-cameras {
    animation: floatCamera 15s ease-in-out infinite;
}

@keyframes pulseSpotlight {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

.bg-spotlight {
    animation: pulseSpotlight 8s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-soumettre {
        padding: 60px 0 40px;
        min-height: 200px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .breadcrumb-list {
        padding: 6px 16px;
    }
    
    .breadcrumb-item {
        font-size: 0.75rem;
    }
    
    .bg-spotlight {
        width: 80%;
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .hero-soumettre {
        padding: 50px 0 30px;
    }
    
    .badge-step {
        font-size: 0.7rem;
        padding: 4px 16px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .breadcrumb-list {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .bg-cameras {
        opacity: 0.15;
    }
}