/* Importation Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&display=swap');

body { background-color: #f4f4f2; font-family: 'EB Garamond', serif; color: #333; padding-top: 80px; }
h1, h2, h3, h4 { color: #990000; font-weight: bold; }

/* Menu */
.navbar-brand { font-weight: bold; color: #990000 !important; font-size: 1.5rem; }

/* Cartes des livres réduites */
.book-card { 
    background: white; border-radius: 8px; overflow: hidden; transition: 0.3s; 
    border: 1px solid #eee; height: 100%; display: flex; flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); max-width: 280px; margin: auto;
}
.book-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.image-container { width: 100%; height: 350px; display: flex; justify-content: center; align-items: center; padding: 15px; background: #fff; }
.book-cover { max-width: 100%; max-height: 100%; object-fit: contain; cursor: pointer; }

/* Badge Langue */
.badge-lang { font-size: 0.7rem; background: #990000; color: white; padding: 5px 10px; border-radius: 20px; position: absolute; top: 10px; right: 10px; }

/* Placeholder Vibration */
.placeholder-vibration {
    width: 100%; height: 100%; background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 2px dashed #ccc; border-radius: 5px; color: #999;
}

/* Modale Galerie */
.main-img-view { width: 100%; height: 450px; object-fit: contain; background: #f8f8f8; border-radius: 8px; }
.thumb-gallery { display: flex; gap: 10px; justify-content: center; margin-top: 15px; }
.thumb-gallery img { width: 60px; height: 85px; object-fit: cover; cursor: pointer; border: 2px solid transparent; border-radius: 4px; }
.thumb-gallery img:hover { border-color: #990000; }
.desc-full { text-align: justify; font-size: 1.05rem; line-height: 1.6; max-height: 400px; overflow-y: auto; padding-right: 10px; }