/* =========================================
   KIRKLAND FOR PARKER — style.css
   Colors: Navy #002868 | Crimson #BF0A30 | White #FFFFFF
   Fonts:  Oswald (headings) | Open Sans (body)
   ========================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

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

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

/* ---- CSS Variables ---- */
:root {
    --navy:        #002868;
    --navy-dark:   #001540;
    --crimson:     #BF0A30;
    --crimson-dark:#8f0022;
    --white:       #ffffff;
    --light-bg:    #F8F9FA;
    --border:      #e0e0e0;
    --text:        #1a1a1a;
    --text-mid:    #555555;
    --container:   1100px;
    --radius:      4px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    line-height: 1.2;
}

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 72px 0;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: var(--navy-dark);
}

.btn-crimson {
    display: inline-block;
    background: var(--crimson);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-crimson:hover {
    background: var(--crimson-dark);
}

/* =========================================
   HERO (Home Page)
   ========================================= */
.hero {
    width: 100%;
    height: 72vh;
    min-height: 400px;
    background: url('../img/kfpsite.webp?sdf') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle dark overlay so text pops against the street photo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 60, 0.42);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-kirkland,
.hero-parker {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 7.5rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
}

.hero-for-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 8px 0;
}

.hero-line {
    flex: 1;
    max-width: 90px;
    height: 1px;
    background: #d10000;
}

.hero-for {
    font-family: 'Pinyon Script', cursive;
    font-style: italic;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #d10000;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


/* =========================================
   HOME NAV
   ========================================= */
.home-nav {
    background: var(--navy);
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--crimson);
}

.home-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 26px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.home-nav a:hover,
.home-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.home-nav .nav-donate {
    background: var(--crimson);
    color: var(--white);
    margin-left: 12px;
    padding: 18px 28px;
}

.home-nav .nav-donate:hover {
    background: var(--crimson-dark);
}

/* =========================================
   INTERIOR HEADER
   ========================================= */
.interior-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--crimson);
}

.interior-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.site-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    padding: 18px 0;
    line-height: 1.1;
}

.site-logo .logo-for {
    color: var(--crimson);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    margin: 0 4px;
}

.interior-nav {
    display: flex;
    align-items: stretch;
}

.interior-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 20px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.interior-nav a:hover,
.interior-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.interior-nav .nav-donate {
    background: var(--crimson);
    color: var(--white);
    margin-left: 8px;
}

.interior-nav .nav-donate:hover {
    background: var(--crimson-dark);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 0;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.25s;
}

/* =========================================
   INTERIOR PAGE BANNER
   ========================================= */
.page-banner {
    background: var(--navy);
    background-image: linear-gradient(135deg, #001f5c 0%, #003399 100%);
    padding: 60px 0 50px;
    text-align: center;
    border-bottom: 4px solid var(--crimson);
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}

/* =========================================
   MEET KEITH SECTION
   ========================================= */
.section-meet-keith {
    background: var(--white);
}

.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 10px;
}

.meet-keith-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: center;
}

.meet-keith-photo img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 40, 104, 0.2);
}

.meet-keith-bio h3 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--navy);
    margin-bottom: 20px;
}

.credentials {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.credential {
    display: flex;
    flex-direction: column;
    padding: 12px 18px;
    border-left: 3px solid var(--crimson);
    background: var(--light-bg);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.credential strong {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.2;
}

.credential span {
    font-size: 0.78rem;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.meet-keith-bio p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.78;
}

.meet-keith-bio .btn-primary {
    margin-top: 12px;
}

/* =========================================
   CTA SECTION
   ========================================= */
.section-cta {
    background: var(--light-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cta-card {
    background: var(--white);
    border-radius: 6px;
    padding: 52px 44px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    border-top: 5px solid transparent;
}

.cta-card h3 {
    font-size: 1.7rem;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.cta-card p {
    color: var(--text-mid);
    margin-bottom: 28px;
    font-size: 0.97rem;
    line-height: 1.72;
}

.cta-card small {
    display: block;
    color: var(--text-mid);
    font-size: 0.72rem;
    margin-top: 14px;
    letter-spacing: 0.04em;
}

.cta-donate {
    border-top-color: var(--crimson);
}

.cta-donate h3 {
    color: var(--crimson);
}

.cta-volunteer {
    border-top-color: var(--navy);
}

.cta-volunteer h3 {
    color: var(--navy);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 40px 24px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--white);
}

.footer-social svg {
    fill: currentColor;
    flex-shrink: 0;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-paid {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =========================================
   INTERIOR PAGE CONTENT
   ========================================= */
.section-content {
    background: var(--white);
}

.section-content h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--navy);
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.section-content > .container > p {
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 640px;
    font-size: 1.02rem;
}

.placeholder-block {
    background: var(--light-bg);
    border: 2px dashed var(--border);
    border-radius: 6px;
    padding: 56px 40px;
    text-align: center;
    color: var(--text-mid);
}

.placeholder-block strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

/* ---- Forms ---- */
.form-wrap {
    max-width: 640px;
}

.form-wrap h2 {
    margin-bottom: 8px;
}

.contact-direct {
    margin-bottom: 28px;
    color: var(--text-mid);
    font-size: 0.95rem;
}

.contact-direct a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-direct a:hover {
    color: var(--crimson);
}

.form-wrap > p {
    color: var(--text-mid);
    margin-bottom: 32px;
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0, 40, 104, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-notice {
    background: #e8f0e8;
    border-left: 4px solid #2a7a2a;
    border-radius: var(--radius);
    padding: 14px 18px;
    color: #1e5c1e;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .meet-keith-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .meet-keith-photo img {
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 52px 0;
    }

    .interior-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--navy);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .interior-nav.open {
        display: flex;
    }

    .interior-nav a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .interior-nav .nav-donate {
        margin-left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .interior-header {
        position: relative;
    }

    .interior-header-inner {
        flex-wrap: wrap;
        position: relative;
    }

    .hero {
        height: 56vw;
        min-height: 260px;
    }

    .home-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .home-nav a {
        padding: 15px 18px;
        font-size: 0.82rem;
    }

    .credentials {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .cta-card {
        padding: 36px 24px;
    }

    .page-banner {
        padding: 44px 0 36px;
    }
}
