/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}

/* Header and Navigation */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin-left: 25px;
}

.nav-item > a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 5px;
    display: block;
    transition: color 0.3s;
}

.nav-item > a:hover {
    color: #2e7d32;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1000;
    top: 100%;
    left: 0;
}

.dropdown a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.dropdown a:hover {
    background-color: #f9f9f9;
    color: #2e7d32;
}

/* Updated: Donate button with dark green background */
.donate-btn a {
    background-color: #1b5e20; /* Dark green */
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    border: 2px solid #1b5e20; /* Dark green outline */
    transition: all 0.3s ease;
}

.donate-btn a:hover {
    background-color: white !important;
    color: #1b5e20 !important; /* Dark green text */
    border: 2px solid #1b5e20; /* Dark green outline */
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQS8cTTGZ8EkK2ZeBK5Zd4iyHpFXYKGgQicvg&s');
	background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* Updated: Primary button with dark green background */
.btn-primary {
    display: inline-block;
    background-color: #1b5e20; /* Dark green */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #1b5e20; /* Dark green outline */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: white;
    color: #1b5e20; /* Dark green text */
    border: 2px solid #1b5e20; /* Dark green outline */
}

/* Updated: Secondary button */
.btn-secondary {
    display: inline-block;
    background-color: white;
    color: #1b5e20; /* Dark green text */
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #1b5e20; /* Dark green outline */
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1b5e20; /* Dark green */
    color: white; /* White text */
    border: 2px solid #1b5e20; /* Dark green outline */
}

/* Updated: Text button/link */
.btn-text {
    display: inline-flex;
    align-items: center;
    color: #1b5e20; /* Dark green */
    text-decoration: none;
    font-weight: 600;
    gap: 5px;
    padding: 8px 16px;
    border: 2px solid #1b5e20; /* Dark green outline */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    background-color: #1b5e20; /* Dark green */
    color: white; /* White text */
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Section Content */
.section-content {
    padding: 80px 0;
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.alt-bg {
    background-color: #f8f9fa;
}

/* Stats Grid */
.stats-grid, .impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card, .impact-stat {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stat-card h3, .impact-stat h3 {
    font-size: 2.5rem;
    color: #1b5e20; /* Changed to dark green */
    margin-bottom: 10px;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.approach-card i {
    font-size: 2.5rem;
    color: #1b5e20; /* Changed to dark green */
    margin-bottom: 20px;
}

/* Story Containers */
.story-container, .story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

/* Partnership List */
.partnership-list {
    list-style-type: none;
    margin: 20px 0;
}

.partnership-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Donation Options */
.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.donation-card {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.donation-card h3 {
    color: #1b5e20; /* Changed to dark green */
    font-size: 2rem;
    margin-bottom: 15px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.news-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Updated: Link styles throughout the site */
a:not(.btn-primary):not(.btn-secondary):not(.donate-btn a):not(.btn-text):not(.social-links a):not(.newsletter-form button) {
    color: #1b5e20; /* Dark green */
    text-decoration: none;
    border: 2px solid #1b5e20; /* Dark green outline */
    padding: 4px 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

a:not(.btn-primary):not(.btn-secondary):not(.donate-btn a):not(.btn-text):not(.social-links a):not(.newsletter-form button):hover {
    background-color: #1b5e20; /* Dark green */
    color: white; /* White text */
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    border: 2px solid transparent; /* Add transparent border for consistency */
    padding: 2px 6px;
    border-radius: 3px;
}

.footer-section a:hover {
    color: #1b5e20; /* Dark green */
    background-color: white;
    border: 2px solid #1b5e20; /* Dark green outline */
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    border: 2px solid transparent;
}

.social-links a:hover {
    background-color: white;
    color: #1b5e20; /* Dark green */
    border: 2px solid #1b5e20; /* Dark green outline */
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

/* Updated: Newsletter button */
.newsletter-form button {
    background-color: #1b5e20; /* Dark green */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    border: 2px solid #1b5e20; /* Dark green outline */
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: white;
    color: #1b5e20; /* Dark green text */
    border: 2px solid #1b5e20; /* Dark green outline */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .dropdown {
        position: static;
        box-shadow: none;
        display: none;
        margin-top: 10px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .story-container, .story-card {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}