:root {
    --black: #050505;
    --soft-black: #111111;
    --gold: #c89a52;
    --dark-gold: #7b4a1c;
    --light-gold: #ead0a4;
    --white: #ffffff;
    --off-white: #f7f4ef;
    --gray: #6c6c6c;
    --border: rgba(200, 154, 82, 0.3);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--soft-black);
    line-height: 1.7;

    background: #000 url("images/logobg.png") center center no-repeat fixed;
    background-size: cover;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

section {
    scroll-margin-top: 95px;
}

/* =========================
   GENERAL LAYOUT
========================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-dark {
    color: var(--white);
    background: var(--black);
}

.section-light {
    background: var(--off-white);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.section-heading p {
    color: var(--gray);
    font-size: 1.05rem;
}

.section-dark .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

/* =========================
   BUTTONS
========================= */

.button {
    display: inline-flex;
    min-height: 54px;
    padding: 13px 28px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--gold);
    background: var(--gold);
    color: var(--black);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.button:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.button-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.button-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.button-dark-outline {
    background: transparent;
    border-color: var(--black);
    color: var(--black);
}

.button-dark-outline:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

/* =========================
   TOP BAR
========================= */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;

    padding: 9px 20px;
    background: var(--dark-gold);
    color: var(--white);
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(0, 0, 0, .95);

    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);

    border-bottom: 1px solid rgba(255,255,255,.08);
    

   
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-image {
    height: 65px;      /* Adjust as needed */
    width: auto;
    display: block;
}

.logo-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: "Anton", Impact, sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
	gap: 38px;
}

.logo-text {
    line-height: 1;
}

.logo-text strong {
    display: block;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 900;   /* or 700 if you prefer */
    letter-spacing: 1px;
    color: #fff;
}
.logo-text small {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-nav a {
    position: relative;
    display: block;
    padding: 34px 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--white);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.header-donate {
    min-height: 44px;
    padding: 8px 18px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: var(--white);
    font-size: 1.3rem;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.72);
    transition:
        visibility 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu.open {
    visibility: visible;
    opacity: 1;
}

.mobile-panel {
    width: min(390px, 88%);
    height: 100%;
    padding: 28px;
    overflow-y: auto;
    background: var(--black);
    color: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open .mobile-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
}

.mobile-close {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    font-size: 1.3rem;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-donate {
    width: 100%;
    margin-top: 30px;
}

/* =========================
   HERO SECTION
========================= */
.hero-video {
    width: 100%;
    background: #000;
    overflow: hidden;
    line-height: 0;
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
}


.hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.82) 48%,
            rgba(0, 0, 0, 0.38) 100%
        ),
        url("images/father-inc-hero.jpg") center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(200, 154, 82, 0.2);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    right: 12%;
    bottom: -300px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(200, 154, 82, 0.16);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 110px 0;
}

.hero-kicker {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 14px;
    align-items: center;
    gap: 9px;
    border-left: 4px solid var(--gold);
    background: rgba(255, 255, 255, 0.08);
    color: var(--light-gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 20px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 0.9;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--gold);
}
#about h2 {
    color: #ffffff;
}

.hero-tagline {
    margin-bottom: 24px;
    color: var(--light-gold);
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    font-weight: 700;
    font-style: italic;
}

.hero-description {
    max-width: 720px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-pillars {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.72);
}

.hero-pillar {
    padding: 23px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-pillar:last-child {
    border-right: 0;
}

.hero-pillar i {
    margin-right: 8px;
    color: var(--gold);
}

.hero-pillar strong {
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* =========================
   IMPACT STRIP
========================= */

.impact-strip {
    padding: 34px 0;
    background: var(--gold);
    color: var(--black);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-item {
    padding: 5px 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    text-align: center;
}

.impact-item:last-child {
    border-right: 0;
}

.impact-item strong {
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================
   WHO WE ARE
========================= */

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 75px;
}

.image-frame {
    position: relative;
}

.image-frame img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-frame::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -22px;
    left: -22px;
    width: 55%;
    height: 55%;
    border: 8px solid var(--gold);
}

.content-block h2 {
    margin-bottom: 24px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(2.7rem, 6vw, 4.7rem);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.content-block p {
    margin-bottom: 18px;
    color: var(--gray);
}

.highlight-quote {
    margin-top: 30px;
    padding: 22px 25px;
    border-left: 5px solid var(--gold);
    background: var(--black);
    color: var(--white);
    font-size: 1.12rem;
    font-weight: 700;
}

/* =========================
   MISSION
========================= */

.mission-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 65px;
}

.mission-title {
    padding: 55px 45px;
    border: 1px solid var(--border);
    background:
        linear-gradient(
            145deg,
            rgba(200, 154, 82, 0.17),
            rgba(255, 255, 255, 0.02)
        );
}

.mission-title h2 {
    margin-bottom: 20px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(3.4rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.mission-title h2 span {
    color: var(--gold);
}

.mission-title p {
    color: rgba(255, 255, 255, 0.7);
}

.mission-copy p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.06rem;
}

/* =========================
   PROGRAMS
========================= */

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.program-card {
    position: relative;
    min-height: 360px;
    padding: 38px 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.program-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(200, 154, 82, 0.12);
}

.program-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.program-number {
    display: block;
    margin-bottom: 18px;
    color: rgba(0, 0, 0, 0.12);
    font-family: "Anton", Impact, sans-serif;
    font-size: 3.5rem;
    line-height: 1;
}

.program-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--black);
    font-size: 1.55rem;
}

.program-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.program-card p {
    position: relative;
    z-index: 2;
    color: var(--gray);
    font-size: 0.94rem;
}

/* =========================
   STRENGTHENING FAMILIES
========================= */

.families-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.88)
        ),
        url("images/father-inc-family.jpg") center / cover no-repeat;
}

.families-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.families-content h2 {
    margin-bottom: 18px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.families-script {
    margin-bottom: 25px;
    color: var(--gold);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
}

.families-content p {
    max-width: 790px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.77);
}

/* =========================
   GET INVOLVED
========================= */

.involved-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: stretch;
    gap: 30px;
}

.involved-content,
.donation-card {
    padding: 55px;
}

.involved-content {
    background: var(--black);
    color: var(--white);
}

.involved-content h2 {
    margin-bottom: 20px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.involved-content > p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
}

.involved-list {
    display: grid;
    gap: 13px;
}

.involved-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.involved-list i {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
}

/* =========================
   DONATION CARD
========================= */

.donation-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid var(--gold);
    background: var(--off-white);
}

.donation-card h3 {
    margin-bottom: 15px;
    font-family: "Anton", Impact, sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.donation-card p {
    margin-bottom: 25px;
    color: var(--gray);
}

.cash-app {
    display: flex;
    margin-bottom: 25px;
    padding: 20px;
    align-items: center;
    gap: 15px;
    background: var(--black);
    color: var(--white);
}

.cash-app i {
    color: var(--gold);
    font-size: 2rem;
}

.cash-app small {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cash-app strong {
    display: block;
    color: var(--gold);
    font-size: 1.35rem;
}

/* =========================
   CONTACT
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
}

.contact-content h2 {
    margin-bottom: 22px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.contact-content > p {
    margin-bottom: 30px;
    color: var(--gray);
}

.contact-list {
    display: grid;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--black);
}

.contact-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item a {
    overflow-wrap: anywhere;
}

.contact-item a:hover {
    color: var(--dark-gold);
}

/* =========================
   CONTACT FORM
========================= */

.contact-form {
    padding: 42px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    min-height: 52px;
    padding: 12px 15px;
    border: 1px solid #d4d4d4;
    border-radius: 0;
    background: var(--white);
    color: var(--black);
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 154, 82, 0.12);
}

textarea.form-control {
    min-height: 155px;
    resize: vertical;
}

.form-message {
    display: none;
    margin-top: 15px;
    color: #26733c;
    font-weight: 700;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 75px 0 25px;
    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 0.9fr;
    gap: 55px;
    padding-bottom: 50px;
}

.footer-description {
    max-width: 480px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.63);
}

.footer-heading {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.68);
    overflow-wrap: anywhere;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.social-links a:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.footer-bottom {
    display: flex;
    padding-top: 25px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.47);
    font-size: 0.78rem;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {
    .desktop-nav,
    .header-donate {
        display: none;
    }

    .menu-button {
        display: grid;
        place-items: center;
    }

    .program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-column,
    .mission-grid,
    .involved-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mission-title {
        max-width: 760px;
    }

    .image-frame {
        max-width: 760px;
    }

    .contact-content {
        max-width: 760px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {
    .section {
        padding: 75px 0;
    }

    .top-bar {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }

    .header-inner {
        min-height: 76px;
    }

    .hero {
        min-height: 680px;
        background-position: 62% center;
    }

    .hero-content {
        padding: 85px 0;
    }

    .hero-pillars,
    .impact-grid,
    .program-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-pillar {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero-pillar:last-child {
        border-bottom: 0;
    }

    .impact-item {
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

    .impact-item:last-child {
        border-bottom: 0;
    }

    .image-frame img {
        min-height: 390px;
    }

    .mission-title {
        padding: 40px 26px;
    }

    .involved-content,
    .donation-card {
        padding: 38px 25px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 520px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .logo-mark {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .logo-text strong {
        font-size: 1.15rem;
    }

    .logo-text small {
        display: none;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .section-heading h2,
    .content-block h2,
    .contact-content h2 {
        font-size: 2.8rem;
    }

    .mission-title h2,
    .involved-content h2,
    .families-content h2 {
        font-size: 3.2rem;
    }

    .program-card {
        min-height: auto;
    }

    .donation-card h3 {
        font-size: 2.4rem;
    }
}



/* =========================
   FIX FOOTER POSITION
========================= */

body {
    display: block !important;
}

main {
    display: block !important;
    width: 100%;
}

section {
    width: 100%;
    clear: both;
}

.site-footer,
footer {
    position: relative;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    clear: both !important;
    margin: 0 !important;
}

/* Keep footer content centered */
.site-footer .container,
footer .container {
    width: min(1400px, calc(100% - 80px));
    max-width: 1400px;
    margin: 0 auto !important;
    padding-left: 40px;
    padding-right: 40px;
}

/* Footer columns */
.footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr !important;
    gap: 50px;
    width: 100%;
    margin: 0 auto !important;
    align-items: start !important;
    text-align: left !important;
}

/* Prevent footer text from breaking into tiny columns */
.footer-grid > * {
    width: 100%;
    min-width: 0;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
    word-break: normal;
    overflow-wrap: normal;
}

/* Mobile footer */
@media (max-width: 900px) {
    .site-footer .container,
    footer .container {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}


/* =========================
   BOARD, EVENTS & FINANCIAL REPORT
========================= */
.board-section {
    background: var(--white);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.board-card {
    padding: 34px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--off-white);
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.board-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.board-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    font-size: 1.65rem;
}

.board-card h3 {
    margin-bottom: 7px;
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
}

.board-card span {
    color: var(--dark-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.events-section .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.event-card {
    display: grid;
    grid-template-columns: 125px 1fr;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.045);
}

.event-date {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--gold);
    color: var(--black);
    text-align: center;
}

.event-date strong {
    font-family: "Anton", Impact, sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
}

.event-date span {
    margin-top: 6px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.event-details {
    padding: 28px;
}

.event-type {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.event-details h3 {
    margin: 8px 0 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.event-details p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

.financial-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 65px;
}

.financial-content h2 {
    margin-bottom: 22px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.financial-content p {
    margin-bottom: 18px;
    color: var(--gray);
}

.report-list {
    display: grid;
    gap: 16px;
}

.report-item {
    display: flex;
    padding: 24px;
    align-items: center;
    gap: 18px;
    border-left: 5px solid var(--gold);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.report-item i {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    background: var(--black);
    color: var(--gold);
    font-size: 1.3rem;
}

.report-item h3 {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.report-item p {
    color: var(--gray);
    font-size: 0.82rem;
    font-weight: 700;
}

@media (max-width: 1050px) {
    .board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .events-grid,
    .financial-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .board-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-date {
        min-height: 110px;
    }
}


.desktop-nav ul {
    gap: 18px;
}

.desktop-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    white-space: nowrap;
}


@media (max-width:768px){

.site-header{
    height:95px;
}

.hero-video{
    padding-top:95px;
    box-sizing:border-box;
}

}


.board-card{
    background:#fff;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.3s;
}

.board-card:hover{
    transform:translateY(-8px);
}

.board-photo{
    width:100%;
    aspect-ratio:1/2;
    object-fit:cover;
    display:block;
}	

.board-card img{
    margin-bottom: 	8px;
}

.board-card h3{
    margin: 0 0 2px;
    line-height: 1.05;
}

.board-card .board-title{
    margin: 0;
    line-height: 1;
}
/* =========================
   BOARD OF DIRECTORS
========================= */

.board-section{
    background:#f7f4ef;
    padding:100px 0;
}

.board-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.board-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .35s ease;
    border:1px solid rgba(0,0,0,.06);
    text-align:center;
}

.board-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
}

.board-card:focus{
    outline:none;
    transform:translateY(-10px);
    box-shadow:0 0 0 4px rgba(200,154,82,.35);
}

.board-photo{
    width:100%;
    aspect-ratio:1/2;
    object-fit:cover;
    display:block;
}

.board-card-content{
    padding:28px 24px 10;
}

.board-card-content h3{
    margin:2px 0 2px;
    font-size:14px;
    font-weight:800;
    color:#111;
    line-height:1.15;
}

.board-card-content span{
    display:block;
    color:#c89a52;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size: 12px;
    margin-bottom:10px;
}

.board-card-content p{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin:0;
    padding:10px 22px;
    border:2px solid #c89a52;
    border-radius:40px;
    color:#c89a52;
    font-size:.72rem;
    font-weight:800;
    letter-spacing:1.4px;
    text-transform:uppercase;
    transition:.3s;
}

.board-card:hover .board-card-content p{
    background:#c89a52;
    color:#fff;
}

/* =========================
   BOARD BIO MODAL
========================= */

.board-modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:30px;
    background:rgba(0,0,0,.8);
    backdrop-filter:blur(6px);
    z-index:9999;
}

.board-modal.active{
    display:flex;
}

.board-modal-content{
    position:relative;
    width:min(900px,100%);
    max-height:90vh;
    overflow-y:auto;
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.board-modal-close{
    position:absolute;
    top:20px;
    right:20px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:1.2rem;
    cursor:pointer;
}

.board-modal-header{
    display:flex;
    gap:30px;
    align-items:center;
    margin-bottom:30px;
}

.board-modal-photo{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #c89a52;
    flex-shrink:0;
}

.board-modal-name{
    font-size:2.2rem;
    font-weight:900;
    margin-bottom:6px;
    color:#111;
}

.board-modal-title{
    color:#c89a52;
    font-size:.95rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.board-modal-body{
    color:#555;
    font-size:1rem;
    line-height:1.85;
    white-space:pre-line;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){

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

}

@media (max-width:768px){

    .board-section{
        padding:70px 0;
    }

    .board-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .board-card-content{
        padding:24px;
    }

    .board-modal-content{
        padding:25px;
    }

    .board-modal-header{
        flex-direction:column;
        text-align:center;
    }

    .board-modal-photo{
        width:140px;
        height:140px;
    }

    .board-modal-name{
        font-size:1.8rem;
    }

}


body.modal-open {
    overflow: hidden;
}

.board-card {
    cursor: pointer;
}

.board-card-content p {
    pointer-events: none;
}

/* Popup overlay */
.board-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;

    display: flex;
    padding: 30px;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    opacity: 0;

    background: rgba(0, 0, 0, 0.84);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    transition:
        visibility 0.3s ease,
        opacity 0.3s ease;
}

.board-modal.active {
    visibility: visible;
    opacity: 1;
}

/* Popup window */
.board-modal-content {
    position: relative;

    width: min(900px, 100%);
    max-height: 90vh;
    padding: 45px;
    overflow-y: auto;

    border: 2px solid var(--gold);
    background: var(--white);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);

    transform: translateY(30px) scale(0.96);

    transition: transform 0.3s ease;
}

.board-modal.active .board-modal-content {
    transform: translateY(0) scale(1);
}

/* Close button */
.board-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border: 0;
    background: var(--black);
    color: var(--white);

    font-size: 1.2rem;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.board-modal-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

/* Member information */
.board-modal-header {
    display: flex;
    margin-bottom: 30px;
    padding-right: 50px;
    align-items: center;
    gap: 30px;
}

.board-modal-photo {
    width: 190px;
    height: 190px;
    flex: 0 0 190px;

    border: 5px solid var(--gold);
    border-radius: 50%;

    object-fit: cover;
    object-position: center top;
}

.board-modal-name {
    margin: 0 0 8px;

    color: var(--black);
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.board-modal-title {
    display: block;

    color: var(--dark-gold);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.board-modal-body {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);

    color: var(--gray);
    font-size: 1rem;
    line-height: 1.85;

    white-space: pre-line;
}

/* Mobile popup */
@media (max-width: 768px) {

    .board-modal {
        padding: 15px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .board-modal-content {
        margin: 20px 0;
        max-height: none;
        padding: 65px 24px 30px;
    }

    .board-modal-header {
        padding-right: 0;
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .board-modal-photo {
        width: 145px;
        height: 145px;
        flex-basis: 145px;
    }

    .board-modal-name {
        font-size: 2.2rem;
    }

    .board-modal-body {
        font-size: 0.94rem;
        line-height: 1.75;
    }

}