@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Outfit:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;1,400&display=swap');

/* ==========================================================================
   1. VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    --primary: #1B4F2E;
    --accent: #C5922A;
    --accent-glow: #F1C40F;
    --bg: #FDFBF7; /* Luxurious warm ivory background */
    --text: #2C2C2A;
    --secondary-green: #E2EFE6;
    --alert-red: #C0392B;
    --white: #FFFFFF;
    --dark-green: #11361F;
    --gray-light: #ECE7DE;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --font-scripture: 'Lora', Georgia, serif;
    
    --shadow-soft: 0 10px 30px -15px rgba(27, 79, 46, 0.1);
    --shadow-premium: 0 20px 45px -15px rgba(27, 79, 46, 0.15);
    --shadow: var(--shadow-soft);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
p { margin-bottom: 1.5rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

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

/* ==========================================================================
   3. STRUCTURAL LAYOUT & CONTAINERS
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.section-bg-light {
    background-color: var(--secondary-green);
    background-image: linear-gradient(135deg, var(--secondary-green) 0%, #F5FAF6 100%);
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   4. NAVIGATION HEADER (GLASSMORPHISM)
   ========================================================================== */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(236, 231, 222, 0.4);
    transition: var(--transition);
    padding: 5px 0;
}

header.shrink {
    padding: 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: var(--transition);
}

header.shrink .nav-container {
    padding: 10px 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: 1.5px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

/* Mobile Nav Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ==========================================================================
   5. BUTTONS & CALL TO ACTIONS (MODERN PILLS)
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(27, 79, 46, 0.15);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 79, 46, 0.35);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #E5B23C 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 146, 42, 0.2);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #A87A1E 0%, var(--accent) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 146, 42, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 79, 46, 0.15);
}

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 35px;
}

/* ==========================================================================
   6. HOMEPAGE COMPONENTS
   ========================================================================== */
/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(17, 54, 31, 0.72), rgba(17, 54, 31, 0.9)), 
                url('../images/hero_bg_placeholder.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    font-size: 3.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero p {
    font-size: 1.25rem;
    color: var(--secondary-green);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

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

/* Mission Strip */
.mission-strip {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 40px 0;
    border-top: 5px solid var(--accent);
    text-align: center;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.mission-strip-content {
    max-width: 1000px;
    margin: 0 auto;
    font-family: var(--font-body);
}

/* Scripture Banner */
.scripture-banner {
    background-color: #F8F5EE;
    padding: 90px 20px;
    border-bottom: 1px solid var(--gray-light);
}

.scripture-quote {
    font-family: var(--font-scripture);
    font-size: 2rem;
    font-style: italic;
    color: var(--primary);
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
    text-align: center;
}

.scripture-quote::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 6rem;
    position: absolute;
    top: -45px;
    left: 0;
    color: var(--accent);
    opacity: 0.25;
}

.scripture-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 700;
    color: var(--accent);
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Header styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* Cards Grid system */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(236, 231, 222, 0.5);
}

.card:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-8px);
    border-color: var(--accent);
}

.card-body {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    margin-bottom: 25px;
}

.card-icon svg {
    width: 54px;
    height: 54px;
    fill: var(--primary);
    transition: var(--transition);
}

.card:hover .card-icon svg {
    fill: var(--accent);
    transform: scale(1.05);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
    font-family: var(--font-heading);
}

.card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.card-link {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.card-link:hover {
    color: var(--accent);
}

/* ==========================================================================
   7. PAGE HEADER & BREADCRUMBS
   ========================================================================== */
.page-header {
    background: linear-gradient(rgba(17, 54, 31, 0.85), rgba(17, 54, 31, 0.92)), 
                url('../images/page_header_bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 150px 0 70px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2.8rem;
    letter-spacing: 2px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-green);
    letter-spacing: 0.5px;
}

.breadcrumbs a {
    color: var(--white);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

/* ==========================================================================
   8. SPECIFIC PAGE COMPONENTS
   ========================================================================== */
/* Two Column Layouts */
.layout-2col {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 60px;
    align-items: center;
}

.layout-2col.reverse {
    grid-template-columns: 5fr 7fr;
}

.text-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.text-content ul li {
    margin-bottom: 12px;
    position: relative;
    list-style: none;
    padding-left: 10px;
}

.text-content ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    position: absolute;
    left: -20px;
}

/* Info Box Highlight Block */
.info-box {
    background-color: var(--secondary-green);
    background-image: linear-gradient(135deg, var(--secondary-green) 0%, #F5FAF6 100%);
    border-left: 4px solid var(--primary);
    padding: 40px;
    border-radius: var(--radius);
    margin-top: 35px;
    box-shadow: var(--shadow-soft);
}

.info-box h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-green);
}

.info-box ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
    position: absolute;
    left: 0;
}

/* Core Values stat cards */
.value-card {
    background-color: var(--white);
    border: 1px solid rgba(236, 231, 222, 0.6);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--accent);
}

.value-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Stat Box Section */
.stat-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-top: 5px solid var(--accent);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    color: #666;
}

/* Reach milestones mapping */
.milestones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.milestone-box {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    border-bottom: 4px solid var(--gray-light);
    transition: var(--transition);
}

.milestone-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.milestone-box.active {
    border-bottom-color: var(--primary);
}

.milestone-box.expanding {
    border-bottom-color: var(--accent);
}

.milestone-box h3 {
    font-size: 1.45rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.milestone-status {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.milestone-box.active .milestone-status {
    background-color: var(--secondary-green);
    color: var(--primary);
}

.milestone-box.expanding .milestone-status {
    background-color: #FAF2E3;
    color: var(--accent);
}

.milestone-box.vision .milestone-status {
    background-color: var(--gray-light);
    color: #666;
}

/* ==========================================================================
   9. FORMS & INPUT ELEMENTS (PREMIUM ACCENTS)
   ========================================================================== */
.form-container {
    background-color: var(--white);
    padding: 45px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border-top: 5px solid var(--accent);
    border-left: 1px solid rgba(236, 231, 222, 0.5);
    border-right: 1px solid rgba(236, 231, 222, 0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    box-sizing: border-box;
    background-color: #FAF9F6;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 79, 46, 0.08);
    background-color: var(--white);
}

.alert {
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    border-left: 5px solid transparent;
}

.alert-success {
    background-color: var(--secondary-green);
    color: var(--primary);
    border-left-color: var(--primary);
}

.alert-danger {
    background-color: #FADBD8;
    color: #78281F;
    border-left-color: var(--alert-red);
}

/* ==========================================================================
   10. NEWS GRID & BLOG CARDS
   ========================================================================== */
.post-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(236, 231, 222, 0.6);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--accent);
}

.post-img {
    height: 220px;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-img img {
    transform: scale(1.06);
}

.post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.post-meta {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
    font-weight: 600;
}

.post-body {
    padding: 30px;
}

.post-body h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.post-body p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Category pills */
.filter-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    color: var(--text);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(27, 79, 46, 0.15);
}

/* Pagination buttons */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination a, .pagination span {
    padding: 12px 20px;
    border: 1px solid var(--gray-light);
    background-color: var(--white);
    font-weight: 700;
    border-radius: 6px;
    transition: var(--transition);
}

.pagination a:hover, .pagination span.current {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(27, 79, 46, 0.15);
}

/* Single News Reader styling */
.single-post-container {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(236, 231, 222, 0.5);
}

.single-post-meta {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 20px;
    font-weight: 600;
}

.single-post-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text);
}

.single-post-content p {
    margin-bottom: 1.8rem;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-light);
}

.share-btn {
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-wa { background-color: #25D366; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2); }
.share-fb { background-color: #1877F2; box-shadow: 0 4px 10px rgba(24, 119, 242, 0.2); }
.share-btn:hover { opacity: 0.95; color: white; transform: translateY(-2px); }

/* ==========================================================================
   11. DONATION TABLE & METHODS
   ========================================================================== */
.donation-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid rgba(236, 231, 222, 0.5);
}

.donation-table th, .donation-table td {
    padding: 18px 24px;
    text-align: left;
}

.donation-table th {
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: bold;
    letter-spacing: 1px;
}

.donation-table tr {
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

.donation-table tr:last-child {
    border-bottom: none;
}

.donation-table tr:hover {
    background-color: rgba(226, 239, 230, 0.2);
}

.donation-table tr:nth-child(even) {
    background-color: #FAF9F6;
}

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

.donation-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border-top: 5px solid var(--accent);
}

.donation-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.momo-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
    background-color: var(--secondary-green);
    padding: 12px;
    border-radius: 6px;
    letter-spacing: 1px;
    border: 1px dashed rgba(27, 79, 46, 0.3);
}

/* Bank details styling replaces inline styles for responsiveness */
.bank-info-box {
    text-align: left;
    padding: 25px;
    background-color: var(--secondary-green);
    border-radius: var(--radius);
    border-left: 5px solid var(--primary);
    font-size: 1.05rem;
    line-height: 1.8;
    box-shadow: var(--shadow-soft);
}

.bank-info-box .code-title {
    color: var(--primary);
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    font-weight: 700;
}

.bank-info-box .code-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text);
    letter-spacing: 1px;
    display: block;
    font-family: monospace;
    background-color: rgba(255,255,255,0.6);
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
    word-break: break-all;
}

@media screen and (max-width: 575px) {
    .bank-info-box {
        padding: 15px;
    }
    .bank-info-box .code-value {
        font-size: 1.35rem;
        padding: 6px 10px;
    }
}

/* ==========================================================================
   12. GALLERY MASONRY (ZOOM ON HOVER METADATA)
   ========================================================================== */
.gallery-grid {
    column-count: 3;
    column-gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    background-color: var(--white);
    margin-bottom: 24px;
    break-inside: avoid;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(236, 231, 222, 0.5);
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-caption {
    background: linear-gradient(to top, rgba(17, 54, 31, 0.95) 0%, rgba(17, 54, 31, 0.75) 75%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    padding: 40px 25px 25px 25px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--accent);
    font-family: var(--font-heading);
}

.gallery-caption p {
    font-size: 0.85rem;
    color: var(--secondary-green);
    margin: 0;
    line-height: 1.4;
}

/* Lightbox Modal custom dark overlay */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 35, 20, 0.96);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    border: 4px solid var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-title {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 1.2rem;
}

/* ==========================================================================
   13. LEADERSHIP TEAM GRID
   ========================================================================== */
.leader-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.leader-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(236, 231, 222, 0.5);
    text-align: center;
    padding-bottom: 35px;
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--accent);
}

.leader-img {
    height: 280px;
    background-color: var(--primary);
    overflow: hidden;
    position: relative;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leader-card:hover .leader-img img {
    transform: scale(1.05);
}

.leader-card h3 {
    margin-top: 25px;
    margin-bottom: 8px;
    font-size: 1.35rem;
    font-family: var(--font-heading);
}

.leader-role {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 20px;
}

.leader-card p {
    font-size: 0.95rem;
    color: #666;
    padding: 0 25px;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   14. EVENTS CARD LIST
   ========================================================================== */
.event-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(236, 231, 222, 0.5);
    display: flex;
    transition: var(--transition);
    margin-bottom: 30px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--accent);
}

.event-date-badge {
    background: linear-gradient(180deg, var(--primary) 0%, var(--dark-green) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 140px;
    padding: 30px;
    text-align: center;
    flex-shrink: 0;
}

.event-date-day {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1;
}

.event-date-month {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 8px;
    color: var(--secondary-green);
}

.event-details {
    padding: 35px;
    flex-grow: 1;
}

.event-type-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.type-crusade { background-color: var(--alert-red); }
.type-conference { background-color: var(--primary); }
.type-baptism { background-color: #2980B9; }
.type-outreach { background-color: #D35400; }
.type-training { background-color: #8E44AD; }
.type-other { background-color: #7F8C8D; }

.event-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    gap: 24px;
    font-weight: 600;
}

.event-details p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   15. DONATE CTA BANNER (GOLD GRADIENT SHIMMER)
   ========================================================================== */
.donate-cta {
    background: linear-gradient(135deg, #A87A1E 0%, #D4AF37 50%, #9E731F 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 24px;
    border-top: 4px solid var(--accent);
}

.donate-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.donate-cta p {
    color: #FDFBF7;
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.donate-cta .btn {
    background-color: var(--primary);
    color: var(--white);
    font-size: 1rem;
    padding: 16px 40px;
    box-shadow: 0 6px 20px rgba(17, 54, 31, 0.3);
}

.donate-cta .btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-4deg);
    box-shadow: 0 10px 30px rgba(17, 54, 31, 0.5);
}

/* ==========================================================================
   16. GLOBAL FOOTER (ELEGANT DARK GREEN)
   ========================================================================== */
footer {
    background: linear-gradient(180deg, var(--dark-green) 0%, #0B2314 100%);
    color: var(--white);
    padding: 100px 0 40px 0;
    border-top: 5px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 1.5px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

.footer-col p {
    color: var(--secondary-green);
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: var(--secondary-green);
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 8px;
    opacity: 1;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    margin-bottom: 18px;
    font-size: 0.9rem;
    color: var(--secondary-green);
    display: flex;
    gap: 12px;
    line-height: 1.5;
    opacity: 0.85;
}

.footer-contact-info svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

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

.footer-social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.06);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(197, 146, 42, 0.3);
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(226, 239, 230, 0.08);
    padding-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--secondary-green);
    opacity: 0.8;
}

/* ==========================================================================
   17. SCROLL ENTRANCE ANIMATIONS
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   18. RESPONSIVE BREAKPOINTS (FLUID SCALING)
   ========================================================================== */

/* Optimization for intermediate desktop screen widths to prevent navigation wrapping */
@media screen and (min-width: 1025px) and (max-width: 1280px) {
    nav ul {
        gap: 12px;
    }
    nav ul li a {
        font-size: 0.8rem;
    }
    .logo-main {
        font-size: 1.25rem;
    }
    .logo-sub {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
}

/* Mobile & Tablet Navigation menu breakpoint (up to iPad size) */
@media screen and (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 77px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 77px);
        background-color: var(--white);
        z-index: 999;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    }
    
    header.shrink nav {
        top: 57px;
        height: calc(100vh - 57px);
    }
    
    nav.open {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 40px 24px;
        gap: 20px;
        align-items: flex-start;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        padding: 8px 0;
    }
}

@media screen and (max-width: 1023px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 1.9rem; }
    
    .section { padding: 80px 0; }
    
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .layout-2col {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .layout-2col.reverse {
        grid-template-columns: 1fr;
    }
    
    .milestones {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .donation-methods {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .gallery-grid {
        column-count: 2;
    }
    
    .leader-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    /* Statistics responsiveness on tablet */
    .stat-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-box:nth-child(3) {
        grid-column: span 2;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 767px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.35rem; }
    
    .section { padding: 60px 0; }

    .page-header {
        padding: 110px 0 45px 0;
    }
    
    .hero {
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 90px;
    }
    
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1.1rem; }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        display: block;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Stat container switches to 1 column on mobile */
    .stat-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .stat-box:nth-child(3) {
        grid-column: span 1;
    }
    
    .gallery-grid {
        column-count: 1;
    }
    
    .leader-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date-badge {
        width: 100%;
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .form-container {
        padding: 20px;
    }

    .logo-main {
        font-size: 1.15rem;
    }
    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .donate-cta {
        padding: 60px 20px;
    }
    .donate-cta h2 {
        font-size: 2rem;
    }
    .donate-cta p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

