/* ============================================================================
   WISCONSIN CAPITAL MANAGEMENT - INSTITUTIONAL CSS FOR WIX CUSTOM CODE
   Palette: Deep Navy (#002D62 / #001A3D), Imperial Purple (#7D30A8 / #482464)
   ============================================================================ */

:root {
    --wiscap-navy-primary: #002D62;
    --wiscap-navy-dark: #001A3D;
    --wiscap-purple-primary: #7D30A8;
    --wiscap-purple-dark: #482464;
    --wiscap-white: #FFFFFF;
    --wiscap-gray-light: #F4F6F9;
    --wiscap-text-dark: #1E293B;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--wiscap-text-dark);
    background-color: var(--wiscap-white);
}

/* Header & Navigation */
header, #headerContainer {
    background-color: var(--wiscap-navy-primary) !important;
    border-bottom: 3px solid var(--wiscap-purple-primary) !important;
}

/* Buttons & CTA Elements */
.button-primary, btn-purple {
    background: linear-gradient(135deg, var(--wiscap-purple-primary) 0%, var(--wiscap-purple-dark) 100%) !important;
    color: #FFFFFF !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
    transition: all 0.3s ease !important;
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--wiscap-navy-primary) 0%, var(--wiscap-navy-dark) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 45, 98, 0.25);
}

/* Card Components & Repeaters */
.wiscap-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 45, 98, 0.1);
    border-top: 4px solid var(--wiscap-purple-primary);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wiscap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(125, 48, 168, 0.15);
}

/* Section Headings */
h1, h2, h3 {
    color: var(--wiscap-navy-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--wiscap-purple-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.875rem;
}
