/* /css/base-2026.css */
/* Loaded on every page: resets, page wrapper, header, footer, nav.
   Page-specific files (e.g. home-2026.css) load in addition to this,
   never instead of it. */

/* ---- Tag-level resets ---- */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
h1, h2, h3, h4, p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* Every page wraps its main content in #page-wrap-2026 (public
   pages) or the secure dashboard's equivalent — this makes it grow
   to fill available space, pushing the footer to the bottom of the
   viewport on short pages without pinning it there on tall,
   scrolling pages. */
#page-wrap-2026 { flex: 1 0 auto; }
footer#footer-2026 { flex-shrink: 0; }

/* ---- Page wrapper ---- */
#page-wrap-2026 {
    margin: 0 auto;
    width: 1200px;
    max-width: 90%;
}

/* ---- Accessibility ---- */
.sr-only-2026 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ---- Header ---- */
header { width: 100%; box-sizing: border-box; position: relative; }

.site-header-2026 {
    width: 100%;
    box-sizing: border-box;
}

.site-header-desktop-2026 {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding: 10px 25px;
    font-size: 11px;
}
.site-header-promo-box-2026 {
    grid-column: 2;
    text-align: right;
    position: relative;
}
.site-header-events-widget-2026 {
    margin-top: 5px;
    padding: 3px 5px;
    border: 1px solid #00A86B;
    text-align: left;
}
.site-header-calendar-link-2026 {
    font-size: 11px;
    color: #aaa;
    text-decoration: none;
}
.site-header-logo-link-2026 {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
}
.site-header-logo-img-2026 {
    max-width: 100%;
    height: auto;
    max-height: 125px;
    display: block;
}
.site-header-nav-menu-2026 {
    grid-column: 1 / span 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 30px;
    row-gap: 8px;
    font-size: 15px;
    font-variant-caps: all-small-caps;
    margin-top: 15px;
}
@media only screen and (min-width: 769px) and (max-width: 1080px) {
    .site-header-nav-menu-2026 {
        gap: 14px;
        row-gap: 8px;
    }
}
.site-header-mobile-2026 {
    display: none;
}
@media only screen and (max-width: 768px) {
    .site-header-desktop-2026 {
        display: none;
    }
    .site-header-mobile-2026 {
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        background-color: #000000;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 15px 20px 15px 20px;
    }
    .site-header-mobile-bar-2026 {
        display: grid;
        grid-template-columns: 50px 1fr 50px;
        align-items: center;
        width: 100%;
    }
    .site-header-mobile-2026 .site-header-toggle-btn-2026 {
        grid-column: 1;
        justify-self: start;
        background: none;
        border: none;
        font-size: 28px;
        color: #FFFFFF;
        cursor: pointer;
        padding: 5px;
        line-height: 1;
    }
    .site-header-mobile-2026 .site-header-logo-link-2026 {
        grid-column: 2;
        justify-self: center;
    }
    .site-header-mobile-2026 .site-header-logo-img-2026 {
        max-height: 75px;
        height: auto;
        display: block;
    }
    .site-header-spacer-2026 {
        grid-column: 3;
        width: 50px;
        height: 1px;
    }
    .site-header-quick-links-2026 {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid #222222;
    }
    .site-header-quick-links-2026 a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .site-header-quick-links-2026 a:hover,
    .site-header-quick-links-2026 a:active {
        color: #00A86B;
    }
    .site-header-mobile-nav-2026 {
        display: none;
        flex-direction: column;
        gap: 14px;
        text-align: center;
        background: #111111;
        padding: 20px;
        margin-top: 15px;
        border-radius: 6px;
        width: 100%;
        box-sizing: border-box;
        border: 1px solid #222222;
    }
    .site-header-mobile-nav-2026 a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 15px;
    }
    .site-header-mobile-nav-2026.is-open-2026 {
        display: flex;
    }
    /* Burger and close icon share the same visual weight so the
       toggle doesn't shift size when it flips state. Visibility is
       driven entirely by the .is-open-2026 class JS toggles on the
       button — no inline styles. */
    .menu-icon-burger-2026,
    .menu-icon-close-2026 {
        font-size: 32px;
        line-height: 1;
        display: inline-block;
    }
    .menu-icon-close-2026 { display: none; }
    .site-header-toggle-btn-2026.is-open-2026 .menu-icon-burger-2026 { display: none; }
    .site-header-toggle-btn-2026.is-open-2026 .menu-icon-close-2026 { display: inline-block; }
}

/* ---- Nav dropdowns (desktop hover + touch tap, mobile drawer section labels) ---- */
.site-header-nav-dropdown-2026 {
    position: relative;
    display: inline-block;
}
.site-header-nav-dropdown-toggle-2026 {
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.site-header-nav-caret-2026 {
    font-size: 10px;
    display: inline-block;
    transition: transform 0.15s ease;
}
.site-header-nav-dropdown-2026.is-open-2026 .site-header-nav-caret-2026 {
    transform: rotate(180deg);
}
.site-header-nav-dropdown-menu-2026 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    padding: 6px 0;
    z-index: 50;
    flex-direction: column;
}
.site-header-nav-dropdown-menu-2026 a {
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
    color: #1a202c;
    text-decoration: none;
}
.site-header-nav-dropdown-menu-2026 a:hover {
    background: #f7fafc;
}
.site-header-nav-dropdown-2026:hover .site-header-nav-dropdown-menu-2026,
.site-header-nav-dropdown-2026:focus-within .site-header-nav-dropdown-menu-2026 {
    display: flex;
}
.site-header-nav-dropdown-2026.is-open-2026 .site-header-nav-dropdown-menu-2026 {
    display: flex;
}
.site-header-mobile-nav-section-label-2026 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #a0aec0;
    padding: 14px 16px 4px;
}
.site-header-mobile-nav-section-label-2026:first-child {
    padding-top: 6px;
}

/* ---- Footer ---- */
#footer-2026 {
    width: 100%;
    background-color: #000000;
    font-size: 13px;
    color: #fff;
    padding: 30px 20px;
    box-sizing: border-box;
}
.footer-container-2026 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-col-2026 {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.footer-links-2026 {
    align-items: flex-start;
    gap: 8px;
}
.footer-logo-2026 {
    align-items: center;
}
.footer-logo-2026 img {
    max-height: 125px;
    width: auto;
    display: block;
}
.footer-copyright-2026 {
    align-items: flex-end;
    text-align: right;
    gap: 6px;
    font-size: 11px;
}
#footer-2026 a {
    color: #fff;
    text-decoration: none;
}
#footer-2026 a:hover {
    opacity: 0.75;
}
/* Brand mention set apart from the plain copyright/legal lines above it */
.company-name-2026 {
    margin-top: 4px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff !important;
}
@media only screen and (max-width: 768px) {
    .footer-container-2026 { flex-direction: column; text-align: center; gap: 30px; }
    .footer-col-2026 { align-items: center; text-align: center; }
    .footer-logo-2026 img {
        max-height: 75px;
        width: auto;
        display: block;
        transition: max-height 0.2s ease;
    }
}
