
/* ===================================================
   PACFR — Paws And Claws Feline Rescue
   MAIN.CSS — Single Master Stylesheet
   =================================================== */

/*  =================
    UPDATED: 4/26/26  
    =================*/
   

:root {
    /* ── LOCKED PACFR BRAND PALETTE ── */
    --navy:        #1E3A8A;
    --navy-dark:   #132966;
    --navy-light:  #2850bf;
    --red:         #EE4444;
    --red-light:   #f26868;
    --brown:       #6B4226;
    --teal:        #246B6B;
    --cream:       #F5E6CC;
    --cream-dark:  #e8d0a8;
    --orange:      #D9822B;
    --white:       #ffffff;
    --text:        #000000;
    --text-muted:  #666666;
    --border:      #e0d8cc;

    /* ── Compatibility aliases used by older/newer page files ── */
    --pacfr-blue:  var(--navy);
    --pacfr-navy:  var(--navy);
    --pacfr-red:   var(--red);
    --pacfr-cream: var(--cream);
    --pacfr-ink:   #1E2430;
    --pacfr-muted: #5D6673;
    --pacfr-line:  #D7DDE7;
    --pacfr-white: #FFFFFF;
    --pacfr-bg:    #F7F8FB;

    --color-primary:      rgb(26, 44, 64);
    --color-primary-dark: rgb(18, 30, 44);
    --color-accent:       rgb(54, 110, 109);
    --color-accent-soft:  rgb(223, 239, 237);
    --color-warm:         rgb(198, 146, 84);
    --color-alert:        rgb(154, 42, 42);
    --color-alert-soft:   rgb(248, 232, 232);
    --color-bg:           rgb(247, 248, 250);
    --color-surface:      rgb(255, 255, 255);
    --color-surface-alt:  rgb(239, 243, 247);
    --color-border:       rgb(213, 220, 228);
    --color-text:         rgb(31, 37, 43);
    --color-text-soft:    rgb(84, 92, 102);
    --color-link:         rgb(30, 82, 126);

    --accent:       var(--teal);
    --accent-dark:  #1d5735;
    --accent-light: #5BAF7A;
    --charcoal:     #222222;
    --font-display: Calibri, Arial, Helvetica, sans-serif;

    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
    --radius: 16px;
    --radius-small: 10px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --max-width: 1180px;
    --site-width: 1180px;
}
* { box-sizing: border-box; }

body {
    margin: 0; padding: 0;
    background: var(--cream);
    font-family: Calibri, Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* ══ PART 1 — TOP BAR (rotating / fading) ══ */
.top-bar {
    background: var(--navy-dark);
    color: #aec4e0;
    font-size: .8em;
    text-align: center;
    padding: 0 20px;
    letter-spacing: .5px;
    height: 34px;
    overflow: hidden;
    position: relative;
}
.top-bar-messages {
    position: relative;
    height: 100%;
}
.tb-msg {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .7s ease;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tb-msg.active {
    opacity: 1;
    pointer-events: auto;
}
.tb-msg.flash {
    animation: tb-flash .6s ease;
}
@keyframes tb-flash {
    0%   { background: rgba(217,130,43,.18); }
    100% { background: transparent; }
}
.top-bar a { color: var(--orange); text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }

/* ====== Paws And Claws top header START ===== */
/* ══ PART 2 — HEADER ══ */
/* Modified 4-30-26     */
header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    color: var(--white);
    padding: 14px 40px 12px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
header::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(217,130,43,.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;

}
.header-logo {
    width: 95px; 
    height: 95px;

}
/* ====== Paws And Claws top header END ===== */


/* =========================================================
   HEADER FONT CONTROL — PACFR ORGANIZATION NAME

   PAGE / FILE USED BY:
   - header.php
   - Any page that includes header.php

   HTML TARGETS FROM header.php:
   - <span class="org-script">Paws And Claws</span>
   - <span class="org-sub"> Feline Rescue, Inc.</span>

   IMPORTANT:
   - This block must be the ONLY place where .org-script and .org-sub
     font-family are defined.
   - Duplicate .org-script rules later in the file can override this.
   - "Lucida Handwriting" is a Windows font. If a browser/device does not
     have it installed, it will fall back to Segoe Script, Brush Script MT,
     then cursive.
   ========================================================= */

/* Controls the full line holding both name parts. */
.org-name {
    line-height: 1.1;
    margin-bottom: 4px;
}

/* Controls ONLY: "Paws And Claws" */
.org-script {
    font-family: "Lucida Handwriting", "Segoe Script", "Brush Script MT", cursive !important;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy) !important;
}

/* Controls ONLY: "Feline Rescue, Inc." */
.org-sub {
    font-family: "Bahnschrift Light", Bahnschrift, "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red) !important;
}

.header-text { text-align: left; }
.header-text h1 {
    margin: 0 0 3px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.85em;
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0,0,0,.3);
    letter-spacing: .4px;
}
.header-tagline {
    margin: 0 0 10px;
    font-size: .9em;
    font-weight: 300;
    color: #aec4e0;
    letter-spacing: .8px;
}
.header-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.hbadge {
    font-size: .68em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    color: #d6e8ff;
}
.hbadge.gold { background: rgba(217,130,43,.22); border-color: var(--orange); color: var(--orange); }

/* ══ PART 5 — FOOTER ══ */
footer {
    background: var(--navy-dark);
    color: #8aa5c4;
    text-align: center;
    padding: 28px 20px;
    font-size: .82em;
    line-height: 2;
}
footer strong { color: #c8dff5; }
footer a { color: var(--orange); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 18px;
    margin-bottom: 14px;
    font-size: .95em;
}

/* ══ PAGE SHARED ══ */
.page-hero {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
    padding: 52px 24px 42px;
    border-bottom: 1px solid #d4c8b0;
}
.pill {
    display: inline-block;
    background: #fff8e6;
    border: 1px solid var(--orange);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .72em;
    color: #7a4a10;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.page-hero h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2em;
    color: var(--navy);
    margin: 0 0 12px;
}
.page-hero p {
    font-size: 1em;
    line-height: 1.78;
    max-width: 640px;
    margin: 0 auto;
    color: #555;
    font-weight: 300;
}

.content-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 28px;
}

/* WIP box */
.wip-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.wip-icon { font-size: 3em; margin-bottom: 16px; }
.wip-box h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.4em;
    color: var(--navy);
    margin: 0 0 10px;
}
.wip-box p {
    font-size: .95em;
    line-height: 1.75;
    color: #555;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 24px;
}
.wip-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.btn-navy {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: .84em;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: background .2s;
}
.btn-navy:hover { background: var(--navy-light); }
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: .84em;
    letter-spacing: .8px;
    text-transform: uppercase;
    border: 2px solid var(--navy);
    transition: background .2s;
}
.btn-outline:hover { background: var(--cream-dark); }

/* Section heading */
.sec-head { font-family: Georgia, 'Times New Roman', serif; font-size: 1.65em; color: var(--navy); margin: 0 0 6px; }
.sec-rule { width: 55px; height: 3px; background: var(--red); margin: 0 0 24px; }

/* Cards grid */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 18px; margin-bottom: 48px; }
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 18px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.card-icon { display: inline-block; font-size: 1.35em; margin-bottom: 0; margin-right: 7px; vertical-align: middle; line-height: 1; }
.card h3 { display: inline; font-family: Georgia, 'Times New Roman', serif; font-size: 1.05em; color: var(--navy); vertical-align: middle; }
.card p { display: block; margin: 10px 0 12px; font-size: .92em; line-height: 1.65; color: #555; font-weight: 300; }
.card a { font-size: .82em; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--red); text-decoration: none; }
.card a:hover { text-decoration: underline; }

/* Two-col layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 48px; }
@media(max-width:660px) { .two-col { grid-template-columns: 1fr; } }

.panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.panel h3 { margin: 0 0 6px; font-family: Georgia, 'Times New Roman', serif; font-size: 1.18em; color: var(--navy); }
.panel-rule { width: 40px; height: 2px; background: var(--orange); margin-bottom: 14px; }
.panel p { font-size: .92em; line-height: 1.7; color: #555; margin: 0 0 12px; font-weight: 300; }
.panel ul { margin: 0 0 16px; padding-left: 20px; }
.panel ul li { font-size: .92em; line-height: 1.85; color: #555; font-weight: 300; }
.panel a { color: var(--navy); }
.panel a:hover { color: var(--red); }

/* Dark panel (forum) */
.panel-dark {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-color: var(--navy-dark);
    color: var(--white);
}
.panel-dark h3 { color: var(--white); }
.panel-dark p { color: #aec4e0; }
.panel-dark .panel-rule { background: var(--orange); }
.forum-cat {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    color: #c8dff5;
    font-size: .88em;
}
.forum-cat:last-of-type { border-bottom: none; }
.forum-cat:hover { color: var(--white); }
.forum-cat .fc-ct { margin-left: auto; font-size: .76em; color: rgba(255,255,255,.35); }
.btn-forum {
    display: inline-block;
    background: var(--orange);
    color: var(--navy-dark);
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .84em;
    letter-spacing: .8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
    margin-top: 14px;
}
.btn-forum:hover { background: #e8962f; }

/* Stats strip */
.stats-strip { background: var(--navy); display: flex; justify-content: center; flex-wrap: wrap; }
.stat-item { padding: 20px 38px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: Georgia, 'Times New Roman', serif; font-size: 1.9em; font-weight: 700; color: var(--orange); display: block; }
.stat-lbl { font-size: .72em; letter-spacing: 1px; text-transform: uppercase; color: #aec4e0; margin-top: 2px; }

/* Emergency bar */
.emergency-bar {
    background: linear-gradient(90deg, #8b1a1a 0%, var(--red) 50%, #8b1a1a 100%);
    color: var(--white);
    padding: 16px 28px;
}
.emergency-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.emr-icon { font-size: 1.9em; flex-shrink: 0; }
.emr-text { flex: 1; min-width: 240px; }
.emr-text strong { font-size: 1.03em; display: block; }
.emr-text span { font-size: .87em; color: #ffd0d0; font-weight: 300; }
.emr-btn {
    background: var(--white); color: var(--red);
    padding: 10px 20px; border-radius: 5px;
    font-weight: 700; font-size: .86em; letter-spacing: .8px; text-transform: uppercase;
    text-decoration: none; white-space: nowrap; flex-shrink: 0;
    transition: background .2s;
}
.emr-btn:hover { background: #ffe0e0; }

/* Hero section (home) */
.home-hero {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
    padding: 64px 40px 52px;
    border-bottom: 1px solid #d4c8b0;
}
.wip-notice {
    display: inline-block;
    background: #fff8e6;
    border: 1px solid var(--orange);
    border-radius: 6px;
    padding: 7px 18px;
    font-size: .8em;
    color: #7a4a10;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.home-hero h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 2.2em; color: var(--navy); margin: 0 0 16px; line-height: 1.3; }
.home-hero p { font-size: 1.06em; line-height: 1.8; max-width: 680px; margin: 0 auto 28px; color: #444; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--navy); color: var(--white); padding: 13px 28px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: .9em; letter-spacing: .8px; text-transform: uppercase; transition: background .2s, transform .15s; box-shadow: 0 3px 10px rgba(30,58,138,.25); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-secondary { background: var(--white); color: var(--navy); padding: 13px 28px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: .9em; letter-spacing: .8px; text-transform: uppercase; border: 2px solid var(--navy); transition: background .2s, transform .15s; }
.btn-secondary:hover { background: var(--cream-dark); transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); padding: 13px 28px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: .9em; letter-spacing: .8px; text-transform: uppercase; transition: background .2s, transform .15s; box-shadow: 0 3px 10px rgba(238,68,68,.25); }
.btn-red:hover { background: var(--red-light); transform: translateY(-2px); }

.paw-divider { text-align: center; color: #ccc; font-size: 1.3em; letter-spacing: 14px; margin: 6px 0 30px; }

/* Who We Are hub */
.who-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; margin-top: 28px; }
.who-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
}
.who-card:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,.12); }
.who-card .wc-icon { font-size: 2.4em; margin-bottom: 12px; }
.who-card h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.1em; color: var(--navy); margin: 0 0 8px; }
.who-card p { font-size: .88em; color: #666; font-weight: 300; margin: 0; line-height: 1.6; }

/* Sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.smap-section h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.05em; color: var(--navy); border-bottom: 2px solid var(--orange); padding-bottom: 6px; margin: 0 0 12px; }
.smap-section ul { list-style: none; margin: 0; padding: 0; }
.smap-section ul li { padding: 5px 0; border-bottom: 1px solid var(--border); font-size: .9em; }
.smap-section ul li:last-child { border-bottom: none; }
.smap-section ul li a { color: var(--navy); text-decoration: none; }
.smap-section ul li a:hover { color: var(--red); }

/* Responsive */
@media(max-width:600px) {
    header { padding: 22px 18px; }
    .header-text { text-align: center; }
    .header-text h1 { font-size: 1.45em; }
    .header-logo { width: 70px; height: 70px; }
    .stat-item { padding: 14px 18px; }
    .content-wrap { padding: 30px 16px; }
    .home-hero { padding: 40px 20px 36px; }
}


/* =========================================================
   HEADER PART 1 - ROTATING TOP BAR
   ========================================================= */
.topbar-rotator {
    width: 100%;
    background: #1E3A8A;
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    overflow: hidden;
    white-space: nowrap;
}

#topbar-message {
    display: inline-block;
}


/* =========================================================
   HEADER HOME LINK WRAPPER

   PAGE / FILE USED BY:
   - header.php

   PURPOSE:
   - The full header is wrapped in <a class="header-link">.
   - This prevents the header from looking like a normal blue/underlined link.
   - The target is handled in header.php: href="/index.php" target="_blank".
   ========================================================= */
.header-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.header-link:hover,
.header-link:focus,
.header-link:visited {
    color: inherit;
    text-decoration: none;
}

/* =========================================================
   HEADER PART 2 - FIXED LETTERHEAD HEADER
   ========================================================= */
.site-header-main {
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid #1E3A8A;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header-logo img {
    display: block;
    width: 110px;
    height: auto;
}

.site-header-letterhead {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.org-name {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.org-name .org-script {
    color: var(--navy);
}

.org-name .org-sub {
    color: var(--red);
}

.org-address,
.org-phone,
.org-status,
.org-director {
    font-size: 0.98rem;
    color: #222222;
    line-height: 1.35;
}

/* =========================================================
   NARROW SCREEN ADJUSTMENT
   ========================================================= */
@media (max-width: 768px) {
    .site-header-inner {
        padding: 10px 14px;
        gap: 12px;
    }

    .site-header-logo img {
        width: 80px;
    }

    .org-name {
        font-size: 1.25rem;
    }

    .org-address,
    .org-phone,
    .org-status,
    .org-director {
        font-size: 0.88rem;
    }
}




/* =========================================================
   PACFR NAVIGATION — FINAL MASTER BLOCK
   SEARCH TAGS:
   - PACFR_NAV_BASE
   - PACFR_NAV_LINKS
   - PACFR_NAV_DROPDOWN
   - PACFR_NAV_ACTIVE
   - PACFR_NAV_EMERGENCY
   ========================================================= */

.site-menu {
    width: 100%;
    background: var(--navy);
    border-top: 1px solid var(--navy-dark);
    border-bottom: 3px solid var(--brown);
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    box-sizing: border-box;
}

.menu-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 13px 17px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    position: relative;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-link:hover,
.menu-link:focus {
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
    border-bottom-color: var(--orange);
}

.menu-link.active,
.menu-dropdown.active-group > .menu-link {
    background: var(--brown);
    color: var(--white);
    border-bottom-color: var(--orange);
}

.emergency-link {
    background: var(--red);
    color: var(--white) !important;
    font-weight: 800;
}

.emergency-link:hover,
.emergency-link:focus {
    background: #c93030;
    color: var(--white) !important;
}

.menu-dropdown {
    position: relative;
}

.dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    margin: 0;
    padding: 6px 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--orange);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    z-index: 2000;
}

.dropdown-link {
    display: block;
    padding: 11px 16px;
    color: #222222;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link:focus {
    background: var(--cream);
    color: var(--navy);
    text-decoration: none;
}

.dropdown-link.active {
    color: var(--red);
    font-weight: 800;
}

.menu-dropdown:hover .dropdown-panel,
.menu-dropdown:focus-within .dropdown-panel {
    display: block;
}

@media (max-width: 760px) {
    .menu-inner {
        align-items: stretch;
        justify-content: center;
    }

    .menu-link {
        min-height: 44px;
        padding: 11px 13px;
        font-size: 0.78rem;
    }

    .dropdown-panel {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* =========================================================
   MERGED ISOLATED LEGACY / PAGE-SPECIFIC BLOCKS
   ========================================================= */

/* =========================================================
   PAGE BODY TEXT — Loaded text content support
   ========================================================= */
.page-text {
    white-space: pre-wrap;
    line-height: 1.6;
}


/* =========================================================
   PACFR LETTERHEAD HEADER
   Uses isolated class names so old header CSS does not wreck it
   ========================================================= */

.pacfr-lh-header {
    background: #F5E6CC;
    border-bottom: 4px solid #246B6B;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.pacfr-lh-topbar {
    height: 8px;
    background: linear-gradient(to right, #6B4226 0%, #D9822B 45%, #246B6B 100%);
}

.pacfr-lh-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 18px 12px 18px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 18px;
}

.pacfr-lh-logo-box {
    flex: 0 0 auto;
    width: 96px;
}

.pacfr-lh-logo {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.pacfr-lh-text {
    flex: 1 1 auto;
    min-width: 0;
}

.pacfr-lh-title {
    margin: 0;
    font-family: "Lucida Handwriting", "Segoe Script", cursive;
    font-size: 2.25rem;
    line-height: 1.0;
    font-weight: 700;
    color: #1E3A8A;
}

.pacfr-lh-subtitle {
    margin-top: 4px;
    font-family: "Bahnschrift Light", "Segoe UI", Arial, sans-serif;
    font-size: 1.35rem;
    line-height: 1.1;
    letter-spacing: 0.6px;
    color: #EE4444;
    text-transform: none;
}

.pacfr-lh-rule {
    width: 100%;
    max-width: 760px;
    height: 3px;
    margin: 10px 0 10px 0;
    background: #246B6B;
}

.pacfr-lh-line {
    font-family: Calibri, Arial, Helvetica, sans-serif;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 600;
    color: #222222;
}

.pacfr-lh-director {
    margin-top: 4px;
    font-family: Calibri, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;
    color: #6B4226;
}

@media (max-width: 760px) {
    .pacfr-lh-wrap {
        align-items: flex-start;
    }

    .pacfr-lh-logo-box {
        width: 76px;
    }

    .pacfr-lh-logo {
        width: 76px;
        height: 76px;
    }

    .pacfr-lh-title {
        font-size: 1.7rem;
    }

    .pacfr-lh-subtitle {
        font-size: 1.05rem;
    }

    .pacfr-lh-line,
    .pacfr-lh-director {
        font-size: 0.94rem;
    }
}

@media (max-width: 620px) {
    .pacfr-lh-wrap {
        flex-direction: column;
        gap: 12px;
    }
}


/* =========================================================
   CAT CARE LIBRARY — Section Accent Color
   ========================================================= */

/* Cat Care Library — Forest Green */
body.page-cat-care-library,
body.page-cat_care_library {
  --accent:      #2A7A4B;
  --accent-dark: #1d5735;
  --accent-light:#5BAF7A;
}

/* =========================================================
   CAT CARE LIBRARY — Page-Specific Styles
   ========================================================= */

/* Intro paragraph */
.guides-intro-text {
  font-size: 1rem;
  color: var(--charcoal);
  max-width: 720px;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* Force card image area to consistent height */
.guides-grid .card-img {
  height: 200px;
  overflow: hidden;
}

.guides-grid .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image placeholder (shown when no photo set) */
.guides-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--cream-dark);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.guides-img-placeholder svg {
  color: var(--cream-dark);
  opacity: 0.6;
}

/* Highlights checklist inside card */
.guides-highlights {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.guides-highlights li {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--charcoal);
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 0;
}

.guides-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Download button — full width in card */
.guides-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

/* Disclaimer at bottom of page */
.guides-disclaimer {
  font-size: 0.8rem;
  font-style: italic;
  color: #777;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}


/* =========================================================
   PACFR DONATIONS PAGE
   Add this section to: main.css

   Search tags:
   - PACFR_DONATIONS_PAGE
   - DONATION_CARDS
   - DONATION_VENDOR_CARDS
   ========================================================= */

.donations-page {
    background: var(--cream);
}

.donations-hero h2 {
    color: var(--navy);
}

.donations-wrap {
    max-width: 1180px;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 34px;
}

.donation-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.donation-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--cream-dark);
    padding-bottom: 10px;
}

.donation-card h3 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    color: var(--navy);
}

.donation-status {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    background: #fff8e6;
    border: 1px solid var(--orange);
    color: #7a4a10;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.donation-card p {
    margin: 0 0 18px;
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.65;
    flex: 1 1 auto;
}

.donation-button {
    display: inline-block;
    align-self: flex-start;
    background: var(--navy);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.donation-button:hover,
.donation-button:focus {
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
}

.donation-note {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 5px solid var(--teal);
    border-radius: 8px;
    padding: 22px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.donation-note h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
}

.donation-note p {
    margin: 0;
    color: #444444;
    line-height: 1.65;
}

@media (max-width: 600px) {
    .donation-card {
        min-height: auto;
    }

    .donation-card-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   PACFR DONATIONS PAGE
   Add this block to the BOTTOM of main.css

   SEARCH TAGS:
   - PACFR_DONATIONS_PAGE
   - PACFR_DONATION_CARDS
   - PACFR_DONATION_VENDOR_CARDS
   ========================================================= */

/* Main page wrapper */
.donations-page {
    background: var(--cream);
    color: var(--text);
}

/* Top page introduction */
.donations-hero {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-bottom: 1px solid #d4c8b0;
    padding: 48px 24px 38px;
    text-align: center;
}

.donations-hero-inner {
    max-width: 860px;
    margin: 0 auto;
}

.donations-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 16px;
    background: #fff8e6;
    border: 1px solid var(--orange);
    border-radius: 20px;
    color: #7a4a10;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.donations-hero h1 {
    margin: 0 0 14px;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--navy);
    font-size: 2.15rem;
    line-height: 1.2;
}

.donations-hero p {
    max-width: 720px;
    margin: 0 auto 10px;
    font-size: 1.03rem;
    line-height: 1.75;
    color: #444444;
}

.donations-tax-line {
    font-weight: 800;
    color: var(--brown) !important;
}

/* Card grid wrapper */
.donations-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px 22px 28px;
}

.donations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
}

/* Individual vendor card */
.donation-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 6px solid var(--teal);
    border-radius: 12px;
    padding: 24px 22px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.donation-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.donation-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.donation-card h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--navy);
    font-size: 1.35rem;
    line-height: 1.15;
}

.donation-card-subtitle {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.3;
    font-weight: 700;
}

.donation-card p {
    margin: 0 0 14px;
    color: #444444;
    font-size: 0.94rem;
    line-height: 1.65;
}

.donation-card ul {
    margin: 0 0 18px;
    padding-left: 20px;
}

.donation-card li {
    margin: 0 0 6px;
    color: #444444;
    font-size: 0.9rem;
    line-height: 1.45;
}

.donation-button {
    display: inline-block;
    margin-top: auto;
    padding: 11px 18px;
    border-radius: 6px;
    background: var(--navy);
    color: var(--white) !important;
    text-align: center;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.donation-button:hover,
.donation-button:focus {
    background: var(--teal);
    color: var(--white) !important;
    text-decoration: none;
}

/* Vendor accents */
.donation-card-paypal { border-top-color: #1E3A8A; }
.donation-card-venmo { border-top-color: #246B6B; }
.donation-card-stripe { border-top-color: #6B4226; }
.donation-card-donorbox { border-top-color: #D9822B; }
.donation-card-givebutter { border-top-color: #EE4444; }
.donation-card-zelle { border-top-color: #5D6673; }

/* Bottom note */
.donations-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 22px 44px;
    text-align: center;
}

.donations-note p {
    margin: 0;
    color: #666666;
    font-size: 0.88rem;
    line-height: 1.65;
    font-style: italic;
}

@media (max-width: 680px) {
    .donations-hero {
        padding: 36px 18px 30px;
    }

    .donations-hero h1 {
        font-size: 1.65rem;
    }

    .donations-wrap {
        padding: 30px 16px 22px;
    }
}

/* =========================================================
   PACFR DONATIONS PAGE — FINAL CARD LAYOUT
   ========================================================= */

.donations-wrap {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

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

/* CARD */
.donation-card {
    background: #ffffff;
    border: 1px solid #e0d8cc;
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.donation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

/* TITLE */
.donation-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--navy);
}

/* TEXT */
.donation-card p {
    font-size: .92rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 18px;
}

/* BUTTON */
.donation-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 5px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .6px;
    background: var(--navy);
    color: #fff;
}

.donation-btn:hover {
    background: var(--navy-light);
}


/* =========================================================
   Feline video recording and trapping pages 
   UPDATE:  4-28-26
   PACFR - FELINE RECOVERY PAGE STYLES
   FILE TO EDIT:
   /main.css

   PAGE USING THESE STYLES:
   /Feline-Recovery/index.php

   PURPOSE:
   Styles the public feline recovery assistance page.

   IMPORTANT:
   This block belongs at the BOTTOM of main.css.
   Do not keep this as a separate CSS file on the website.
   ========================================================= */


/* ---------------------------------------------------------
   MAIN PAGE WRAPPER

   Controls the overall width, spacing, and page placement
   for the Feline Recovery Assistance page.
   --------------------------------------------------------- */
.pacfr-feline-recovery-page {
    width: 95%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0;
}


/* ---------------------------------------------------------
   HERO SECTION

   Creates the large top page banner for this section.
   Uses PACFR deep teal for consistency with public branding.
   --------------------------------------------------------- */
.pacfr-recovery-hero {
    background: #246B6B;
    color: #ffffff;
    border-radius: 12px;
    margin-bottom: 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}


/* ---------------------------------------------------------
   HERO INNER CONTAINER

   Keeps hero text centered and padded.
   --------------------------------------------------------- */
.pacfr-recovery-hero-inner {
    padding: 28px 24px;
    text-align: center;
}


/* ---------------------------------------------------------
   HERO MAIN TITLE

   Organization name.
   --------------------------------------------------------- */
.pacfr-recovery-hero h1 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
}


/* ---------------------------------------------------------
   HERO PAGE TITLE

   Section title shown beneath the organization name.
   --------------------------------------------------------- */
.pacfr-recovery-hero h2 {
    margin: 12px 0 0 0;
    font-size: 1.45rem;
    font-weight: normal;
    line-height: 1.25;
}


/* ---------------------------------------------------------
   HERO DESCRIPTION

   Short public-facing explanation under the page title.
   --------------------------------------------------------- */
.pacfr-recovery-hero p {
    margin: 14px auto 0 auto;
    max-width: 850px;
    font-size: 1.05rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   MAIN CONTENT CARD

   Displays the editable TXT content in a readable white card.
   --------------------------------------------------------- */
.pacfr-recovery-content-card {
    background: #ffffff;
    color: #222222;
    border-radius: 12px;
    padding: 26px;
    line-height: 1.7;
    font-size: 1rem;
    white-space: normal;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}


/* ---------------------------------------------------------
   DONATION CARD

   Separate lower card reinforcing that the service is
   donation-supported without listing prices.
   --------------------------------------------------------- */
.pacfr-recovery-donation-card {
    background: #F5E6CC;
    color: #222222;
    border: 2px solid #6B4226;
    border-radius: 12px;
    padding: 24px;
    margin-top: 22px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   DONATION CARD TITLE

   Uses PACFR brown for the donation heading.
   --------------------------------------------------------- */
.pacfr-recovery-donation-card h2 {
    margin: 0 0 12px 0;
    color: #6B4226;
    font-size: 1.35rem;
}


/* ---------------------------------------------------------
   DONATION CARD TEXT

   Keeps paragraph spacing clean.
   --------------------------------------------------------- */
.pacfr-recovery-donation-card p {
    margin: 0;
}


/* ---------------------------------------------------------
   SMALL SCREEN CLEANUP

   Keeps the page readable on phones and tablets.
   Desktop remains the primary target, but this prevents
   the page from breaking on smaller displays.
   --------------------------------------------------------- */
@media (max-width: 700px) {
    .pacfr-feline-recovery-page {
        width: 94%;
        margin: 18px auto;
    }

    .pacfr-recovery-hero-inner {
        padding: 22px 16px;
    }

    .pacfr-recovery-hero h1 {
        font-size: 1.55rem;
    }

    .pacfr-recovery-hero h2 {
        font-size: 1.2rem;
    }

    .pacfr-recovery-content-card,
    .pacfr-recovery-donation-card {
        padding: 18px;
    }
}







/* =========================================================
   END MAIN.CSS
   This is the only CSS file intended to be called by PACFR pages.
   ========================================================= */
