/* ============================================================================
   MKUD.PL - AUDITOR PAGE STYLES
   Blue color scheme matching MKUD branding
   Created: 2025-10-07
   ============================================================================ */

/* Breadcrumbs */
.breadcrumbs {
    background: var(--gray-50);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-200);
    margin-top: 80px;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-600);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: var(--transition-fast);
}

.breadcrumb-link:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--gray-400);
    font-size: var(--text-xs);
}

.breadcrumb-current {
    color: var(--gray-900);
    font-weight: 600;
    font-size: var(--text-sm);
}

/* Auditor Hero */
.auditor-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-32) 0;
    position: relative;
    overflow: hidden;
}

.auditor-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.auditor-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .auditor-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .auditor-hero {
        padding: var(--space-20) 0;
    }
}

.auditor-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
    .auditor-title {
        font-size: var(--text-4xl);
    }
}

.auditor-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
}

.shield-icon {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.shield-icon i {
    font-size: 6rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .shield-icon {
        width: 150px;
        height: 150px;
    }
    
    .shield-icon i {
        font-size: 4rem;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Tools Section */
.auditor-tools {
    padding: var(--space-32) 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .auditor-tools {
        padding: var(--space-20) 0;
    }
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.tool-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(42, 139, 184, 0.2);
    border-color: var(--primary);
}

.tool-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
    box-shadow: 0 8px 24px rgba(42, 139, 184, 0.3);
}

.tool-icon i {
    font-size: var(--text-4xl);
    color: var(--white);
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 36px rgba(42, 139, 184, 0.5);
}

.tool-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.tool-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.tool-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.tool-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.tool-features li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: var(--text-base);
}

.tool-card .btn {
    width: 100%;
    justify-content: center;
}

/* Security Tips Section */
.security-tips {
    padding: var(--space-32) 0;
    background: var(--gray-50);
}

@media (max-width: 768px) {
    .security-tips {
        padding: var(--space-20) 0;
    }
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.tip-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.tip-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-4);
    box-shadow: 0 8px 24px rgba(42, 139, 184, 0.3);
}

.tip-icon i {
    font-size: var(--text-3xl);
    color: var(--white);
}

.tip-card:hover .tip-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 36px rgba(42, 139, 184, 0.5);
}

.tip-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.tip-card p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================================================
   DARK MODE FOR AUDITOR PAGE
   ============================================================================ */

[data-theme="dark"] .breadcrumbs {
    background: linear-gradient(180deg, #1e293b 0%, #1a2332 100%);
    border-bottom-color: #374151;
}

[data-theme="dark"] .breadcrumb-link {
    color: #9ca3af;
}

[data-theme="dark"] .breadcrumb-link:hover {
    color: #3da6d6;
}

[data-theme="dark"] .breadcrumb-current {
    color: #f9fafb;
}

[data-theme="dark"] .breadcrumb-separator {
    color: #6b7280;
}

/* Auditor Hero - Dark Mode */
[data-theme="dark"] .auditor-hero {
    background: linear-gradient(135deg, #1a0f1f 0%, #0f1928 25%, #1e293b 60%, #0f172a 100%);
}

[data-theme="dark"] .auditor-hero::before {
    background: radial-gradient(circle, rgba(42, 139, 184, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .auditor-title {
    color: #ffffff;
}

[data-theme="dark"] .auditor-subtitle {
    color: #d1d5db;
}

[data-theme="dark"] .shield-icon {
    background: rgba(42, 139, 184, 0.2);
    border-color: rgba(42, 139, 184, 0.4);
    box-shadow: 0 20px 50px rgba(42, 139, 184, 0.4);
}

/* Tools Section - Dark Mode */
[data-theme="dark"] .auditor-tools {
    background: linear-gradient(180deg, #1a1f2e 0%, #141825 100%);
}

[data-theme="dark"] .tool-card {
    background: linear-gradient(145deg, #252d3f 0%, #1e2433 100%);
    border-color: #374151;
    color: #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .tool-card:hover {
    background: linear-gradient(145deg, #2d3548 0%, #242c3d 100%);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(42, 139, 184, 0.35), 0 4px 12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .tool-icon {
    background: var(--gradient-primary);
    box-shadow: 0 8px 24px rgba(42, 139, 184, 0.4);
}

[data-theme="dark"] .tool-card:hover .tool-icon {
    box-shadow: 0 12px 36px rgba(42, 139, 184, 0.6);
}

[data-theme="dark"] .tool-title {
    color: #f9fafb;
}

[data-theme="dark"] .tool-description {
    color: #d1d5db;
}

[data-theme="dark"] .tool-features li {
    color: #e5e7eb;
}

[data-theme="dark"] .tool-features li i {
    color: #3da6d6;
}

/* Security Tips - Dark Mode */
[data-theme="dark"] .security-tips {
    background: linear-gradient(180deg, #141825 0%, #0f1419 100%);
}

[data-theme="dark"] .tip-card {
    background: linear-gradient(145deg, #252d3f 0%, #1e2433 100%);
    border-color: #374151;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .tip-card:hover {
    background: linear-gradient(145deg, #2d3548 0%, #242c3d 100%);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(42, 139, 184, 0.35), 0 4px 12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .tip-icon {
    background: var(--gradient-primary);
    box-shadow: 0 8px 24px rgba(42, 139, 184, 0.4);
}

[data-theme="dark"] .tip-card:hover .tip-icon {
    box-shadow: 0 12px 36px rgba(42, 139, 184, 0.6);
}

[data-theme="dark"] .tip-card h3 {
    color: #f9fafb;
}

[data-theme="dark"] .tip-card p {
    color: #d1d5db;
}

