/* DESIGN STANDARDS - SITEWIDE CONSISTENCY */
/* Generated: 2025-12-10T19:15:21.326Z */

:root {
    /* Color Variables */
    --primary: #2563eb;
    --secondary: #5a6c7d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --border: #e0e0e0;
    
    /* Font Sizes */
    --font-h1: 2.5rem;
    --font-h2: 2rem;
    --font-h3: 1.5rem;
    --font-h4: 1.25rem;
    --font-body: 1rem;
    --font-small: 0.875rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}


/* GLOBAL DESIGN STANDARDS - Applied Sitewide */
/* Font Sizes */
h1, .h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
h2, .h2 { font-size: 2rem; font-weight: 600; line-height: 1.3; margin-bottom: 1rem; }
h3, .h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.4; margin-bottom: 1rem; }
h4, .h4 { font-size: 1.25rem; font-weight: 500; line-height: 1.4; margin-bottom: 0.5rem; }

body, p, .body-text { 
    font-size: 1rem; 
    line-height: 1.6; 
    color: #333333;
    margin-bottom: 1rem;
}

.small-text { font-size: 0.875rem; color: #666666; }
.tiny-text { font-size: 0.75rem; color: #888888; }

/* Color Standards */
.text-primary { color: #2563eb !important; }
.text-secondary { color: #5a6c7d !important; }
.text-success { color: #28a745 !important; }
.text-warning { color: #ffc107 !important; }
.text-danger { color: #dc3545 !important; }
.text-dark { color: #333333 !important; }
.text-light { color: #666666 !important; }
.text-muted { color: #888888 !important; }

/* Background Colors */
.bg-primary { background-color: #2563eb !important; }
.bg-secondary { background-color: #5a6c7d !important; }
.bg-success { background-color: #28a745 !important; }
.bg-light { background-color: #f8f9fa !important; }

/* Spacing Standards */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 2rem !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 2rem !important; }

/* Alignment Standards */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.d-flex { display: flex !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }

/* Button Standards */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-secondary {
    background-color: #5a6c7d;
    color: white;
    border-color: #5a6c7d;
}

.btn-success {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

/* Card Standards */
.card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Container Standards */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 3rem 0;
}

/* Grid Standards */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    
    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.75rem; }
    h3, .h3 { font-size: 1.25rem; }
}

/* Form Standards */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333333;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}
