/* Custom styles for Devine The Earth Foundation */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom font (optional - uses system fonts by default) */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Donation card hover effect */
.donation-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.donation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.2);
}

.donation-card.selected {
    border-color: #F97316;
    background-color: #FFF7ED;
}

/* Button hover effects */
button, .btn {
    transition: all 0.3s ease;
}

/* Form focus states */
input:focus, textarea:focus, select:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Image placeholder styling */
.placeholder-image {
    background: linear-gradient(135deg, #FED7AA 0%, #FDBA74 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EA580C;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
}

/* Impact counter animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.impact-number {
    animation: countUp 0.6s ease-out;
}

/* Footer link hover */
footer a:hover {
    color: #F97316;
}

/* Card hover effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Print styles */
@media print {
    nav, footer, .donate-btn {
        display: none;
    }
}
