/* ============================================
   VOICES FOR THE FALLEN — Main Stylesheet
   Emotional, professional, cinematic design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --navy-900: #0a1628;
    --navy-800: #0f1f3d;
    --navy-700: #152a4a;
    --navy-600: #1b3a5c;
    --navy-500: #234b73;
    --blue-line: #1a3a6b;
    --gold: #c9a84c;
    --gold-light: #dfc06e;
    --gold-dark: #a8872e;
    --cream: #f5f0e8;
    --cream-dark: #e8dfd2;
    --white: #ffffff;
    --gray-100: #f7f7f8;
    --gray-200: #e8e8ec;
    --gray-300: #d1d1d8;
    --gray-400: #9e9ea8;
    --gray-500: #6e6e7a;
    --gray-600: #4a4a56;
    --gray-700: #2d2d36;
    --red-badge: #c41e3a;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a5e;
    --text-light: #f5f0e8;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Crimson Pro', Georgia, serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);
    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0;
}
.section-divider-center {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}
.nav.scrolled {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    z-index: 10;
}
.nav-logo-icon svg {
    width: 36px;
    height: 36px;
    color: var(--gold);
}
.nav-logo-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}
.nav-logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    font-weight: 400;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.nav-cta {
    background: var(--gold) !important;
    color: var(--navy-900) !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.25rem !important;
}
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}
.nav-donate {
    background: #38bdf8 !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600 !important;
}
.nav-donate:hover {
    background: #0ea5e9 !important;
    color: #fff !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-900);
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        padding: 2rem;
        transition: right 0.4s ease;
    }
    .nav-links.open { right: 0; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10,22,40,0.4) 0%,
            rgba(10,22,40,0.6) 40%,
            rgba(10,22,40,0.85) 100%
        ),
        url('https://images.unsplash.com/photo-1732655973420-8feb9b12e5d3?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2rem;
}
.hero h1 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero h1 em {
    font-style: normal;
    color: var(--gold);
}
.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.4);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Thin Blue Line accent across hero bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue-line), transparent);
    z-index: 3;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy-900);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}
.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}
.btn-dark {
    background: var(--navy-800);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-donate {
    background: #38bdf8;
    color: #fff;
}
.btn-donate:hover {
    background: #0ea5e9;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- Sections --- */
.section {
    padding: 6rem 2rem;
}
.section-dark {
    background: var(--navy-900);
    color: var(--white);
}
.section-cream {
    background: var(--cream);
}
.section-light {
    background: var(--gray-100);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Mission / Purpose Cards --- */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.purpose-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid transparent;
    transition: all 0.4s ease;
    text-align: center;
}
.purpose-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold);
}
.purpose-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.purpose-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}
.purpose-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}
.purpose-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .purpose-grid { grid-template-columns: 1fr; }
}

/* --- Stats Bar --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}
@media (max-width: 600px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* --- Featured Tribute (Homepage) --- */
.featured-tribute {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.featured-tribute-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 9/16;
    max-height: 500px;
    background: var(--navy-800);
}
.featured-tribute-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.featured-tribute-text h2 {
    margin-bottom: 1rem;
}
.featured-tribute-text p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}
@media (max-width: 768px) {
    .featured-tribute { grid-template-columns: 1fr; }
    .featured-tribute-video { max-height: 400px; }
}

/* --- Gallery Grid --- */
.gallery-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1.5px solid var(--gray-300);
    color: var(--text-secondary);
    background: var(--white);
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--navy-800);
    aspect-ratio: 9/16;
    max-height: 480px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}
.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.gallery-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.25rem 1.25rem;
    background: linear-gradient(transparent, rgba(10,22,40,0.9));
    color: var(--white);
}
.gallery-card-overlay h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.gallery-card-overlay p {
    font-size: 0.8rem;
    opacity: 0.7;
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* --- About Section --- */
.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(10,22,40,0.7), rgba(10,22,40,0.9)),
        url('https://images.unsplash.com/photo-1617858796416-927543465025?w=1920&q=80') center/cover;
    color: var(--white);
    text-align: center;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.about-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 120px;
}
.about-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.about-text blockquote {
    font-family: var(--font-accent);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--navy-600);
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.8;
}
.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}
@media (max-width: 768px) {
    .about-content { grid-template-columns: 1fr; }
    .about-photo { position: static; }
}

/* --- Request Form --- */
.form-section {
    background: var(--gray-100);
}
.form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 720px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.form-group label .required {
    color: var(--red-badge);
}
.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-primary);
}
.form-control:focus {
    outline: none;
    border-color: var(--navy-500);
    box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 1.5rem; }
}
.form-submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}
.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.form-success h3 {
    margin-bottom: 1rem;
}
.form-success p {
    color: var(--text-secondary);
}

/* --- Donate Section --- */
.donate-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(10,22,40,0.6), rgba(10,22,40,0.92)),
        url('https://images.unsplash.com/photo-1740872233154-b88852f89eda?w=1920&q=80') center/cover;
    color: var(--white);
    text-align: center;
}
.donate-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.donate-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}
.donate-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.donate-card-link:hover .donate-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}
.donate-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all 0.3s ease;
    color: var(--gray-400);
}
.donate-card:hover {
    transform: translateY(-4px);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
}
.donate-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}
.donate-card-icon.venmo { background: #3D95CE; color: white; }
.donate-card-icon.cashapp { background: #00D632; color: white; }
.donate-card-icon.paypal { background: #003087; color: white; }
.donate-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.donate-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; }
.donate-card .donate-handle {
    display: inline-block;
    background: var(--gray-100);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}
@media (max-width: 768px) {
    .donate-methods { grid-template-columns: 1fr; }
}

/* --- Testimonial / Quote --- */
.testimonial-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 0;
}
.testimonial-block blockquote {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 1.5rem;
}
.testimonial-block cite {
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* --- CTA Banner --- */
.cta-banner {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--white);
}
.cta-banner h2 {
    margin-bottom: 1rem;
}
.cta-banner p {
    max-width: 500px;
    margin: 0 auto 2rem;
    opacity: 0.8;
    font-size: 1.05rem;
}

/* --- Footer --- */
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.7);
    padding: 4rem 2rem 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand h3 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-900);
}
.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}
.footer-thin-blue-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-line), transparent);
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Page Header (Interior pages) --- */
.page-header {
    position: relative;
    padding: 10rem 2rem 4rem;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-header-content {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}
.page-header p {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.8;
    max-width: 550px;
    margin: 0 auto;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue-line), transparent);
    z-index: 3;
}

/* Background variants for page headers */
.page-header-about {
    background: linear-gradient(180deg, rgba(10,22,40,0.5), rgba(10,22,40,0.92)),
        url('https://images.unsplash.com/photo-1617858796416-927543465025?w=1920&q=80') center/cover;
}
.page-header-gallery {
    background: linear-gradient(180deg, rgba(10,22,40,0.5), rgba(10,22,40,0.92)),
        url('https://images.unsplash.com/photo-1709507531336-3e681fd91956?w=1920&q=80') center/cover;
}
.page-header-request {
    background: linear-gradient(180deg, rgba(10,22,40,0.5), rgba(10,22,40,0.92)),
        url('https://images.unsplash.com/photo-1676286155307-9fd53cd4b431?w=1920&q=80') center/cover;
}
.page-header-donate {
    background: linear-gradient(180deg, rgba(10,22,40,0.5), rgba(10,22,40,0.92)),
        url('https://images.unsplash.com/photo-1740872233154-b88852f89eda?w=1920&q=80') center/cover;
}

/* --- Floating Donate Button --- */
.floating-donate-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    background: #22c55e;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4), 0 2px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: donateGlow 2s ease-in-out infinite alternate;
}
.floating-donate-btn:hover {
    background: #16a34a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 28px rgba(34, 197, 94, 0.55), 0 4px 12px rgba(0,0,0,0.25);
}
.floating-donate-btn:active {
    transform: translateY(-1px) scale(1.02);
}
.floating-donate-btn svg {
    flex-shrink: 0;
    fill: rgba(255,255,255,0.2);
    stroke: currentColor;
}
@keyframes donateGlow {
    0% { box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3), 0 2px 8px rgba(0,0,0,0.2); }
    100% { box-shadow: 0 4px 24px rgba(34, 197, 94, 0.5), 0 2px 8px rgba(0,0,0,0.2); }
}

/* Hide on donate page itself */
.page-donate .floating-donate-btn {
    display: none;
}

@media (max-width: 768px) {
    .floating-donate-btn {
        bottom: 1.2rem;
        right: 1.2rem;
        padding: 0.75rem 1.3rem;
        font-size: 0.9rem;
    }
}

/* --- Mobile Nav Right (Donate + Hamburger) --- */
.nav-right-mobile {
    display: none;
}
@media (max-width: 768px) {
    .nav-right-mobile {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .mobile-donate-btn {
        padding: 0.4rem 1rem;
        background: #38bdf8;
        color: #fff;
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 0.8rem;
        text-decoration: none;
        border-radius: 6px;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }
    .mobile-donate-btn:hover {
        background: #0ea5e9;
    }
    .page-donate .mobile-donate-btn {
        display: none;
    }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
