/* Styles pour les bannières dynamiques */
.dynamic-banner {
    margin: 20px 0;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.dynamic-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #708238, #e3b04b);
}

.banner-default {
    background: linear-gradient(135deg, #f7f6ee 0%, #f3e9dc 100%);
    border: 2px solid #e3b04b;
    color: #8B4513;
}

.banner-contact {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border: 2px solid #2196f3;
    color: #1565c0;
}

.banner-home {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.banner-content {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
}

.banner-content strong {
    font-weight: 700;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .dynamic-banner {
        margin: 15px 10px;
        padding: 15px;
    }
    
    .banner-content {
        font-size: 1rem;
    }
}
