/* ==========================================================================
   PAGE PROJET - LAYOUTS SPÉCIFIQUES
   ========================================================================== */

/* Effet de rotation au survol pour accentuer l'aspect "moodboard" */
.masonry-item {
    transition: transform var(--transition-speed);
}

.masonry-item:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

/* Cadrage des images dans les carrousels (Logos et Affiches) */
.carousel-image-wrapper {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
}

.carousel-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Limite la taille des documents dans la liseuse pour qu'ils tiennent sur l'écran */
.document-reader-img {
    max-height: 100vh; /* L'image ne dépassera jamais 70% de la hauteur de l'écran */
    width: auto !important; /* On annule la largeur forcée pour respecter les proportions */
    object-fit: contain;
}