/* Paymart Suite Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --pm-navy: #0A2540;
    --pm-blue: #00A3FF;
    --pm-gray: #F5F7FA;
    --pm-charcoal: #1A2B3C;
    --pm-emerald: #10B981;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--pm-charcoal);
}

.site-header {
    background: linear-gradient(135deg, var(--pm-navy) 0%, #1a3a5c 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.site-header .navbar-brand {
    color: white !important;
    font-weight: 800;
    font-size: 1.5rem;
}

.site-header a {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
}

.site-header a:hover,
.site-header a:focus {
    color: var(--pm-blue) !important;
}

.container-component h1,
.container-component h2 {
    color: var(--pm-navy);
    font-weight: 800;
}

.item-content {
    font-size: 1.125rem;
    line-height: 1.7;
}

.btn-primary {
    background: var(--pm-blue);
    border-color: var(--pm-blue);
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
}

.btn-primary:hover {
    background: #0090e0;
    border-color: #0090e0;
}

.card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(10, 37, 64, 0.12);
}

.card-title {
    color: var(--pm-navy);
    font-weight: 700;
}

.site-footer {
    background: var(--pm-navy);
    color: rgba(255,255,255,0.8);
    padding: 48px 0;
}

.site-footer a {
    color: rgba(255,255,255,0.7);
}

.site-footer a:hover {
    color: var(--pm-blue);
}
