/* ============================================
   GHANA BRIGADES LANDING PAGE STYLES
   Professional, Responsive, Modern Design
   With Hero Background Image - FIXED
   ============================================ */

:root {
    --primary: #C1272D;
    --primary-dark: #8B1E22;
    --primary-light: #e84c52;
    --secondary: #1B3A6B;
    --secondary-dark: #0F2A4F;
    --accent: #F0B429;
    --accent-dark: #d49a0f;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --dark: #1e2a3e;
    --light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --border: #dee2e6;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY & UTILITIES
   ============================================ */
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.text-primary { color: var(--primary) !important; }
.text-danger { color: var(--primary-dark) !important; }
.text-success { color: #27ae60 !important; }
.text-warning { color: var(--accent) !important; }
.text-muted { color: var(--gray) !important; }

.section-pad {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(193,39,45,0.1);
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--accent);
    background: rgba(240,180,41,0.15);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title span {
    color: var(--primary);
    position: relative;
}

.section-title.on-dark {
    color: var(--white);
}

.section-title.on-dark span {
    color: var(--accent);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
}

.section-subtitle.on-dark {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   NAVBAR
   ============================================ */
.gb-navbar {
    background: var(--white);
    padding: 16px 0;
    transition: var(--transition);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.gb-navbar.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
}

.navbar-brand {
    text-decoration: none;
}

.brand-shield {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.brand-text .name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-text .tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.btn-nav-apply {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-nav-apply:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

.btn-nav-login {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-nav-login:hover {
    background: var(--light);
    border-color: var(--primary);
}

/* ============================================
   HERO SECTION WITH BACKGROUND IMAGE - FIXED
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Hero Background Image - Try multiple path options */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* TRY THESE PATHS - use the one that works for your file location */
    background-image: url('hero-bg.jpg');
    /* Alternative paths - uncomment the one that works:
    background-image: url('../hero-bg.jpg');
    background-image: url('./hero-bg.jpg');
    background-image: url('assets/hero-bg.jpg');
    background-image: url('images/hero-bg.jpg');
    background-image: url('img/hero-bg.jpg');
    */
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

/* Dark overlay for better text readability - adjusted for better visibility */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 28, 47, 0.75) 0%, rgba(26, 60, 94, 0.7) 100%);
}

/* Optional pattern overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240,180,41,0.2);
    backdrop-filter: blur(4px);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-content h1 .red {
    color: var(--primary);
}

.hero-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero-primary {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat .label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Hero visual cards */
.hero-visual {
    position: relative;
    min-height: 400px;
}

.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    width: 220px;
}

.fc-1 {
    top: 20px;
    right: 0;
}

.fc-2 {
    bottom: 80px;
    left: 0;
}

.fc-3 {
    bottom: 20px;
    right: 40px;
    width: 180px;
    text-align: center;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(193,39,45,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.card-icon.circle {
    border-radius: 50%;
}

.next-event-title {
    font-size: 0.8rem;
    margin-top: 8px;
}

.next-event-date {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 4px;
}

/* ============================================
   COUNTER SECTION
   ============================================ */
.counter-section {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    padding: 60px 0;
    color: white;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
}

.counter-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--white);
}

.about-card {
    background: var(--light);
    border-radius: 20px;
    padding: 20px;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.history-timeline {
    padding-left: 20px;
}

.history-item {
    position: relative;
    padding-bottom: 24px;
    padding-left: 24px;
    border-left: 2px solid var(--border);
}

.history-dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
}

.history-year {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.history-text {
    font-size: 0.85rem;
    color: var(--gray);
}

.value-card {
    background: var(--light);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid var(--primary);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(193,39,45,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-icon i {
    font-size: 24px;
    color: var(--primary);
}

/* ============================================
   STRUCTURE SECTION
   ============================================ */
.structure-section {
    background: linear-gradient(135deg, var(--light), var(--white));
}

.org-node {
    background: white;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 160px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.org-node:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.org-node.national {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
}

.org-node.regional {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    border: none;
}

.org-node.district {
    background: linear-gradient(135deg, #2c5a7a, #1e3a5f);
    color: white;
    border: none;
}

.org-node-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 8px;
}

.org-node-sub {
    font-size: 0.7rem;
    opacity: 0.8;
}

.org-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.org-connector {
    text-align: center;
    margin: 15px 0;
    font-size: 24px;
    color: var(--gray);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-masonry-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-masonry-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-masonry-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-placeholder {
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
}

.gallery-placeholder i {
    font-size: 48px;
    opacity: 0.5;
}

/* Lightbox */
.gb-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gb-lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    cursor: default;
}

.gb-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.gb-lightbox-close:hover {
    opacity: 1;
}

.scroll-loader {
    text-align: center;
    margin-top: 30px;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    background: var(--light);
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-img-ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.news-cat {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--secondary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.news-body {
    padding: 20px;
}

.news-date {
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.news-link {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--primary-dark);
    gap: 8px;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
    background: var(--white);
}

.event-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--light);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.event-date-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    min-width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-date-box .day {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.event-date-box .month {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.event-meta {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 4px;
}

.event-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: auto;
}

/* ============================================
   APPLY SECTION
   ============================================ */
.apply-section {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.apply-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.btn-apply-main {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
}

.btn-apply-main:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   ALUMNI SECTION
   ============================================ */
.alumni-section {
    background: linear-gradient(135deg, #1a3c5e, #0f2a4f);
}

.alumni-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.alumni-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
}

.alumni-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    overflow: hidden;
}

.alumni-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-name {
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.alumni-role {
    font-size: 0.7rem;
    color: var(--accent);
}

.alumni-year {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}

/* ============================================
   DONATION SECTION
   ============================================ */
.donation-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.donate-form-wrap {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
}

.donation-amount-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.donation-amount-btn.selected {
    background: var(--accent);
    color: var(--secondary);
    border-color: var(--accent);
}

.donation-amount-btn:hover {
    background: var(--accent);
    color: var(--secondary);
}

.donate-input {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    transition: var(--transition);
}

.donate-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
}

.btn-donate {
    background: var(--accent);
    color: var(--secondary);
    border: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 700;
    width: 100%;
    transition: var(--transition);
}

.btn-donate:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--light);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(193,39,45,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid var(--border);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #0F172A;
    padding: 60px 0 20px;
    color: rgba(255,255,255,0.7);
}

.footer-brand .brand-shield {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.footer-brand .name {
    font-weight: 800;
    color: white;
    font-size: 1.1rem;
}

.footer-brand .tagline {
    color: var(--accent);
    font-size: 0.7rem;
}

.footer-desc {
    font-size: 0.85rem;
    margin: 20px 0;
    line-height: 1.6;
}

.footer-title {
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.footer-contact i {
    color: var(--accent);
    width: 20px;
}

.newsletter-wrap {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 40px;
    padding: 10px 16px;
    color: white;
    font-size: 0.85rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-btn {
    background: var(--accent);
    color: var(--secondary);
    border: none;
    border-radius: 40px;
    padding: 0 20px;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--accent-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.75rem;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-pad {
        padding: 60px 0;
    }
    
    .org-row {
        gap: 15px;
    }
    
    .org-node {
        min-width: 130px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat .number {
        font-size: 1.4rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-badge {
        margin-left: 0;
    }
    
    .org-row {
        flex-direction: column;
        align-items: center;
    }
    
    .org-connector {
        display: none;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .newsletter-wrap {
        flex-direction: column;
    }
    
    .newsletter-btn {
        padding: 10px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .apply-card {
        padding: 20px;
    }
    
    .donation-amount-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* ============================================
   SCROLL BEHAVIOR & ANIMATIONS
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* AOS overrides */
[data-aos] {
    pointer-events: auto !important;
}