/* Catalog Page Specific Styles */

/* Hero Section */
.catalog-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-features .feature-item i {
    font-size: 1.2rem;
}

/* Main Catalog Section */
.main-catalog {
    background-color: #ffffff;
}

.catalog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.catalog-icon {
    width: 60px;
    height: 60px;
    background: rgba(218, 161, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.catalog-icon i {
    font-size: 1.8rem;
}

.catalog-details .detail-item {
    font-size: 0.9rem;
    color: var(--text-light);
}

.catalog-details .detail-item strong {
    color: var(--text-dark);
}

.catalog-features .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.catalog-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.catalog-actions .btn {
    flex: 1;
    min-width: 140px;
}

/* Specialized Catalogs Section */
.specialized-catalogs {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.specialized-catalog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.specialized-catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.catalog-icon-large {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(218, 161, 76, 0.1);
    transition: all 0.3s ease;
}

.specialized-catalog-card:hover .catalog-icon-large {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.specialized-catalog-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.specialized-catalog-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.catalog-info .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Technical Documentation Section */
.technical-docs {
    background-color: #ffffff;
}

.doc-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.doc-icon {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(218, 161, 76, 0.1);
    transition: all 0.3s ease;
}

.doc-card:hover .doc-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.doc-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.doc-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b98b4e 100%);
    color: white;
}

.cta-section .main-heading {
    color: white !important;
}

.cta-section .paragraph {
    color: rgba(255,255,255,0.9) !important;
}

.btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .catalog-hero-section {
        padding: 60px 0;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 2rem;
    }
    
    .catalog-actions {
        flex-direction: column;
    }
    
    .catalog-actions .btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .main-heading {
        font-size: 2rem !important;
    }
    
    .catalog-card {
        margin-bottom: 1rem;
    }
    
    .specialized-catalog-card {
        margin-bottom: 1rem;
    }
    
    .doc-card {
        margin-bottom: 1rem;
    }
    
    .catalog-header {
        flex-direction: column;
        text-align: center;
    }
    
    .catalog-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .catalog-hero-section {
        padding: 40px 0;
    }
    
    .hero-features .feature-item {
        justify-content: center;
    }
    
    .catalog-features .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .catalog-info .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .catalog-icon {
        width: 50px;
        height: 50px;
    }
    
    .catalog-icon i {
        font-size: 1.5rem;
    }
    
    .catalog-icon-large {
        padding: 0.8rem;
    }
    
    .catalog-icon-large i {
        font-size: 2.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b98b4e;
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Catalog Card Hover Effects */
.catalog-card:hover .catalog-header h4 {
    color: var(--primary-color);
}

.catalog-features .badge {
    transition: all 0.3s ease;
}

.catalog-features .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Specialized Catalog Card Animations */
.specialized-catalog-card:hover .catalog-icon-large {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.specialized-catalog-card:hover h4 {
    color: var(--primary-color);
}

.catalog-info .badge {
    transition: all 0.3s ease;
}

.catalog-info .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Doc Card Icon Animations */
.doc-card:hover .doc-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.doc-card:hover h5 {
    color: var(--primary-color);
}

/* Button Hover Effects */
.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 161, 76, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Catalog Icon Animations */
.catalog-icon {
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

/* Detail Item Animations */
.detail-item {
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(218, 161, 76, 0.05);
    padding: 0.5rem;
    border-radius: 5px;
}

/* Staggered Animation for Cards */
.catalog-card:nth-child(1) { transition-delay: 0.1s; }
.catalog-card:nth-child(2) { transition-delay: 0.2s; }

.specialized-catalog-card:nth-child(1) { transition-delay: 0.1s; }
.specialized-catalog-card:nth-child(2) { transition-delay: 0.2s; }
.specialized-catalog-card:nth-child(3) { transition-delay: 0.3s; }
.specialized-catalog-card:nth-child(4) { transition-delay: 0.4s; }
.specialized-catalog-card:nth-child(5) { transition-delay: 0.5s; }
.specialized-catalog-card:nth-child(6) { transition-delay: 0.6s; }

.doc-card:nth-child(1) { transition-delay: 0.1s; }
.doc-card:nth-child(2) { transition-delay: 0.2s; }
.doc-card:nth-child(3) { transition-delay: 0.3s; }
.doc-card:nth-child(4) { transition-delay: 0.4s; }

/* Image Hover Effects */
.catalog-hero-section img {
    transition: all 0.3s ease;
}

.catalog-hero-section img:hover {
    transform: scale(1.02);
}

/* Content Fade In Animation */
.catalog-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.catalog-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Specialized Catalog Card Animation */
.specialized-catalog-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.specialized-catalog-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Doc Card Animation */
.doc-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.doc-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Download Button Animation */
.catalog-actions .btn {
    transition: all 0.3s ease;
}

.catalog-actions .btn:hover {
    transform: translateY(-2px);
}

/* Catalog Header Animation */
.catalog-header {
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-header {
    transform: translateX(5px);
}

/* Catalog Details Animation */
.catalog-details {
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-details {
    transform: translateX(5px);
}

/* Catalog Features Animation */
.catalog-features {
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-features {
    transform: translateX(5px);
}

/* Catalog Actions Animation */
.catalog-actions {
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-actions {
    transform: translateX(5px);
}

/* Specialized Catalog Content Animation */
.specialized-catalog-card {
    transition: all 0.3s ease;
}

.specialized-catalog-card:hover {
    transform: translateY(-5px);
}

/* Doc Card Content Animation */
.doc-card {
    transition: all 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-5px);
}

/* Catalog Icon Large Animation */
.catalog-icon-large {
    transition: all 0.3s ease;
}

.specialized-catalog-card:hover .catalog-icon-large {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

/* Doc Icon Animation */
.doc-icon {
    transition: all 0.3s ease;
}

.doc-card:hover .doc-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
} 