
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a52460;    /* Medium violet red / pinkish maroon */
    --primary-dark: #340619; /* Dark magenta */
    --secondary: #FF69B4;  /* Hot pink accent */
    --secondary-dark: #DB7093; /* Pale violet red */
    --accent: #9370DB;     /* Medium purple */
    --light: #9b103f;      /* Lavender blush */
    --dark: #4B0082;       /* Indigo dark */
    --white: #FFFFFF;
    --gray: #696969;
}
html { overflow-y: scroll; }  
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Top Info Bar */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    font-size: 0.8rem;
    border-bottom: 2px solid var(--secondary);
    position: fixed;
    z-index: 1001 !important;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.welcome-text {
    font-weight: 600;
}


.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
/* Social Media Icons */
.social-media {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}
/* Mobile responsive for social media */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .social-media {
        order: 2;
        gap: 0.8rem;
    }
    
    .welcome-text {
        order: 1;
    }
    
    .contact-info {
        order: 3;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .social-link svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* Navigation */
.navbar {
   display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0; /* Position it below the top bar */
            left: 0;
            right: 0;
            z-index: 1000;
            height: 80px;
            width: 100%; 
            max-width: none; 
            margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;      /* ← CHANGE to center */
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    
}

.logo-text h2 {
    color: var(--primary);
    font-size: 2rem; /* Increase font size */
    font-weight: 900; /* Make it bolder */
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: 2px; /* Add spacing between letters */
    text-transform: uppercase; /* Make it all caps */
    
}

.logo-subtitle {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: -5px;
}
.logo-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    background: white;
    padding: 0rem 1rem;
    border: 3px solid var(--primary);
    border-radius: 10px;
    display: block;
    margin: 1.5rem auto 0 auto;
    font-family: 'Great Vibes', cursive;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
    width: fit-content;
    position: relative;
    left: 20%;
    transform: translateX(-50%);

animation: slideFromLeft 3s ease-in-out forwards;
    opacity: 0;
}

@keyframes slideFromLeft {
    0% {
        transform: translateX(-100vw); /* Start from far left */
        opacity: 0;
    }
    60% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(-50%); /* End at center */
        opacity: 1;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-right: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    opacity: 0.7;
}
.nav-menu a.active {
    opacity: 1; /* Full opacity for active page */
    color: var(--primary);
    font-weight: 600;
}
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary);
    opacity: 1;
    
}
/* Target the donate button specifically */
.nav-menu li:last-child .donate-btn {
    color: var(--white) !important;
    font-weight: 600;
}

/* Ensure hover states also maintain white text */
.nav-menu li:last-child .donate-btn:hover {
    color: var(--white) !important;
}

.donate-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.donate-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}
/* Flickering animation for donate buttons */
@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        box-shadow: 
            0 0 4px var(--secondary),
            0 0 11px var(--secondary),
            0 0 19px var(--secondary),
            0 0 40px var(--secondary),
            0 0 80px var(--secondary),
            0 0 90px var(--secondary),
            0 0 100px var(--secondary),
            0 0 150px var(--secondary);
    }
    20%, 24%, 55% {
        box-shadow: none;
    }
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(219, 112, 147, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(219, 112, 147, 0.8), 0 0 30px rgba(219, 112, 147, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(219, 112, 147, 0.5);
    }
}

/* Navigation donate button flicker */
.nav-menu .donate-btn {
    animation: flicker 2s infinite alternate, pulse-glow 2s ease-in-out infinite;
    position: relative;
}


/* Enhanced hover effects */
.nav-menu .donate-btn:hover {
    animation: none; /* Stop animation on hover */
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 0 20px var(--secondary),
        0 0 30px var(--secondary),
        0 0 40px var(--secondary),
        0 10px 25px rgba(0, 0, 0, 0.3);
    background: var(--primary);
}


@keyframes border-flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Mobile optimization - reduce effects on small screens */
@media (max-width: 768px) {
    .nav-menu .donate-btn,
    .hero-buttons .btn-primary {
        animation: pulse-glow 2s ease-in-out infinite;
    }
    
    @keyframes flicker-mobile {
        0%, 100% {
            box-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
        }
        50% {
            box-shadow: 0 0 5px var(--secondary), 0 0 10px var(--secondary);
        }
    }
}
/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7em;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    background: var(--primary);
    color: var(--white);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        display: none;
        padding: 1rem 0;
    }


    .logo-img {
        height: 35px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-mission {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-text h2 {
        font-size: 1.3rem;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
    }
  }



/* Donation Page Specific Styles */
        .donation-hero {
            background: linear-gradient(rgba(165,36,96,0.8), rgba(165, 36, 96, 0.4)),
                        url('Assets/donate.jpg');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
            margin-top: 80px;
        }
        
        .donation-hero h1 {
font-size: 4rem;
margin-bottom: 1rem;

        }
        
        .donation-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        .donation-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .donation-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .donation-option {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
            border-top: 4px solid var(--primary);
        }
        
        .donation-option:hover {
            transform: translateY(-5px);
        }
        
        .donation-option h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .donation-option p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }
        
        .amount-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .amount-btn {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .amount-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .amount-btn.selected {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .custom-amount {
            display: flex;
            margin-bottom: 1.5rem;
        }
        
        .custom-amount input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #dee2e6;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        
        .custom-amount button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }
        
        .mpesa-instructions {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 3rem;
        }
        
        .mpesa-instructions h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .step {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            line-height: 40px;
            margin-bottom: 1rem;
            font-weight: bold;
        }
        
        .till-number {
            background: var(--primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1.5rem;
            font-weight: bold;
            text-align: center;
            margin: 2rem auto;
            max-width: 300px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .impact-section {
            background: var(--light);
            padding: 4rem 0;
            text-align: center;
        }
        
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .impact-item {
            background: white;
            padding: 2rem 1rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .impact-item h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .faq-section {
            padding: 4rem 0;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1.5rem;
        }
        
        .faq-question {
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 0.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            color: var(--gray);
            line-height: 1.6;
        }
        
        .donate-now-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 2rem auto;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: flicker 2s infinite alternate, pulse-glow 2s ease-in-out infinite;
        }
        
        .donate-now-btn:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            animation: none;
        }
        
        @media (max-width: 768px) {
            .donation-hero {
                padding: 6rem 0 3rem;
                margin-top: 100px;
            }
            
            .donation-hero h1 {
                font-size: 2.2rem;
            }
            
            .till-number {
                font-size: 1.2rem;
                padding: 0.8rem 1.5rem;
            }
        }
       
/* ===== COMPACT FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 1.5rem 0 0.5rem;
    position: relative;
    border-top: 2px solid var(--primary);
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    left: 0 !important;
    right: 0 !important;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer Main Section */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* Brand Section with Social Media */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo-text h3 {
    color: var(--white);
    font-size: 1rem;
    margin: 0 0 0.1rem 0;
    font-weight: 700;
    line-height: 1.2;
}

.footer-tagline {
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-size: 0.75rem;
    margin: 0;
}

/* Compact Social Media - Fix Twitter visibility */
.footer-social-compact {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.social-link-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

/* Ensure Twitter icon is visible */
.fa-x-twitter {
    color: var(--white) !important;
}

.social-link-compact:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.social-link-compact:hover .fa-x-twitter {
    color: var(--white) !important;
}

/* Footer Links - Always 2 columns */
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.link-column {
    display: flex;
    flex-direction: column;
}

.link-column h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.link-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0;
}

.link-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Bottom Footer with Donate Button */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.legal-links {
    display: flex;
    gap: 0.8rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.7rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin: 0;
}

/* Donate Button in Footer Bottom */
.donate-btn-bottom {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    background: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.donate-btn-bottom:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 112, 147, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex: 1;
    }
    
    .donate-btn-bottom {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 0.6rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .link-column h4 {
        font-size: 0.85rem;
    }
    
    .link-column a {
        font-size: 0.7rem;
    }
    .link-column {
        min-width: 0; /* Prevent columns from getting too wide */
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .donate-btn-bottom {
        align-self: flex-start;
        margin-top: 0.3rem;
    }
    
    .footer-social-compact {
        gap: 0.4rem;
    }
    
    .social-link-compact {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
}


/* For extremely small screens */
@media (max-width: 360px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}
 




.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--secondary-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: var(--secondary-dark);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--primary);
    transform: translateY(-3px);
}


/* ===== CONTACT SECTION STYLES ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-details a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary);
}


/* Map Section */
.contact-map {
    height: 100%;
}

.map-placeholder {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-placeholder h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.map-image {
    flex: 1;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    min-height: 300px;
}

.map-fallback {
    text-align: center;
    color: white;
}

.map-fallback p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.map-fallback a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.map-fallback a:hover {
    color: var(--secondary);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-social-media {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        padding: 1.5rem;
    }
    
    .map-image {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .contact-social-media .social-link {
        justify-content: center;
    }
}


/* ===== GET INVOLVED ===== */
.involved-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.option {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--secondary);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.option p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.option .btn-primary,
.option .btn-secondary {
    margin-top: auto;
    align-self: center;
}



/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}
/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--secondary-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }
}



.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--secondary-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: var(--secondary-dark);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--primary);
    transform: translateY(-3px);
}




/* ===== MOBILE NAVIGATION FIXES ===== */

/* Enhanced mobile styles */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    .navbar {
        padding: 0.8rem 1rem;
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px; /* Same as navbar height */
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        opacity: 1;
        width: 100%;
        position: relative;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(165, 36, 96, 0.1);
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    .nav-menu a.active {
        background: var(--primary);
        color: var(--white);
    }
    
    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(165, 36, 96, 0.05);
        display: none;
        width: 100%;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle::after {
        content: ' ▶';
        font-size: 0.8em;
    }
    
    .dropdown.active .dropdown-toggle::after {
        content: ' ▼';
    }
    
    .dropdown-menu a {
        padding: 1rem 2rem 1rem 3rem;
        background: rgba(165, 36, 96, 0.05);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        font-size: 1rem;
    }
    
    .logo-text h2 {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    /* Donate button adjustments */
    .nav-menu .donate-btn {
        margin: 1.5rem auto;
        width: 80%;
        max-width: 200px;
        animation: pulse-glow 2s ease-in-out infinite;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
}

/* Enhanced mobile styles for very small screens */
@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
        height: 65px;
    }
    
    .nav-menu {
        top: 65px;
        max-height: calc(100vh - 65px);
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1.5rem 0.8rem 2.5rem;
    }
    
    .hamburger {
        width: 25px;
        height: 18px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    /* Hamburger animation adjustments for smaller screen */
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Ensure proper stacking context */
.navbar {
    z-index: 1000;
}

.hamburger {
    z-index: 1001;
}



