/* ==========================================================================
   Carousel - Slide "Nos Services"
   Extrait du bloc <style> de templates/carousel/services-slide.html
   Keyframes mutualisés (slideInDown/slideInUp/fadeIn) : voir carousel.css
   ========================================================================== */

.carousel-slide {
    position: relative;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slide-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-header {
    text-align: center;
    animation: slideInDown 0.8s ease-out;
}

.slide-title {
    margin: 0;
}

.slide-subtitle {
    margin: 0;
}

.slide-description {
    animation: fadeIn 1s ease-out 0.3s both;
}

.services-content {
    animation: slideInUp 0.8s ease-out 0.5s both;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-slide {
        height: auto;
        min-height: 400px;
        padding: 1.5rem;
    }

    .slide-title {
        font-size: 2rem;
    }

    .carousel-slide {
        min-height: 400px;
        padding: 2rem 1.5rem;
    }
}
