/* Banking Modernization Report - Main Styles */

/* Core Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
}

/* Chart Containers */
.chart-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 350px;
}

@media (max-width: 768px) {
    .chart-container {
        height: 300px;
    }
}

/* Navigation */
.nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #005f73;
    border-bottom-color: #005f73;
}

/* Interactive Buttons */
.strategy-btn {
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: white;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.875rem;
}

.strategy-btn:hover {
    border-color: #005f73;
    background-color: #f0f9ff;
    transform: translateY(-1px);
}

.strategy-btn.active {
    background-color: #005f73;
    color: white;
    border-color: #005f73;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Vendor Logos */
.vendor-logo {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    background-color: white;
    border: 2px solid transparent;
}

.vendor-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.vendor-logo.active {
    transform: scale(1.1);
    border-color: #005f73;
    box-shadow: 0 8px 25px -5px rgba(0, 95, 115, 0.3);
}

/* Animations */
.smooth-scroll {
    scroll-behavior: smooth;
}

.section-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-transition {
    transition: opacity 0.5s ease-in-out;
}

/* Content Cards */
.content-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* List Items with Icons */
.icon-list-item {
    display: flex;
    align-items: flex-start;
}

.icon-list-item .icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Strategy Content Cards */
.pros-card {
    background-color: #f0fdf4;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #bbf7d0;
}

.cons-card {
    background-color: #fef2f2;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #fecaca;
}

.use-case-card {
    background-color: #eff6ff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #bfdbfe;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .content-card {
        box-shadow: none;
        border: 1px solid #ccc;
        margin-bottom: 1rem;
    }
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
.strategy-btn:focus,
.vendor-logo:focus,
.nav-link:focus {
    outline: 2px solid #005f73;
    outline-offset: 2px;
}
