/* JSB SECURITY - Remplacement des images placeholder */

/* Images de marques/partenaires */
.brand-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e90ff, #4da6ff);
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 150px;
    height: 80px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.brand-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Images de témoignages clients */
.testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #87ceeb, #4da6ff);
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Images de story/à propos */
.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4da6ff, #1e90ff);
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    width: 300px;
    height: 200px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.story-image span {
    position: relative;
    z-index: 2;
    padding: 10px;
}

/* Images principales de services */
.service-main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 500px;
    height: 400px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Couleurs spécifiques par service */
.service-main-image.cameras {
    background: linear-gradient(135deg, #1e90ff, #4da6ff);
}

.service-main-image.alarms {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.service-main-image.access {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.service-main-image.intercoms {
    background: linear-gradient(135deg, #fd79a8, #e83e8c);
}

.service-main-image.networks {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.service-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.service-main-image span {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Images secondaires de services */
.service-secondary-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e90ff, #4da6ff);
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 500px;
    height: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.service-secondary-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.1) 50%, transparent 51%),
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.service-secondary-image span {
    position: relative;
    z-index: 2;
    padding: 30px;
}

/* Image principale homepage */
.main-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e90ff, #4da6ff);
    color: white;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    width: 600px;
    height: 400px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.main-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 52%);
    z-index: 1;
}

.main-hero-image span {
    position: relative;
    z-index: 2;
    padding: 40px;
}

/* Responsive design */
@media (max-width: 768px) {
    .story-image,
    .service-main-image,
    .main-hero-image {
        width: 100%;
        height: 250px;
        font-size: 16px;
    }
    
    .service-secondary-image {
        width: 100%;
        height: 300px;
        font-size: 18px;
    }
    
    .brand-placeholder {
        width: 120px;
        height: 60px;
        font-size: 12px;
    }
} 