/*
 * CSS Styles
 * File: /modules/pdfcatalog/views/css/pdfcatalog.css
 */

.pdf-catalog-section {
    margin: 30px 0;
    padding: 20px;
}

.pdf-catalog-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2.5em;
}

.catalog-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.catalog-cover {
    margin-bottom: 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 5px;
}

.catalog-cover img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.default-cover {
    color: #999;
    font-size: 4em;
}

.catalog-info h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.catalog-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.catalog-item .btn {
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .catalog-item {
        margin-bottom: 20px;
    }
    
    .catalog-cover {
        height: 150px;
    }
}