.typo-parisienne {
    font-family: 'Parisienne', sans-serif !important;
}

/* Section banner */

.category-banner {
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
}

/* Version desktop : galerie d'images */
.desktop-gallery {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 0 1rem;
}

.desktop-gallery img {
    width: 100%;
    max-width: 300px;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    object-fit: cover;
}

/* Version mobile : une image pleine largeur */
.mobile-banner {
    display: none;
    padding: 0 1rem;
}

.mobile-banner img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
}

/* Titre unique déplacé selon le contexte */
.univers-title {
    /*font-family: 'Dancing Script', cursive;*/
    font-size: 3.5rem !important;
    text-align: center;
    color: #444;
    margin: 1.5rem 0;
}

/* Section texte */
.category-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.category-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.category-text strong {
    color: #c77c8c;
    font-weight: 600;
}

.category-text em {
    color: #888;
    font-style: italic;
}

/* RESPONSIVE */

/* En mobile : on cache la galerie et on affiche la grande image avec le titre par-dessus */
@media (max-width: 767px) {
    .desktop-gallery {
        display: none;
    }

    .mobile-banner {
        display: block;
        position: relative;
        margin-bottom: 2rem;
    }

    .univers-title {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        color: white;
        text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        font-size: 3.4rem !important;
        text-align: center;
        line-height: 3.2rem !important;
        margin: 0;
        padding: 0;
    }

    .category-text {
        font-size: 1rem;
        padding: 0 1rem 2rem;
    }

    .mobile-banner img {
        border-radius: 1rem;
    }
}