/* ======================================================
   HoneyBeeAwareness.org - site.css
   Updated: 06.18.2026 - 12:54 AM CST (America/Chicago)
   Purpose: Global HBA Version 1 styles
   ====================================================== */

:root {
    --hba-bg-main: #EEE4C8;
    --hba-bg-content: #F8F4E8;
    --hba-h1-blue: #0A2A66;
    --hba-h2-brown: #A85A1F;
    --hba-text-main: #111111;
    --hba-text-muted: #444444;
    --hba-border-light: #D8CBA7;
    --hba-honey-gold: #D9A441;
    --hba-honey-dark: #B8791D;
    --hba-white: #FFFFFF;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--hba-bg-main);
}

body.hba-body {
    color: var(--hba-text-main);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

a {
    color: var(--hba-h1-blue);
}

a:hover {
    color: var(--hba-h2-brown);
}

img {
    max-width: 100%;
    height: auto;
}

.hba-banner-wrap {
    width: 100%;
    margin-top: 64px;
    background-color: #111111;
    text-align: center;
    line-height: 0;
}

.hba-banner-home-link {
    display: block;
}

.hba-banner-img {
    display: block;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.hba-page-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 24px auto 36px;
}

.hba-content-card {
    background-color: var(--hba-bg-content);
    border: 1px solid var(--hba-border-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 14px #00000018;
}

.hba-intro-kicker {
    color: var(--hba-honey-dark);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

h1,
.hba-h1 {
    color: var(--hba-h1-blue);
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 12px;
    text-transform: uppercase;
}

h2,
.hba-h2 {
    color: var(--hba-h2-brown);
    font-family: Candara, Calibri, "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.2;
    margin: 24px 0 10px;
}

h3,
.hba-h3 {
    color: var(--hba-h1-blue);
    font-family: Candara, Calibri, "Segoe UI", Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.25;
    margin: 0 0 8px;
}

p {
    margin: 0 0 16px;
}

.hba-lead {
    font-size: 1.16rem;
    line-height: 1.6;
    max-width: 900px;
}

.hba-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.hba-home-card {
    background-color: #FFFFFF;
    border: 1px solid var(--hba-border-light);
    border-radius: 10px;
    padding: 18px;
    text-decoration: none;
    box-shadow: 0 2px 8px #00000012;
}

.hba-home-card:hover {
    border-color: var(--hba-honey-gold);
    color: var(--hba-text-main);
}

.hba-home-card-title {
    color: var(--hba-h1-blue);
    font-family: Candara, Calibri, "Segoe UI", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hba-home-card-text {
    color: var(--hba-text-main);
    font-size: 0.98rem;
    line-height: 1.45;
}

.hba-note-box {
    background-color: #FFFFFF;
    border-left: 6px solid var(--hba-honey-gold);
    margin-top: 24px;
    padding: 16px 18px;
}

.hba-footer {
    background-color: var(--hba-border-light);
    color: var(--hba-text-main);
    text-align: center;
    padding: 28px 18px 34px;
    border-top: 1px solid #C7B98F;
}

.hba-footer-nav {
    margin-bottom: 10px;
}

.hba-footer-nav a {
    color: var(--hba-h1-blue);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 9px;
    text-decoration: none;
}

.hba-footer-nav a:hover {
    color: var(--hba-h2-brown);
    text-decoration: underline;
}

.hba-footer-tagline {
    color: var(--hba-h2-brown);
    font-weight: 700;
    margin: 10px 0 8px;
}

.hba-footer-mission {
    max-width: 820px;
    margin: 0 auto 10px;
    font-size: 0.95rem;
    line-height: 1.45;
}

.hba-footer-copy {
    color: var(--hba-text-muted);
    font-size: 0.86rem;
}

@media (max-width: 800px) {
    body.hba-body {
        font-size: 17px;
    }

    .hba-page-shell {
        width: min(100% - 22px, 760px);
        margin-top: 18px;
    }

    .hba-content-card {
        padding: 18px;
    }

    .hba-home-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .hba-banner-wrap {
        margin-top: 64px;
    }

    .hba-footer-nav a {
        display: inline-block;
        margin: 4px 8px;
    }
}

/* ======================================================
   HBA REPORT PAGE SYSTEM
   Updated: 06.18.2026 - 01:25 AM CST (America/Chicago)
   Purpose: Report/reference page layout using existing site.css
   ====================================================== */

.hba-report-card-shell {
    padding: 0;
    overflow: hidden;
}

.hba-report-header {
    background: linear-gradient(135deg, #F8F4E8 0%, #FFFFFF 52%, #EEE4C8 100%);
    border-bottom: 1px solid var(--hba-border-light);
    padding: 28px 28px 24px;
}

.hba-report-kicker {
    color: var(--hba-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hba-report-header h1 {
    margin-top: 6px;
    margin-bottom: 10px;
}

.hba-report-subtitle {
    color: #354650;
    font-size: 1.08rem;
    line-height: 1.5;
    max-width: 900px;
}

.hba-report-notice {
    background-color: #F0F7FB;
    border-left: 6px solid var(--hba-h1-blue);
    margin-top: 18px;
    padding: 14px 16px;
}

.hba-report-version {
    color: var(--hba-text-muted);
    font-size: 0.78rem;
    margin-top: 14px;
}

.hba-report-local-nav {
    background-color: #233746;
    border-bottom: 1px solid #172630;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 18px;
}

.hba-report-nav-link {
    border: 1px solid #FFFFFF55;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 0.88rem;
    line-height: 1.2;
    padding: 6px 9px;
    text-decoration: none;
}

.hba-report-nav-link:hover {
    background-color: #FFFFFF18;
    color: #FFFFFF;
}

.hba-report-section {
    border-bottom: 1px solid var(--hba-border-light);
    padding: 28px;
}

.hba-report-section:last-child {
    border-bottom: 0;
}

.hba-report-section h2 {
    margin-top: 0;
}

.hba-report-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hba-report-card {
    background-color: #FFFFFF;
    border: 1px solid var(--hba-border-light);
    border-radius: 8px;
    padding: 15px;
}

.hba-report-soft {
    background-color: #F5F8FA;
}

.hba-report-topic {
    color: var(--hba-h1-blue);
    font-weight: 700;
}

.hba-report-small {
    color: var(--hba-text-muted);
    font-size: 0.82rem;
}

.hba-report-tag {
    background-color: #EEF2F4;
    border-radius: 999px;
    color: #24323C;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 2px 4px 2px 0;
    padding: 3px 9px;
}

.hba-report-tag-hospital {
    background-color: #FFF3D8;
    color: #7A4E00;
}

.hba-report-tag-severe {
    background-color: #FFE4E4;
    color: #8A1F1F;
}

.hba-report-tag-source {
    background-color: #EAF4EC;
    color: #2D6435;
}

.hba-report-page table {
    border-collapse: collapse;
    font-size: 0.86rem;
    width: 100%;
}

.hba-report-page th,
.hba-report-page td {
    border: 1px solid var(--hba-border-light);
    padding: 9px;
    text-align: left;
    vertical-align: top;
}

.hba-report-page th {
    background-color: #EEF3F6;
    color: #1F2A33;
}

.hba-report-page tr:nth-child(even) td {
    background-color: #FBFCFD;
}

.hba-report-page a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 700px) {
    .hba-report-header,
    .hba-report-section {
        padding: 20px 16px;
    }

    .hba-report-local-nav {
        padding: 10px 12px;
    }

    .hba-report-page table,
    .hba-report-page thead,
    .hba-report-page tbody,
    .hba-report-page th,
    .hba-report-page td,
    .hba-report-page tr {
        display: block;
    }

    .hba-report-page thead {
        display: none;
    }

    .hba-report-page tr {
        border: 1px solid var(--hba-border-light);
        margin-bottom: 12px;
    }

    .hba-report-page td {
        border: 0;
        border-bottom: 1px solid var(--hba-border-light);
    }

    .hba-report-page td::before {
        color: var(--hba-text-muted);
        content: attr(data-label);
        display: block;
        font-weight: 700;
        margin-bottom: 2px;
    }
}

/* ======================================================
   END OF FILE: HoneyBeeAwareness.org - site.css
   Updated: 06.18.2026 - 12:54 AM CST (America/Chicago)
   ====================================================== */
