/* ========================================
   Catalogue Page Styles
   Dark Theme Download Cards
======================================== */

/* Hero Section */
.catalogue-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.catalogue-hero-content {
    max-width: 800px;
}

.catalogue-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.catalogue-title .highlight {
    color: #64748B;
    font-style: italic;
}

.catalogue-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Catalogues Section */
.catalogues-section {
    padding: 80px 5%;
    background: #0a0a0a;
    min-height: 50vh;
}

.catalogues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Catalogue Card */
.catalogue-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
}

.catalogue-card:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 116, 139, 0.3);
    box-shadow: 0 20px 50px rgba(100, 116, 139, 0.15);
}

/* Featured Card (Company Profile) */
.catalogue-card.featured {
    grid-column: span 3;
    flex-direction: row;
    text-align: left;
    padding: 50px;
    gap: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    border-color: rgba(100, 116, 139, 0.2);
}

.catalogue-card.featured .card-icon {
    flex-shrink: 0;
}

.catalogue-card.featured .card-content {
    flex: 1;
}

.catalogue-card.featured .btn-download {
    flex-shrink: 0;
    align-self: center;
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 116, 139, 0.1);
    border-radius: 16px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: #64748B;
}

.catalogue-card.featured .card-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 0;
}

.catalogue-card.featured .card-icon svg {
    width: 40px;
    height: 40px;
}

/* Card Content */
.card-content {
    margin-bottom: 24px;
}

.catalogue-card.featured .card-content {
    margin-bottom: 0;
}

.card-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 12px;
}

.catalogue-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.catalogue-card.featured h3 {
    font-size: 2rem;
}

.catalogue-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Download Button */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #64748B;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download svg {
    width: 18px;
    height: 18px;
}

.btn-download:hover {
    background: #94A3B8;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .catalogues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .catalogue-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .catalogue-hero {
        min-height: 35vh;
        padding: 120px 5% 50px;
    }
    
    .catalogues-section {
        padding: 60px 5%;
    }
    
    .catalogues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .catalogue-card.featured {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 24px;
    }
    
    .catalogue-card.featured .card-icon {
        margin-bottom: 0;
    }
    
    .catalogue-card.featured h3 {
        font-size: 1.5rem;
    }
    
    .catalogue-card {
        padding: 30px 24px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .card-icon svg {
        width: 28px;
        height: 28px;
    }
}
