/* ==============================
   CATALOGUES PAGE STYLES (FANCY)
   ============================== */

.catalogues-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #f8d47c;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #dcdcdc;
    font-size: 16px;
    margin-bottom: 50px;
}

/* PDF Thumbnails Grid */
.pdf-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
}

/* PDF Item Card */
.pdf-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.pdf-item:hover {
    transform: translateY(-8px);
    border-color: #f8d47c;
    box-shadow: 0 12px 25px rgba(248, 212, 124, 0.3);
}

/* PDF Icon */
.pdf-thumbnail {
    font-size: 60px;
    color: #f8d47c;
    background: rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.pdf-thumbnail:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(248, 212, 124, 0.15);
}

/* Headings & Paragraphs */
.pdf-item h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.pdf-item p {
    color: #cfcfcf;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #f8d47c;
    color: #1a1a1a;
    background: #f8d47c;
    text-decoration: none;
}

.cta-btn.small {
    font-size: 13px;
    padding: 8px 18px;
}

.cta-btn:hover {
    background: transparent;
    color: #f8d47c;
}

.cta-btn.secondary {
    background: transparent;
    color: #f8d47c;
}

.cta-btn.secondary:hover {
    background: #f8d47c;
    color: #1a1a1a;
}

/* PDF Modal */
.pdf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.pdf-modal-content {
    background: #111;
    border-radius: 12px;
    width: 90%;
    height: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8d47c;
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #ffcc00;
    transform: scale(1.1);
}

.pdf-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Catalogue Info Section */
.catalogue-info {
    margin-top: 60px;
    text-align: center;
}

.catalogue-info h3 {
    color: #f8d47c;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.catalogue-info p {
    color: #d1d1d1;
    margin-bottom: 25px;
    font-size: 15px;
}

.info-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .pdf-thumbnail {
        width: 80px;
        height: 80px;
        font-size: 45px;
    }
    .pdf-item {
        padding: 20px;
    }
    .section-header h2 {
        font-size: 28px;
    }
}
