/* ==========================================================================
   Carousel - Slide statique personnalisable
   Extrait du bloc <style> de templates/carousel/static-slide.html
   Les keyframes utilisés (slideInDown/slideInUp) sont dans carousel.css
   ========================================================================== */

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

.static-slide .slide-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.static-slide .slide-header {
    animation: slideInDown 0.8s ease-out;
}

.static-slide .slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.static-slide .slide-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.static-slide .slide-image {
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.static-slide .slide-image img {
    width: 100%;
    height: auto;
    display: block;
}

.static-slide .slide-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    opacity: 0.95;
}

.static-slide .slide-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
}

.static-slide .slide-text p {
    margin: 0 0 1rem;
}

.static-slide .slide-text a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.static-slide .slide-text a:hover {
    opacity: 0.8;
}

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

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

    .static-slide .slide-image {
        max-width: 250px;
    }

    .static-slide .slide-text {
        font-size: 1rem;
    }
}
