/* ============================================
   HERO SECTION - PALETTE CRÈME HARMONISÉE
   ============================================ */

:root {
    /* Couleur de base - Crème */
    --color-cream: #FFFDEE;
    --color-cream-light: #FFFEF5;
    --color-cream-dark: #F5F3E4;
    
    /* Variantes vertes */
    --color-green-light: #0a7734;
    --color-green: #0a7734;
    --color-green-dark: #085c28;
    
    /* Variantes dorées */
    --color-gold-light: #F5D021;
    --color-gold: #FFD700;
    --color-gold-dark: #DAA520;
        
    
    /* Variantes rouges */
    --color-red-light: #FF4444;
    --color-red: #FF0000;
    --color-red-dark: #CC0000;

    --color-white: #FFFFFF;
    --color-black: #1a1a1a;
    --color-gray: #6B7280;
    --color-gray-light: #F3F4F6;
    
    /* Ombres */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow-green: 0 0 20px rgba(10, 119, 52, 0.3);
    --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-glow-red: 0 0 20px rgba(255, 0, 0, 0.3);

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-annuaire {
    position: relative;
    background: linear-gradient(135deg, var(--color-cream-light) 0%, var(--color-cream) 50%, var(--color-cream-dark) 100%);
    color: #1a2c3e;
    margin-bottom: 2rem;
    padding: 30px 0 30px;
    text-align: center;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
}

/* SVG Background - Adapté à la palette crème */
.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.15;
}

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

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

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

/* Badge étape - Version crème */
.badge-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 253, 238, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 119, 52, 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;
    color: var(--color-green);
}

.badge-step i {
    font-size: 0.9rem;
    color: var(--color-green-light);
}

/* Titre - Dégradé signature ABCA */
.hero-title {
    font-size: clamp(2rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-red-light) 0%, var(--color-red) 50%, var(--color-red-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Description - Couleur sombre pour lisibilité */
.hero-description {
    font-size: 0.9rem;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

.hero-description strong {
    background: linear-gradient(135deg, var(--color-green-light), var(--color-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Breadcrumb - Version glassmorphique crème */
.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(255, 253, 238, 0.8);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(10, 119, 52, 0.15);
    box-shadow: var(--shadow-sm);
}

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

.breadcrumb-item a {
    color: #4a5568;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-green-light);
    transform: translateX(-2px);
}

.breadcrumb-item.active {
    color: var(--color-green-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.breadcrumb-item i {
    font-size: 0.65rem;
}

.breadcrumb-sep {
    font-size: 0.7rem;
    color: #cbd5e1;
}

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

.hero-wave svg path {
    fill: var(--color-cream-dark);
}

/* 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.1;
    }
    50% {
        opacity: 0.2;
    }
}

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

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

@media (max-width: 480px) {
    .hero-annuaire {
        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.05;
    }
}