﻿* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* Header */

.site-header {
    background: white;
    border-bottom: 1px solid #e5e8ee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    background: #173b67;
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 11px 13px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 16px;
}

.brand-text span {
    font-size: 14px;
    color: #667085;
}

nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

nav a:hover {
    color: #1d5d92;
}

.join-button {
    background: #c49a45;
    color: white !important;
    padding: 11px 17px;
}


/* Hero */

.hero {
    background:
            linear-gradient(
                    110deg,
                    rgba(12, 38, 68, 0.98),
                    rgba(22, 72, 113, 0.93)
            );
    color: white;
    padding: 105px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 70px;
    align-items: center;
}

.eyebrow,
.section-label,
.section-heading span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c49a45;
}

.hero h1 {
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.04;
    max-width: 780px;
    margin: 15px 0 25px;
}

.hero p {
    font-size: 20px;
    max-width: 690px;
    color: #dce8f3;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.primary-button,
.secondary-button,
.light-button {
    display: inline-block;
    text-decoration: none;
    padding: 14px 24px;
    font-weight: 700;
}

.primary-button {
    background: #c49a45;
    color: white;
}

.secondary-button {
    border: 1px solid rgba(255,255,255,.55);
    color: white;
}

.hero-card {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.2);
    padding: 38px;
}

.hero-card span {
    color: #d8b76d;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.hero-card strong {
    display: block;
    font-size: 30px;
    line-height: 1.2;
    margin: 13px 0;
}

.hero-card p {
    font-size: 15px;
}


/* General sections */

section {
    padding: 85px 0;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.section-heading.left {
    text-align: left;
    margin-left: 0;
}

.section-heading h2,
.impact-section h2,
.membership-section h2,
.contact-section h2 {
    font-size: 38px;
    line-height: 1.2;
    margin: 10px 0 18px;
}

.section-heading p {
    color: #657083;
}


/* Mission */

.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    border: 1px solid #e3e6eb;
    padding: 34px;
    background: white;
}

.feature-number {
    font-weight: 800;
    color: #c49a45;
}

.feature-card h3 {
    font-size: 25px;
}


/* Impact */

.impact-section {
    background: #f3f6f8;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1.5fr .65fr .65fr;
    gap: 50px;
    align-items: center;
}

.impact-stat {
    border-left: 4px solid #c49a45;
    padding-left: 24px;
}

.impact-stat strong {
    display: block;
    color: #173b67;
    font-size: 38px;
}

.impact-stat span {
    color: #667085;
}


/* Advocacy */

.advocacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advocacy-card {
    border-top: 4px solid #173b67;
    background: #f7f8fa;
    padding: 30px;
}

.advocacy-card h3 {
    font-size: 23px;
}

.status {
    display: inline-block;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.status.active {
    background: #e4f4e8;
    color: #246638;
}

.status.monitoring {
    background: #fff0cc;
    color: #775510;
}

.text-link {
    display: inline-block;
    margin-top: 30px;
    color: #173b67;
    font-weight: bold;
}


/* Membership */

.membership-section {
    background: #173b67;
    color: white;
}

.membership-wrap {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 80px;
    align-items: center;
}

.membership-section p {
    color: #d5e1ed;
}

.membership-benefits {
    background: rgba(255,255,255,.08);
    padding: 35px;
}

.membership-benefits div {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}


/* News */

.news-section {
    background: #f7f8fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: white;
    border: 1px solid #e4e7ec;
    padding: 30px;
}

.news-date {
    color: #c49a45;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
}

.news-card h3 {
    font-size: 22px;
}

.news-card a {
    color: #173b67;
    font-weight: bold;
}


/* Resources */

.resource-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.resource-links a {
    text-decoration: none;
    border: 1px solid #dfe3e8;
    padding: 25px;
    font-weight: bold;
    text-align: center;
}

.resource-links a:hover {
    background: #173b67;
    color: white;
}


/* Contact */

.contact-section {
    background: #c49a45;
    color: white;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.light-button {
    background: white;
    color: #173b67;
    white-space: nowrap;
}


/* Footer */

.site-footer {
    background: #0d2239;
    color: #cbd5df;
    padding: 45px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr;
    gap: 30px;
    align-items: center;
}

.site-footer strong {
    color: white;
    font-size: 22px;
}

.site-footer a {
    color: white;
}


/* Mobile */

@media (max-width: 900px) {

    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
    }

    nav {
        flex-wrap: wrap;
        gap: 13px;
    }

    .hero-content,
    .impact-grid,
    .membership-wrap {
        grid-template-columns: 1fr;
    }

    .three-column,
    .advocacy-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .resource-links {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .resource-links {
        grid-template-columns: 1fr;
    }

}
/* ==========================================================
   NYLBA LANGUAGE SELECTOR
   ========================================================== */

.language-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-icon {
    font-size: 16px;
}

.language-menu select {
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    padding: 8px 6px;
    font-size: 13px;
    cursor: pointer;
    color: #172033;
}

.language-menu select:focus {
    outline: 2px solid #c49a45;
    outline-offset: 1px;
}

@media (max-width: 900px) {
    .language-menu {
        width: 100%;
        margin-top: 5px;
    }

    .language-menu select {
        min-width: 150px;
    }
}
/* ==========================================================
   NYLBA OFFICIAL HEADER LOGO
   ========================================================== */

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .brand-logo {
        width: 56px;
        height: 56px;
    }
}
/* ==========================================================
   NYLBA HEADER BRAND LOCKUP
   ========================================================== */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 66px;
    height: 66px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.05;
    min-width: 175px;
}

.brand-acronym {
    display: block;
    font-size: 31px;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #102b49;
    margin-bottom: 5px;
}

.brand-line {
    display: block;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 700;
    color: #172033;
}

.brand-subline {
    color: #687386;
    font-weight: 500;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .brand-logo {
        width: 56px;
        height: 56px;
    }

    .brand-acronym {
        font-size: 26px;
    }

    .brand-line {
        font-size: 12px;
    }
}


/* ==========================================================
   NYLBA BRAND TEXT CENTERING
   ========================================================== */

.brand-text {
    text-align: center;
    align-items: center;
}

.brand-acronym {
    width: 100%;
    text-align: center;
}

.brand-line {
    width: 100%;
    text-align: center;
}


/* ==========================================================
   NYLBA BRAND ACRONYM WIDTH
   Spread NYLBA to match association name below
   ========================================================== */

.brand-acronym {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 31px;
    font-weight: 900;
    letter-spacing: 8px;
    padding-left: 8px;
    box-sizing: border-box;
}


/* ==========================================================
   NYLBA BRAND LOCKUP - MATCH REFERENCE
   ========================================================== */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1;
    min-width: 175px;
}

.brand-acronym {
    display: block;
    width: auto;
    margin: 0 0 3px 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: 0.5px;

    color: #142c49;
    text-align: left;
}

.brand-line {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: 0;

    color: #172033;
    text-align: left;
}

.brand-subline {
    margin-top: 2px;
    font-weight: 400;
    color: #737b89;
}

@media (max-width: 900px) {

    .brand-logo {
        width: 56px;
        height: 56px;
    }

    .brand-acronym {
        font-size: 30px;
    }

    .brand-line {
        font-size: 13px;
    }
}


/* ==========================================================
   NYLBA HEADER FINAL SIZE / ALIGNMENT
   ========================================================== */

.brand-acronym {
    display: block;
    width: 100%;
    margin: 0 0 4px 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    line-height: 0.90;
    font-weight: 900;
    letter-spacing: 1px;

    color: #142c49;
    text-align: center;
}

.brand-text {
    min-width: 190px;
}

.brand-line {
    font-size: 14px;
    line-height: 1.12;
}

@media (max-width: 900px) {
    .brand-acronym {
        font-size: 34px;
    }
}


/* ==========================================================
   NYLBA BRAND - LARGE CENTERED WORDMARK
   ========================================================== */

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 205px;
}

.brand-acronym {
    display: block;
    width: 100%;
    margin: 0 0 5px 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;
    line-height: 0.88;
    font-weight: 900;
    letter-spacing: 0;

    color: #142c49;
    text-align: center;
}

.brand-line {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.12;
    text-align: center;
}

.brand-subline {
    margin-top: 2px;
    color: #737b89;
    font-weight: 400;
}

@media (max-width: 900px) {
    .brand-text {
        min-width: 175px;
    }

    .brand-acronym {
        font-size: 40px;
    }

    .brand-line {
        font-size: 13px;
    }
}


/* ==========================================================
   NYLBA EXTRA LARGE CENTERED WORDMARK
   ========================================================== */

.brand-text {
    min-width: 260px;
    align-items: center;
    text-align: center;
}

.brand-acronym {
    width: 100%;
    font-size: 96px;
    line-height: 0.78;
    font-weight: 900;
    letter-spacing: -3px;
    text-align: center;
    margin: 0 0 10px 0;
    padding: 0;
}

.brand-line {
    width: 100%;
    text-align: center;
}


/* ==========================================================
   REVERT EXTRA LARGE NYLBA WORDMARK
   Return to previous centered size
   ========================================================== */

.brand-text {
    min-width: 205px;
    align-items: center;
    text-align: center;
}

.brand-acronym {
    width: 100%;
    font-size: 48px;
    line-height: 0.88;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
    margin: 0 0 5px 0;
    padding: 0;
}

.brand-line {
    width: 100%;
    text-align: center;
}


/* NYLBA WORDMARK IMAGE */

.brand-text-image-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-wordmark {
    display: block;
    width: 175px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .brand-wordmark {
        width: 150px;
    }
}

