:root {
    --primary: #7B5E57;
    --secondary: #A78B82;
    --accent: #E6A65D;
    --background: #FAF7F5;
    --text: #2C1810;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: var(--primary);
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--background) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--background) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1442504028989-ab58b5f29a4a');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--background);
    padding: 3rem 0;
}

.social-links a {
    color: var(--background);
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    
    .section {
        padding: 3rem 0;
    }
}
.program-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.program-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.program-card ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.program-card ul li {
    margin-bottom: 0.5rem;
}

.project-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.achievements h4 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.achievements p {
    color: var(--secondary);
    font-size: 0.9rem;
}

.project-content ul li {
    margin-bottom: 1rem;
}

.project-content h5 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-info h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.map-container {
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.map-placeholder {
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.map-placeholder:hover {
    background: #e9ecef;
}

.donation-info, .donation-options {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.impact-list {
    list-style: none;
    padding-left: 0;
}

.impact-list li {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.impact-list li:last-child {
    border-bottom: none;
}

.impact-list li i {
    color: var(--primary);
}

.transparency-note {
    background: rgba(var(--primary-rgb), 0.05);
    border-left: 4px solid var(--primary);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.program-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.donation-method {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 1.5rem;
}

.bank-details {
    background: rgba(var(--primary-rgb), 0.05);
    padding: 1rem;
    border-radius: 8px;
}
.value-card {
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    display: block;
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    padding: 2rem;
}

.timeline-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid var(--primary);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.map-iframe {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-iframe:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s ease;
}