/* ─── Global heading font (Oswald for H1 & H2) ───────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif !important;
}

/* ─── CSS Custom Properties ──────────────────────────────────────────── */
:root {
    --navy: #1c2541;
    --navy-dark: #0d1321;
    --red: #c41e3a;
    --red-dark: #9b1830;
    --gold: #d4a532;
    --gold-light: #e8c468;
    --white: #ffffff;
    --cream: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

/* ─── Utility ────────────────────────────────────────────────────────── */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── Top Bar ────────────────────────────────────────────────────────── */
.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 10px 40px;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar a {
    color: var(--gold);
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

.social-icons-top {
    display: flex;
    gap: 15px;
}

.social-icons-top a {
    color: var(--white);
    font-size: 1rem;
    transition: color 0.3s;
}

.social-icons-top a:hover {
    color: var(--gold);
}

/* ─── Navigation ─────────────────────────────────────────────────────── */
nav {
    background: var(--white);
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--red);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 55px;
    width: auto;
}

/* ─── Text Logo ──────────────────────────────────────────────────────── */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-office {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    color: var(--red);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer .logo-name {
    color: var(--white);
}

footer .logo-office {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--gray-100);
    color: var(--red);
}

.nav-donate {
    background: var(--red) !important;
    color: var(--white) !important;
    margin-left: 10px;
}

.nav-donate:hover {
    background: var(--red-dark) !important;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ─── Page Header (inner pages) ──────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '★';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    font-size: 20rem;
    color: rgba(255,255,255,0.03);
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.page-header h1 span {
    color: var(--red);
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* ─── Section Header ─────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    margin: 0 5px;
}

.btn-red {
    background: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--red);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--red);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
footer {
    background: #050a0f;
    color: var(--white);
    padding: 70px 40px 30px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-brand h3 span {
    color: var(--red);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.85rem;
}

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

/* ═══════════════════════════════════════════════════════════════════════
   INDEX PAGE
═══════════════════════════════════════════════════════════════════════ */
/* Hero — full-width banner image */
.hero {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    line-height: 0;
    overflow: hidden;
}

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

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content h1 .name-cass {
    color: var(--white);
}

.hero-content h1 .name-fryman {
    color: var(--red);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

/* Hero signup box */
.hero-signup-box {
    background: rgba(255,255,255,0.97);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border-top: 5px solid var(--red);
}

.hero-signup-box h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-signup-box p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.signup-form input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--red);
}

.signup-form button {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.signup-form button:hover {
    background: var(--red);
}

/* Donate Strip */
.donate-section {
    background: var(--red);
    padding: 28px 40px;
    text-align: center;
}

.donate-container {
    max-width: 1300px;
    margin: 0 auto;
}

.donate-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.donate-btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    padding: 28px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.donate-btn:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Paid-for disclaimer */
.paid-for {
    display: inline-block;
    border: 2px solid var(--gray-400);
    padding: 7px 22px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: var(--gray-400) !important;
    letter-spacing: 0.5px;
    text-align: center;
}

/* About Section (index) */
.about-section {
    padding: 90px 40px;
    background: var(--white);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 18px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content h2 span {
    color: var(--red);
}

.about-content > p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-highlight {
    background: var(--cream);
    border-left: 5px solid var(--gold);
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
    color: var(--gray-800);
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.credential-item i {
    color: var(--red);
    font-size: 1rem;
}

/* Family Section (index) */
.family-section {
    padding: 80px 40px;
    background: var(--cream);
}

.family-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.family-content h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.family-content p {
    color: var(--gray-600);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.family-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Priorities Section */
.priorities-section {
    padding: 90px 40px;
    background: var(--white);
}

.priorities-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.priority-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.priority-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--red) 0%, var(--navy) 100%);
}

.priority-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.priority-icon {
    width: 70px;
    height: 70px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.8rem;
}

.priority-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.priority-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Record Section */
.record-section {
    padding: 90px 40px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.record-section::before {
    content: '★';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 25rem;
    color: rgba(255,255,255,0.02);
}

.record-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.record-section .section-header h2 {
    color: var(--white);
}

.record-section .section-header p {
    color: rgba(255,255,255,0.8);
}

.record-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.record-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.record-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.record-icon {
    width: 60px;
    height: 60px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.record-text h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.record-text p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.record-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.record-stat {
    text-align: center;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.record-stat-number {
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.record-stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Gallery */
.gallery-section {
    padding: 80px 40px;
    background: var(--cream);
}

.gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 40px 20px 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Get Involved Grid (index) */
.involved-section {
    padding: 0;
}

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

.involved-card {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.involved-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.involved-card:hover img {
    transform: scale(1.1);
}

.involved-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,37,65,0.95) 0%, rgba(28,37,65,0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: all 0.3s;
}

.involved-card:hover .involved-overlay {
    background: linear-gradient(to top, rgba(196,30,58,0.95) 0%, rgba(196,30,58,0.7) 100%);
}

.involved-overlay h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.involved-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.involved-overlay a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

/* Endorsements */
.endorsements-section {
    padding: 80px 40px;
    background: var(--white);
}

.endorsements-container {
    max-width: 1100px;
    margin: 0 auto;
}

.endorsement-quote {
    text-align: center;
    padding: 50px;
    background: var(--navy);
    border-radius: 50px;
    position: relative;
    margin-bottom: 40px;
}

.endorsement-quote::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 8rem;
    color: var(--gold);
    opacity: 1;
    position: absolute;
    top: -20px;
    left: 30px;
    line-height: 1;
}

.endorsement-quote p {
    font-size: 1.3rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.endorsement-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    color: var(--gold);
}

/* Donate Section Full (red gradient "Support the Campaign") */
.donate-section-full {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.donate-section-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 26-15 26-15-26z' fill='%23fff' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.donate-section-full .donate-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.donate-section-full .donate-container h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.donate-section-full .donate-container > p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 35px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.donate-section-full .donate-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0;
}

.donate-section-full .donate-btn {
    flex: none;
    background: var(--white);
    color: var(--red);
    border: none;
    padding: 18px 35px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    min-width: 110px;
    display: inline-block;
}

.donate-section-full .donate-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.donate-section-full .donate-btn.other,
.donate-section-full .donate-btn.outline {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

.donate-section-full .donate-btn.other:hover,
.donate-section-full .donate-btn.outline:hover {
    background: var(--white);
    color: var(--red);
}

/* Final CTA */
.final-cta {
    padding: 100px 40px;
    background: var(--navy-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.final-cta h2 span {
    color: var(--gold);
}

.final-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════════════ */
/* Bio Section */
.bio-section {
    padding: 80px 40px;
    background: var(--white);
}

.bio-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.bio-image-col {
    position: sticky;
    top: 120px;
}

.bio-main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.bio-badge {
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 700;
}

.bio-content h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
}

.bio-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.bio-quote {
    background: var(--cream);
    border-left: 5px solid var(--red);
    padding: 25px 30px;
    margin: 30px 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray-800);
}

/* Timeline */
.timeline-section {
    padding: 80px 40px;
    background: var(--cream);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-section .section-header {
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 25px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-year {
    font-size: 1.2rem;
    color: var(--red);
    margin-bottom: 8px;
}

.timeline-item h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Credentials Section */
.credentials-section {
    padding: 80px 40px;
    background: var(--navy);
}

.credentials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.credentials-section .section-header h2 {
    color: var(--white);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.credential-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.credential-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.credential-icon {
    width: 70px;
    height: 70px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.6rem;
}

.credential-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.credential-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* CTA Section (about/issues) */
.cta-section {
    padding: 80px 40px;
    background: var(--red);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ═══════════════════════════════════════════════════════════════════════
   ISSUES PAGE
═══════════════════════════════════════════════════════════════════════ */
.intro-section {
    padding: 60px 40px;
    background: var(--cream);
    text-align: center;
}

.intro-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.9;
}

.intro-note {
    background: var(--white);
    border-left: 5px solid var(--gold);
    padding: 20px 25px;
    margin: 30px auto 0;
    max-width: 800px;
    text-align: left;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.intro-note strong {
    color: var(--navy);
}

.issues-section {
    padding: 80px 40px;
    background: var(--white);
}

.issues-container {
    max-width: 1200px;
    margin: 0 auto;
}

.issue-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--gray-200);
}

.issue-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.issue-block:nth-child(even) {
    direction: rtl;
}

.issue-block:nth-child(even) > * {
    direction: ltr;
}

.issue-content h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.issue-content h2 i {
    color: var(--red);
    font-size: 1.8rem;
}

.issue-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.issue-points {
    list-style: none;
    margin-top: 25px;
}

.issue-points li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--gray-800);
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.issue-points li:last-child {
    border-bottom: none;
}

.issue-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.issue-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.issue-stat {
    background: var(--navy);
    color: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}

.issue-stat-number {
    font-size: 3rem;
    color: var(--gold);
}

.issue-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.approach-section {
    padding: 80px 40px;
    background: var(--navy);
}

.approach-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.approach-container h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.approach-container > p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    text-align: left;
}

.approach-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
}

.approach-number {
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.approach-text h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.approach-text p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   GET INVOLVED PAGE
═══════════════════════════════════════════════════════════════════════ */
.ways-section {
    padding: 80px 40px;
}

.ways-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.way-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 5px solid var(--red);
    transition: transform 0.3s;
}

.way-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.way-icon {
    width: 80px;
    height: 80px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.way-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.way-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.volunteer-section {
    padding: 80px 40px;
    background: var(--cream);
}

.volunteer-container {
    max-width: 800px;
    margin: 0 auto;
}

.volunteer-form {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.volunteer-form h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.volunteer-form > p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--gray-200);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input {
    width: auto;
}

.submit-btn {
    width: 100%;
    background: var(--red);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--red-dark);
}

.signs-section {
    padding: 80px 40px;
    background: var(--navy);
}

.signs-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.signs-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.signs-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.signs-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-signup-box {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

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

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-signup-box {
        max-width: 500px;
    }

    .about-container,
    .family-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

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

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

    .bio-container {
        grid-template-columns: 1fr;
    }

    .bio-image-col {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .issue-block {
        grid-template-columns: 1fr;
    }

    .issue-block:nth-child(even) {
        direction: ltr;
    }

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

    .ways-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .signs-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 8px;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-bg-image {
        width: 100%;
        clip-path: none;
    }

    .quick-stats-container {
        gap: 40px;
    }

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

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

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

    .gallery-item:first-child {
        grid-column: span 2;
    }

    .record-stats {
        grid-template-columns: 1fr;
    }

    .credentials-list {
        grid-template-columns: 1fr;
    }

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

    .donate-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .donate-btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 10px;
    }
}

/* Pinegrow generated Design Panel Extra Rules Begin */
body,
html {
    min-height: 100vh;
}

/* Pinegrow generated Design Panel Extra Rules End */h1, h2, h3, h4, h5, h6 {}
