/* ============================================================
   SICKCATSURVIVAL.COM - FIXER UTILITY
   Clean, Fast, High-Utility Design
   ============================================================ */

:root {
    --bg-main: #f8f9fa;
    --bg-white: #ffffff;
    --bg-warning: #fff3cd;
    --bg-danger: #f8d7da;

    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-danger: #721c24;

    --accent-teal: #00c4b4;
    --accent-danger: #dc3545;
    --accent-warning: #ffc107;

    --border: #dee2e6;
    --border-warning: #ffeeba;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius: 8px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
}

.triage-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tagline {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Emergency Banner */
.emergency-banner {
    background: var(--bg-danger);
    border: 2px solid var(--accent-danger);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.emergency-banner h2 {
    color: var(--text-danger);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.critical-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.critical-list li {
    margin-bottom: 0.5rem;
    color: var(--text-danger);
}

.emergency-btn {
    display: inline-block;
    background: var(--accent-danger);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.2s;
}

.emergency-btn:hover {
    background: #c82333;
}

/* Triage Section */
.triage-section {
    margin-bottom: 2rem;
}

.triage-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-teal);
}

.issue-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.issue-card h3 {
    font-size: 1.1rem;
    color: var(--accent-teal);
    margin-bottom: 0.75rem;
}

.issue-card p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Resources */
.resources {
    margin-bottom: 2rem;
}

.resources h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.resource-link:hover {
    border-color: var(--accent-teal);
    box-shadow: var(--shadow);
}

.resource-link .icon {
    font-size: 1.5rem;
}

/* Disclaimer */
.disclaimer {
    background: var(--bg-warning);
    border: 1px solid var(--border-warning);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer a {
    color: var(--accent-teal);
    text-decoration: none;
}

.footer .small {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 600px) {
    .triage-container {
        padding: 1rem;
    }

    .header h1 {
        font-size: 1.5rem;
    }
}