/* assets/css/style.css - Main stylesheet */
:root {
    --primary-green: #1B5E20;
    --primary-green-light: #2E7D32;
    --gold: #D4AF37;
    --gold-light: #F5E6B8;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

/* Colors */
.text-gold {
    color: var(--gold) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-gold-light {
    background-color: var(--gold-light) !important;
}

.btn-donate {
    background-color: var(--gold);
    color: var(--dark);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-donate:hover {
    background-color: #c5a024;
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* Footer */
.footer {
    background-color: #0a2a0a;
    color: #ddd;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--gold);
}

/* Stat cards */
.stat-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Project cards */
.project-card {
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.project-card img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Amount option buttons */
.amount-option .btn-outline-gold {
    border-width: 2px;
    font-weight: 600;
}

.amount-option input:checked + .btn-outline-gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}